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.

163 lines
4.2KB

  1. /*
  2. * Cirrus Logic AccuPak (CLJR) codec
  3. * Copyright (c) 2003 Alex Beregszaszi
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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. } CLJRContext;
  35. static int decode_frame(AVCodecContext *avctx,
  36. void *data, int *data_size,
  37. AVPacket *avpkt)
  38. {
  39. const uint8_t *buf = avpkt->data;
  40. int buf_size = avpkt->size;
  41. CLJRContext * const a = avctx->priv_data;
  42. GetBitContext gb;
  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. if(buf_size/avctx->height < avctx->width) {
  49. av_log(avctx, AV_LOG_ERROR, "Resolution larger than buffer size. Invalid header?\n");
  50. return -1;
  51. }
  52. p->reference= 0;
  53. if(avctx->get_buffer(avctx, p) < 0){
  54. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  55. return -1;
  56. }
  57. p->pict_type= AV_PICTURE_TYPE_I;
  58. p->key_frame= 1;
  59. init_get_bits(&gb, buf, buf_size * 8);
  60. for(y=0; y<avctx->height; y++){
  61. uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ];
  62. uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ];
  63. uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ];
  64. for(x=0; x<avctx->width; x+=4){
  65. luma[3] = get_bits(&gb, 5) << 3;
  66. luma[2] = get_bits(&gb, 5) << 3;
  67. luma[1] = get_bits(&gb, 5) << 3;
  68. luma[0] = get_bits(&gb, 5) << 3;
  69. luma+= 4;
  70. *(cb++) = get_bits(&gb, 6) << 2;
  71. *(cr++) = get_bits(&gb, 6) << 2;
  72. }
  73. }
  74. *picture= *(AVFrame*)&a->picture;
  75. *data_size = sizeof(AVPicture);
  76. emms_c();
  77. return buf_size;
  78. }
  79. #if CONFIG_CLJR_ENCODER
  80. static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
  81. CLJRContext * const a = avctx->priv_data;
  82. AVFrame *pict = data;
  83. AVFrame * const p= (AVFrame*)&a->picture;
  84. int size;
  85. *p = *pict;
  86. p->pict_type= AV_PICTURE_TYPE_I;
  87. p->key_frame= 1;
  88. emms_c();
  89. avpriv_align_put_bits(&a->pb);
  90. while(get_bit_count(&a->pb)&31)
  91. put_bits(&a->pb, 8, 0);
  92. size= get_bit_count(&a->pb)/32;
  93. return size*4;
  94. }
  95. #endif
  96. static av_cold void common_init(AVCodecContext *avctx){
  97. CLJRContext * const a = avctx->priv_data;
  98. avctx->coded_frame= (AVFrame*)&a->picture;
  99. a->avctx= avctx;
  100. }
  101. static av_cold int decode_init(AVCodecContext *avctx){
  102. common_init(avctx);
  103. avctx->pix_fmt= PIX_FMT_YUV411P;
  104. return 0;
  105. }
  106. #if CONFIG_CLJR_ENCODER
  107. static av_cold int encode_init(AVCodecContext *avctx){
  108. common_init(avctx);
  109. return 0;
  110. }
  111. #endif
  112. AVCodec ff_cljr_decoder = {
  113. .name = "cljr",
  114. .type = AVMEDIA_TYPE_VIDEO,
  115. .id = CODEC_ID_CLJR,
  116. .priv_data_size = sizeof(CLJRContext),
  117. .init = decode_init,
  118. .decode = decode_frame,
  119. .capabilities = CODEC_CAP_DR1,
  120. .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
  121. };
  122. #if CONFIG_CLJR_ENCODER
  123. AVCodec ff_cljr_encoder = {
  124. .name = "cljr",
  125. .type = AVMEDIA_TYPE_VIDEO,
  126. .id = CODEC_ID_CLJR,
  127. .priv_data_size = sizeof(CLJRContext),
  128. .init = encode_init,
  129. .encode = encode_frame,
  130. .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
  131. };
  132. #endif