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