You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

169 lines
4.2KB

  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
  23. * Cirrus Logic AccuPak codec.
  24. */
  25. #include "avcodec.h"
  26. #include "dsputil.h"
  27. #include "get_bits.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. AVPacket *avpkt)
  41. {
  42. const uint8_t *buf = avpkt->data;
  43. int buf_size = avpkt->size;
  44. CLJRContext * const a = avctx->priv_data;
  45. AVFrame *picture = data;
  46. AVFrame * const p= (AVFrame*)&a->picture;
  47. int x, y;
  48. if(p->data[0])
  49. avctx->release_buffer(avctx, p);
  50. if(buf_size/avctx->height < avctx->width) {
  51. av_log(avctx, AV_LOG_ERROR, "Resolution larger than buffer size. Invalid header?\n");
  52. return -1;
  53. }
  54. p->reference= 0;
  55. if(avctx->get_buffer(avctx, p) < 0){
  56. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  57. return -1;
  58. }
  59. p->pict_type= AV_PICTURE_TYPE_I;
  60. p->key_frame= 1;
  61. init_get_bits(&a->gb, buf, buf_size);
  62. for(y=0; y<avctx->height; y++){
  63. uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ];
  64. uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ];
  65. uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ];
  66. for(x=0; x<avctx->width; x+=4){
  67. luma[3] = get_bits(&a->gb, 5) << 3;
  68. luma[2] = get_bits(&a->gb, 5) << 3;
  69. luma[1] = get_bits(&a->gb, 5) << 3;
  70. luma[0] = get_bits(&a->gb, 5) << 3;
  71. luma+= 4;
  72. *(cb++) = get_bits(&a->gb, 6) << 2;
  73. *(cr++) = get_bits(&a->gb, 6) << 2;
  74. }
  75. }
  76. *picture= *(AVFrame*)&a->picture;
  77. *data_size = sizeof(AVPicture);
  78. emms_c();
  79. return buf_size;
  80. }
  81. #if CONFIG_CLJR_ENCODER
  82. static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
  83. CLJRContext * const a = avctx->priv_data;
  84. AVFrame *pict = data;
  85. AVFrame * const p= (AVFrame*)&a->picture;
  86. int size;
  87. *p = *pict;
  88. p->pict_type= AV_PICTURE_TYPE_I;
  89. p->key_frame= 1;
  90. emms_c();
  91. align_put_bits(&a->pb);
  92. while(get_bit_count(&a->pb)&31)
  93. put_bits(&a->pb, 8, 0);
  94. size= get_bit_count(&a->pb)/32;
  95. return size*4;
  96. }
  97. #endif
  98. static av_cold void common_init(AVCodecContext *avctx){
  99. CLJRContext * const a = avctx->priv_data;
  100. avcodec_get_frame_defaults(&a->picture);
  101. avctx->coded_frame= (AVFrame*)&a->picture;
  102. a->avctx= avctx;
  103. }
  104. static av_cold int decode_init(AVCodecContext *avctx){
  105. common_init(avctx);
  106. avctx->pix_fmt= PIX_FMT_YUV411P;
  107. return 0;
  108. }
  109. #if CONFIG_CLJR_ENCODER
  110. static av_cold int encode_init(AVCodecContext *avctx){
  111. common_init(avctx);
  112. return 0;
  113. }
  114. #endif
  115. AVCodec ff_cljr_decoder = {
  116. "cljr",
  117. AVMEDIA_TYPE_VIDEO,
  118. CODEC_ID_CLJR,
  119. sizeof(CLJRContext),
  120. decode_init,
  121. NULL,
  122. NULL,
  123. decode_frame,
  124. CODEC_CAP_DR1,
  125. .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
  126. };
  127. #if CONFIG_CLJR_ENCODER
  128. AVCodec ff_cljr_encoder = {
  129. "cljr",
  130. AVMEDIA_TYPE_VIDEO,
  131. CODEC_ID_CLJR,
  132. sizeof(CLJRContext),
  133. encode_init,
  134. encode_frame,
  135. //encode_end,
  136. .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
  137. };
  138. #endif