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
3.8KB

  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. int x, y;
  41. *data_size = 0;
  42. /* special case for last picture */
  43. if (buf_size == 0) {
  44. return 0;
  45. }
  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= I_TYPE;
  54. p->key_frame= 1;
  55. init_get_bits(&a->gb, buf, buf_size);
  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 0
  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. int mb_x, mb_y;
  82. *p = *pict;
  83. p->pict_type= I_TYPE;
  84. p->key_frame= 1;
  85. emms_c();
  86. align_put_bits(&a->pb);
  87. while(get_bit_count(&a->pb)&31)
  88. put_bits(&a->pb, 8, 0);
  89. size= get_bit_count(&a->pb)/32;
  90. return size*4;
  91. }
  92. #endif
  93. static void common_init(AVCodecContext *avctx){
  94. CLJRContext * const a = avctx->priv_data;
  95. avctx->coded_frame= (AVFrame*)&a->picture;
  96. a->avctx= avctx;
  97. }
  98. static int decode_init(AVCodecContext *avctx){
  99. common_init(avctx);
  100. avctx->pix_fmt= PIX_FMT_YUV411P;
  101. return 0;
  102. }
  103. static int encode_init(AVCodecContext *avctx){
  104. common_init(avctx);
  105. return 0;
  106. }
  107. static int decode_end(AVCodecContext *avctx){
  108. avcodec_default_free_buffers(avctx);
  109. return 0;
  110. }
  111. AVCodec cljr_decoder = {
  112. "cljr",
  113. CODEC_TYPE_VIDEO,
  114. CODEC_ID_CLJR,
  115. sizeof(CLJRContext),
  116. decode_init,
  117. NULL,
  118. decode_end,
  119. decode_frame,
  120. CODEC_CAP_DR1,
  121. };
  122. #if 0
  123. #ifdef CONFIG_ENCODERS
  124. AVCodec cljr_encoder = {
  125. "cljr",
  126. CODEC_TYPE_VIDEO,
  127. CODEC_ID_cljr,
  128. sizeof(CLJRContext),
  129. encode_init,
  130. encode_frame,
  131. //encode_end,
  132. };
  133. #endif //CONFIG_ENCODERS
  134. #endif