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.

142 lines
4.2KB

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