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.

140 lines
4.1KB

  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 && avctx->lowres) {
  37. av_log(avctx, AV_LOG_ERROR, "lowres is not possible with rawvideo\n");
  38. return AVERROR(EINVAL);
  39. }
  40. if(a->is_mjpeg)
  41. return ff_mjpeg_decode_init(avctx);
  42. if(avctx->width <= 0 || avctx->height <= 0)
  43. return AVERROR_INVALIDDATA;
  44. avcodec_get_frame_defaults(&a->frame);
  45. avctx->pix_fmt = AV_PIX_FMT_UYVY422;
  46. if(avctx->extradata_size >= 9 && avctx->extradata[4]+28 < avctx->extradata_size) {
  47. int ndx = avctx->extradata[4] + 4;
  48. a->interlace = !memcmp(avctx->extradata + ndx, "1:1(", 4);
  49. if(a->interlace) {
  50. a->tff = avctx->extradata[ndx + 24] == 1;
  51. }
  52. }
  53. return 0;
  54. }
  55. static av_cold int end(AVCodecContext *avctx)
  56. {
  57. AVRnContext *a = avctx->priv_data;
  58. AVFrame *p = &a->frame;
  59. if(p->data[0])
  60. avctx->release_buffer(avctx, p);
  61. if(a->is_mjpeg)
  62. ff_mjpeg_decode_end(avctx);
  63. return 0;
  64. }
  65. static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
  66. {
  67. AVRnContext *a = avctx->priv_data;
  68. AVFrame *p = &a->frame;
  69. const uint8_t *buf = avpkt->data;
  70. int buf_size = avpkt->size;
  71. int y, ret, true_height;
  72. if(a->is_mjpeg)
  73. return ff_mjpeg_decode_frame(avctx, data, data_size, avpkt);
  74. true_height = buf_size / (2*avctx->width);
  75. if(p->data[0])
  76. avctx->release_buffer(avctx, p);
  77. if(buf_size < 2*avctx->width * avctx->height) {
  78. av_log(avctx, AV_LOG_ERROR, "packet too small\n");
  79. return AVERROR_INVALIDDATA;
  80. }
  81. if((ret = avctx->get_buffer(avctx, p)) < 0){
  82. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  83. return ret;
  84. }
  85. p->pict_type= AV_PICTURE_TYPE_I;
  86. p->key_frame= 1;
  87. if(a->interlace) {
  88. buf += (true_height - avctx->height)*avctx->width;
  89. for(y = 0; y < avctx->height-1; y+=2) {
  90. memcpy(p->data[0] + (y+ a->tff)*p->linesize[0], buf , 2*avctx->width);
  91. memcpy(p->data[0] + (y+!a->tff)*p->linesize[0], buf + avctx->width*true_height+4, 2*avctx->width);
  92. buf += 2*avctx->width;
  93. }
  94. } else {
  95. buf += (true_height - avctx->height)*avctx->width*2;
  96. for(y = 0; y < avctx->height; y++) {
  97. memcpy(p->data[0] + y*p->linesize[0], buf, 2*avctx->width);
  98. buf += 2*avctx->width;
  99. }
  100. }
  101. *(AVFrame*)data = a->frame;
  102. *data_size = sizeof(AVFrame);
  103. return buf_size;
  104. }
  105. AVCodec ff_avrn_decoder = {
  106. .name = "avrn",
  107. .type = AVMEDIA_TYPE_VIDEO,
  108. .id = AV_CODEC_ID_AVRN,
  109. .priv_data_size = sizeof(AVRnContext),
  110. .init = init,
  111. .close = end,
  112. .decode = decode_frame,
  113. .long_name = NULL_IF_CONFIG_SMALL("Avid AVI Codec"),
  114. .capabilities = CODEC_CAP_DR1,
  115. .max_lowres = 3,
  116. };