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.

132 lines
3.9KB

  1. /*
  2. * AVRn decoder
  3. * Copyright (c) 2012 Michael Niedermayer
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "avcodec.h"
  22. #include "mjpeg.h"
  23. #include "mjpegdec.h"
  24. typedef struct {
  25. MJpegDecodeContext mjpeg_ctx;
  26. AVFrame frame;
  27. int is_mjpeg;
  28. int interlace; //FIXME use frame.interlaced_frame
  29. int tff;
  30. } AVRnContext;
  31. static av_cold int init(AVCodecContext *avctx)
  32. {
  33. AVRnContext *a = avctx->priv_data;
  34. // Support "Resolution 1:1" for Avid AVI Codec
  35. a->is_mjpeg = avctx->extradata_size < 31 || memcmp(&avctx->extradata[28], "1:1", 3);
  36. if(a->is_mjpeg)
  37. return ff_mjpeg_decode_init(avctx);
  38. if(avctx->width <= 0 || avctx->height <= 0)
  39. return -1;
  40. avcodec_get_frame_defaults(&a->frame);
  41. avctx->pix_fmt = PIX_FMT_UYVY422;
  42. if(avctx->extradata_size >= 9 && avctx->extradata[4]+28 < avctx->extradata_size) {
  43. int ndx = avctx->extradata[4] + 4;
  44. a->interlace = !memcmp(avctx->extradata + ndx, "1:1(", 4);
  45. if(a->interlace) {
  46. a->tff = avctx->extradata[ndx + 24] == 1;
  47. }
  48. }
  49. return 0;
  50. }
  51. static av_cold void end(AVCodecContext *avctx)
  52. {
  53. AVRnContext *a = avctx->priv_data;
  54. AVFrame *p = &a->frame;
  55. if(p->data[0])
  56. avctx->release_buffer(avctx, p);
  57. if(a->is_mjpeg)
  58. ff_mjpeg_decode_end(avctx);
  59. }
  60. static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
  61. {
  62. AVRnContext *a = avctx->priv_data;
  63. AVFrame *p = &a->frame;
  64. const uint8_t *buf = avpkt->data;
  65. int buf_size = avpkt->size;
  66. int true_height = buf_size / (2*avctx->width);
  67. int y;
  68. if(a->is_mjpeg)
  69. return ff_mjpeg_decode_frame(avctx, data, data_size, avpkt);
  70. if(p->data[0])
  71. avctx->release_buffer(avctx, p);
  72. if(buf_size < 2*avctx->width * avctx->height) {
  73. av_log(avctx, AV_LOG_ERROR, "packet too small\n");
  74. return AVERROR_INVALIDDATA;
  75. }
  76. if(avctx->get_buffer(avctx, p) < 0){
  77. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  78. return -1;
  79. }
  80. p->pict_type= AV_PICTURE_TYPE_I;
  81. p->key_frame= 1;
  82. if(a->interlace) {
  83. buf += (true_height - avctx->height)*avctx->width;
  84. for(y = 0; y < avctx->height-1; y+=2) {
  85. memcpy(p->data[0] + (y+ a->tff)*p->linesize[0], buf , 2*avctx->width);
  86. memcpy(p->data[0] + (y+!a->tff)*p->linesize[0], buf + avctx->width*true_height+4, 2*avctx->width);
  87. buf += 2*avctx->width;
  88. }
  89. } else {
  90. buf += (true_height - avctx->height)*avctx->width*2;
  91. for(y = 0; y < avctx->height; y++) {
  92. memcpy(p->data[0] + y*p->linesize[0], buf, 2*avctx->width);
  93. buf += 2*avctx->width;
  94. }
  95. }
  96. *(AVFrame*)data = a->frame;
  97. *data_size = sizeof(AVFrame);
  98. return buf_size;
  99. }
  100. AVCodec ff_avrn_decoder = {
  101. .name = "avrn",
  102. .type = AVMEDIA_TYPE_VIDEO,
  103. .id = AV_CODEC_ID_AVRN,
  104. .priv_data_size = sizeof(AVRnContext),
  105. .init = init,
  106. .close = end,
  107. .decode = decode_frame,
  108. .long_name = NULL_IF_CONFIG_SMALL("Avid AVI Codec"),
  109. .capabilities = CODEC_CAP_DR1,
  110. };