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.

134 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 = AV_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 int 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. return 0;
  60. }
  61. static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
  62. {
  63. AVRnContext *a = avctx->priv_data;
  64. AVFrame *p = &a->frame;
  65. const uint8_t *buf = avpkt->data;
  66. int buf_size = avpkt->size;
  67. int true_height = buf_size / (2*avctx->width);
  68. int y;
  69. if(a->is_mjpeg)
  70. return ff_mjpeg_decode_frame(avctx, data, data_size, avpkt);
  71. if(p->data[0])
  72. avctx->release_buffer(avctx, p);
  73. if(buf_size < 2*avctx->width * avctx->height) {
  74. av_log(avctx, AV_LOG_ERROR, "packet too small\n");
  75. return AVERROR_INVALIDDATA;
  76. }
  77. if(avctx->get_buffer(avctx, p) < 0){
  78. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  79. return -1;
  80. }
  81. p->pict_type= AV_PICTURE_TYPE_I;
  82. p->key_frame= 1;
  83. if(a->interlace) {
  84. buf += (true_height - avctx->height)*avctx->width;
  85. for(y = 0; y < avctx->height-1; y+=2) {
  86. memcpy(p->data[0] + (y+ a->tff)*p->linesize[0], buf , 2*avctx->width);
  87. memcpy(p->data[0] + (y+!a->tff)*p->linesize[0], buf + avctx->width*true_height+4, 2*avctx->width);
  88. buf += 2*avctx->width;
  89. }
  90. } else {
  91. buf += (true_height - avctx->height)*avctx->width*2;
  92. for(y = 0; y < avctx->height; y++) {
  93. memcpy(p->data[0] + y*p->linesize[0], buf, 2*avctx->width);
  94. buf += 2*avctx->width;
  95. }
  96. }
  97. *(AVFrame*)data = a->frame;
  98. *data_size = sizeof(AVFrame);
  99. return buf_size;
  100. }
  101. AVCodec ff_avrn_decoder = {
  102. .name = "avrn",
  103. .type = AVMEDIA_TYPE_VIDEO,
  104. .id = AV_CODEC_ID_AVRN,
  105. .priv_data_size = sizeof(AVRnContext),
  106. .init = init,
  107. .close = end,
  108. .decode = decode_frame,
  109. .long_name = NULL_IF_CONFIG_SMALL("Avid AVI Codec"),
  110. .capabilities = CODEC_CAP_DR1,
  111. };