cljr.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * Cirrus Logic AccuPak (CLJR) codec
  3. * Copyright (c) 2003 Alex Beregszaszi
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file libavcodec/cljr.c
  23. * Cirrus Logic AccuPak codec.
  24. */
  25. #include "avcodec.h"
  26. #include "dsputil.h"
  27. #include "bitstream.h"
  28. /* Disable the encoder. */
  29. #undef CONFIG_CLJR_ENCODER
  30. #define CONFIG_CLJR_ENCODER 0
  31. typedef struct CLJRContext{
  32. AVCodecContext *avctx;
  33. AVFrame picture;
  34. int delta[16];
  35. int offset[4];
  36. GetBitContext gb;
  37. } CLJRContext;
  38. static int decode_frame(AVCodecContext *avctx,
  39. void *data, int *data_size,
  40. const uint8_t *buf, int buf_size)
  41. {
  42. CLJRContext * const a = avctx->priv_data;
  43. AVFrame *picture = data;
  44. AVFrame * const p= (AVFrame*)&a->picture;
  45. int x, y;
  46. if(p->data[0])
  47. avctx->release_buffer(avctx, p);
  48. p->reference= 0;
  49. if(avctx->get_buffer(avctx, p) < 0){
  50. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  51. return -1;
  52. }
  53. p->pict_type= FF_I_TYPE;
  54. p->key_frame= 1;
  55. init_get_bits(&a->gb, buf, buf_size * 8);
  56. for(y=0; y<avctx->height; y++){
  57. uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ];
  58. uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ];
  59. uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ];
  60. for(x=0; x<avctx->width; x+=4){
  61. luma[3] = get_bits(&a->gb, 5) << 3;
  62. luma[2] = get_bits(&a->gb, 5) << 3;
  63. luma[1] = get_bits(&a->gb, 5) << 3;
  64. luma[0] = get_bits(&a->gb, 5) << 3;
  65. luma+= 4;
  66. *(cb++) = get_bits(&a->gb, 6) << 2;
  67. *(cr++) = get_bits(&a->gb, 6) << 2;
  68. }
  69. }
  70. *picture= *(AVFrame*)&a->picture;
  71. *data_size = sizeof(AVPicture);
  72. emms_c();
  73. return buf_size;
  74. }
  75. #if CONFIG_CLJR_ENCODER
  76. static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
  77. CLJRContext * const a = avctx->priv_data;
  78. AVFrame *pict = data;
  79. AVFrame * const p= (AVFrame*)&a->picture;
  80. int size;
  81. *p = *pict;
  82. p->pict_type= FF_I_TYPE;
  83. p->key_frame= 1;
  84. emms_c();
  85. align_put_bits(&a->pb);
  86. while(get_bit_count(&a->pb)&31)
  87. put_bits(&a->pb, 8, 0);
  88. size= get_bit_count(&a->pb)/32;
  89. return size*4;
  90. }
  91. #endif
  92. static av_cold void common_init(AVCodecContext *avctx){
  93. CLJRContext * const a = avctx->priv_data;
  94. avctx->coded_frame= (AVFrame*)&a->picture;
  95. a->avctx= avctx;
  96. }
  97. static av_cold int decode_init(AVCodecContext *avctx){
  98. common_init(avctx);
  99. avctx->pix_fmt= PIX_FMT_YUV411P;
  100. return 0;
  101. }
  102. #if CONFIG_CLJR_ENCODER
  103. static av_cold int encode_init(AVCodecContext *avctx){
  104. common_init(avctx);
  105. return 0;
  106. }
  107. #endif
  108. AVCodec cljr_decoder = {
  109. "cljr",
  110. CODEC_TYPE_VIDEO,
  111. CODEC_ID_CLJR,
  112. sizeof(CLJRContext),
  113. decode_init,
  114. NULL,
  115. NULL,
  116. decode_frame,
  117. CODEC_CAP_DR1,
  118. .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
  119. };
  120. #if CONFIG_CLJR_ENCODER
  121. AVCodec cljr_encoder = {
  122. "cljr",
  123. CODEC_TYPE_VIDEO,
  124. CODEC_ID_CLJR,
  125. sizeof(CLJRContext),
  126. encode_init,
  127. encode_frame,
  128. //encode_end,
  129. .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
  130. };
  131. #endif