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.

170 lines
4.8KB

  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 "get_bits.h"
  27. #include "put_bits.h"
  28. typedef struct CLJRContext {
  29. AVFrame picture;
  30. } CLJRContext;
  31. static av_cold int common_init(AVCodecContext *avctx)
  32. {
  33. CLJRContext * const a = avctx->priv_data;
  34. avctx->coded_frame = &a->picture;
  35. return 0;
  36. }
  37. #if CONFIG_CLJR_DECODER
  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. GetBitContext gb;
  46. AVFrame *picture = data;
  47. AVFrame * const p = &a->picture;
  48. int x, y;
  49. if (p->data[0])
  50. avctx->release_buffer(avctx, p);
  51. if (buf_size / avctx->height < avctx->width) {
  52. av_log(avctx, AV_LOG_ERROR,
  53. "Resolution larger than buffer size. Invalid header?\n");
  54. return AVERROR_INVALIDDATA;
  55. }
  56. p->reference = 0;
  57. if (avctx->get_buffer(avctx, p) < 0) {
  58. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  59. return -1;
  60. }
  61. p->pict_type = AV_PICTURE_TYPE_I;
  62. p->key_frame = 1;
  63. init_get_bits(&gb, buf, buf_size * 8);
  64. for (y = 0; y < avctx->height; y++) {
  65. uint8_t *luma = &a->picture.data[0][y * a->picture.linesize[0]];
  66. uint8_t *cb = &a->picture.data[1][y * a->picture.linesize[1]];
  67. uint8_t *cr = &a->picture.data[2][y * a->picture.linesize[2]];
  68. for (x = 0; x < avctx->width; x += 4) {
  69. luma[3] = get_bits(&gb, 5) << 3;
  70. luma[2] = get_bits(&gb, 5) << 3;
  71. luma[1] = get_bits(&gb, 5) << 3;
  72. luma[0] = get_bits(&gb, 5) << 3;
  73. luma += 4;
  74. *(cb++) = get_bits(&gb, 6) << 2;
  75. *(cr++) = get_bits(&gb, 6) << 2;
  76. }
  77. }
  78. *picture = a->picture;
  79. *data_size = sizeof(AVPicture);
  80. return buf_size;
  81. }
  82. static av_cold int decode_init(AVCodecContext *avctx)
  83. {
  84. avctx->pix_fmt = PIX_FMT_YUV411P;
  85. return common_init(avctx);
  86. }
  87. static av_cold int decode_end(AVCodecContext *avctx)
  88. {
  89. CLJRContext *a = avctx->priv_data;
  90. if (a->picture.data[0])
  91. avctx->release_buffer(avctx, &a->picture);
  92. return 0;
  93. }
  94. AVCodec ff_cljr_decoder = {
  95. .name = "cljr",
  96. .type = AVMEDIA_TYPE_VIDEO,
  97. .id = CODEC_ID_CLJR,
  98. .priv_data_size = sizeof(CLJRContext),
  99. .init = decode_init,
  100. .close = decode_end,
  101. .decode = decode_frame,
  102. .capabilities = CODEC_CAP_DR1,
  103. .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
  104. };
  105. #endif
  106. #if CONFIG_CLJR_ENCODER
  107. static int encode_frame(AVCodecContext *avctx, unsigned char *buf,
  108. int buf_size, void *data)
  109. {
  110. PutBitContext pb;
  111. AVFrame *p = data;
  112. int x, y;
  113. p->pict_type = AV_PICTURE_TYPE_I;
  114. p->key_frame = 1;
  115. init_put_bits(&pb, buf, buf_size / 8);
  116. for (y = 0; y < avctx->height; y++) {
  117. uint8_t *luma = &p->data[0][y * p->linesize[0]];
  118. uint8_t *cb = &p->data[1][y * p->linesize[1]];
  119. uint8_t *cr = &p->data[2][y * p->linesize[2]];
  120. for (x = 0; x < avctx->width; x += 4) {
  121. put_bits(&pb, 5, luma[3] >> 3);
  122. put_bits(&pb, 5, luma[2] >> 3);
  123. put_bits(&pb, 5, luma[1] >> 3);
  124. put_bits(&pb, 5, luma[0] >> 3);
  125. luma += 4;
  126. put_bits(&pb, 6, *(cb++) >> 2);
  127. put_bits(&pb, 6, *(cr++) >> 2);
  128. }
  129. }
  130. flush_put_bits(&pb);
  131. return put_bits_count(&pb) / 8;
  132. }
  133. AVCodec ff_cljr_encoder = {
  134. .name = "cljr",
  135. .type = AVMEDIA_TYPE_VIDEO,
  136. .id = CODEC_ID_CLJR,
  137. .priv_data_size = sizeof(CLJRContext),
  138. .init = common_init,
  139. .encode = encode_frame,
  140. .pix_fmts = (const enum PixelFormat[]) { PIX_FMT_YUV411P,
  141. PIX_FMT_NONE },
  142. .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
  143. };
  144. #endif