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.

177 lines
4.0KB

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