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.

157 lines
3.6KB

  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. if(p->data[0])
  42. avctx->release_buffer(avctx, p);
  43. p->reference= 0;
  44. if(avctx->get_buffer(avctx, p) < 0){
  45. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  46. return -1;
  47. }
  48. p->pict_type= I_TYPE;
  49. p->key_frame= 1;
  50. init_get_bits(&a->gb, buf, buf_size);
  51. for(y=0; y<avctx->height; y++){
  52. uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ];
  53. uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ];
  54. uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ];
  55. for(x=0; x<avctx->width; x+=4){
  56. luma[3] = get_bits(&a->gb, 5) << 3;
  57. luma[2] = get_bits(&a->gb, 5) << 3;
  58. luma[1] = get_bits(&a->gb, 5) << 3;
  59. luma[0] = get_bits(&a->gb, 5) << 3;
  60. luma+= 4;
  61. *(cb++) = get_bits(&a->gb, 6) << 2;
  62. *(cr++) = get_bits(&a->gb, 6) << 2;
  63. }
  64. }
  65. *picture= *(AVFrame*)&a->picture;
  66. *data_size = sizeof(AVPicture);
  67. emms_c();
  68. return buf_size;
  69. }
  70. #if 0
  71. static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
  72. CLJRContext * const a = avctx->priv_data;
  73. AVFrame *pict = data;
  74. AVFrame * const p= (AVFrame*)&a->picture;
  75. int size;
  76. int mb_x, mb_y;
  77. *p = *pict;
  78. p->pict_type= I_TYPE;
  79. p->key_frame= 1;
  80. emms_c();
  81. align_put_bits(&a->pb);
  82. while(get_bit_count(&a->pb)&31)
  83. put_bits(&a->pb, 8, 0);
  84. size= get_bit_count(&a->pb)/32;
  85. return size*4;
  86. }
  87. #endif
  88. static void common_init(AVCodecContext *avctx){
  89. CLJRContext * const a = avctx->priv_data;
  90. avctx->coded_frame= (AVFrame*)&a->picture;
  91. a->avctx= avctx;
  92. }
  93. static int decode_init(AVCodecContext *avctx){
  94. common_init(avctx);
  95. avctx->pix_fmt= PIX_FMT_YUV411P;
  96. return 0;
  97. }
  98. #if 0
  99. static int encode_init(AVCodecContext *avctx){
  100. common_init(avctx);
  101. return 0;
  102. }
  103. #endif
  104. AVCodec cljr_decoder = {
  105. "cljr",
  106. CODEC_TYPE_VIDEO,
  107. CODEC_ID_CLJR,
  108. sizeof(CLJRContext),
  109. decode_init,
  110. NULL,
  111. NULL,
  112. decode_frame,
  113. CODEC_CAP_DR1,
  114. };
  115. #if 0
  116. #ifdef CONFIG_ENCODERS
  117. AVCodec cljr_encoder = {
  118. "cljr",
  119. CODEC_TYPE_VIDEO,
  120. CODEC_ID_cljr,
  121. sizeof(CLJRContext),
  122. encode_init,
  123. encode_frame,
  124. //encode_end,
  125. };
  126. #endif //CONFIG_ENCODERS
  127. #endif