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.

96 lines
2.9KB

  1. /*
  2. * Cirrus Logic AccuPak (CLJR) decoder
  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 decoder.
  24. */
  25. #include "avcodec.h"
  26. #include "bitstream.h"
  27. #include "internal.h"
  28. static int decode_frame(AVCodecContext *avctx,
  29. void *data, int *got_frame,
  30. AVPacket *avpkt)
  31. {
  32. const uint8_t *buf = avpkt->data;
  33. int buf_size = avpkt->size;
  34. BitstreamContext bc;
  35. AVFrame * const p = data;
  36. int x, y, ret;
  37. if (avctx->height <= 0 || avctx->width <= 0) {
  38. av_log(avctx, AV_LOG_ERROR, "Invalid width or height\n");
  39. return AVERROR_INVALIDDATA;
  40. }
  41. if (buf_size < avctx->height * avctx->width) {
  42. av_log(avctx, AV_LOG_ERROR,
  43. "Resolution larger than buffer size. Invalid header?\n");
  44. return AVERROR_INVALIDDATA;
  45. }
  46. if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
  47. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  48. return ret;
  49. }
  50. p->pict_type = AV_PICTURE_TYPE_I;
  51. p->key_frame = 1;
  52. bitstream_init8(&bc, buf, buf_size);
  53. for (y = 0; y < avctx->height; y++) {
  54. uint8_t *luma = &p->data[0][y * p->linesize[0]];
  55. uint8_t *cb = &p->data[1][y * p->linesize[1]];
  56. uint8_t *cr = &p->data[2][y * p->linesize[2]];
  57. for (x = 0; x < avctx->width; x += 4) {
  58. luma[3] = bitstream_read(&bc, 5) << 3;
  59. luma[2] = bitstream_read(&bc, 5) << 3;
  60. luma[1] = bitstream_read(&bc, 5) << 3;
  61. luma[0] = bitstream_read(&bc, 5) << 3;
  62. luma += 4;
  63. *(cb++) = bitstream_read(&bc, 6) << 2;
  64. *(cr++) = bitstream_read(&bc, 6) << 2;
  65. }
  66. }
  67. *got_frame = 1;
  68. return buf_size;
  69. }
  70. static av_cold int decode_init(AVCodecContext *avctx)
  71. {
  72. avctx->pix_fmt = AV_PIX_FMT_YUV411P;
  73. return 0;
  74. }
  75. AVCodec ff_cljr_decoder = {
  76. .name = "cljr",
  77. .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
  78. .type = AVMEDIA_TYPE_VIDEO,
  79. .id = AV_CODEC_ID_CLJR,
  80. .init = decode_init,
  81. .decode = decode_frame,
  82. .capabilities = AV_CODEC_CAP_DR1,
  83. };