OSDN Git Service

ffv1: Fixed size given to init_get_bits() in decoder.
[coroid/libav_saccubus.git] / libavformat / nuv.c
1 /*
2  * NuppelVideo demuxer.
3  * Copyright (c) 2006 Reimar Doeffinger
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/intreadwrite.h"
23 #include "libavutil/intfloat_readwrite.h"
24 #include "avformat.h"
25 #include "riff.h"
26
27 typedef struct {
28     int v_id;
29     int a_id;
30     int rtjpg_video;
31 } NUVContext;
32
33 typedef enum {
34     NUV_VIDEO = 'V',
35     NUV_EXTRADATA = 'D',
36     NUV_AUDIO = 'A',
37     NUV_SEEKP = 'R',
38     NUV_MYTHEXT = 'X'
39 } nuv_frametype;
40
41 static int nuv_probe(AVProbeData *p) {
42     if (!memcmp(p->buf, "NuppelVideo", 12))
43         return AVPROBE_SCORE_MAX;
44     if (!memcmp(p->buf, "MythTVVideo", 12))
45         return AVPROBE_SCORE_MAX;
46     return 0;
47 }
48
49 //! little macro to sanitize packet size
50 #define PKTSIZE(s) (s &  0xffffff)
51
52 /**
53  * @brief read until we found all data needed for decoding
54  * @param vst video stream of which to change parameters
55  * @param ast video stream of which to change parameters
56  * @param myth set if this is a MythTVVideo format file
57  * @return 1 if all required codec data was found
58  */
59 static int get_codec_data(AVIOContext *pb, AVStream *vst,
60                           AVStream *ast, int myth) {
61     nuv_frametype frametype;
62     if (!vst && !myth)
63         return 1; // no codec data needed
64     while (!pb->eof_reached) {
65         int size, subtype;
66         frametype = avio_r8(pb);
67         switch (frametype) {
68             case NUV_EXTRADATA:
69                 subtype = avio_r8(pb);
70                 avio_skip(pb, 6);
71                 size = PKTSIZE(avio_rl32(pb));
72                 if (vst && subtype == 'R') {
73                     vst->codec->extradata_size = size;
74                     vst->codec->extradata = av_malloc(size);
75                     avio_read(pb, vst->codec->extradata, size);
76                     size = 0;
77                     if (!myth)
78                         return 1;
79                 }
80                 break;
81             case NUV_MYTHEXT:
82                 avio_skip(pb, 7);
83                 size = PKTSIZE(avio_rl32(pb));
84                 if (size != 128 * 4)
85                     break;
86                 avio_rl32(pb); // version
87                 if (vst) {
88                     vst->codec->codec_tag = avio_rl32(pb);
89                     vst->codec->codec_id =
90                         ff_codec_get_id(ff_codec_bmp_tags, vst->codec->codec_tag);
91                     if (vst->codec->codec_tag == MKTAG('R', 'J', 'P', 'G'))
92                         vst->codec->codec_id = CODEC_ID_NUV;
93                 } else
94                     avio_skip(pb, 4);
95
96                 if (ast) {
97                     ast->codec->codec_tag = avio_rl32(pb);
98                     ast->codec->sample_rate = avio_rl32(pb);
99                     ast->codec->bits_per_coded_sample = avio_rl32(pb);
100                     ast->codec->channels = avio_rl32(pb);
101                     ast->codec->codec_id =
102                         ff_wav_codec_get_id(ast->codec->codec_tag,
103                                          ast->codec->bits_per_coded_sample);
104                     ast->need_parsing = AVSTREAM_PARSE_FULL;
105                 } else
106                     avio_skip(pb, 4 * 4);
107
108                 size -= 6 * 4;
109                 avio_skip(pb, size);
110                 return 1;
111             case NUV_SEEKP:
112                 size = 11;
113                 break;
114             default:
115                 avio_skip(pb, 7);
116                 size = PKTSIZE(avio_rl32(pb));
117                 break;
118         }
119         avio_skip(pb, size);
120     }
121     return 0;
122 }
123
124 static int nuv_header(AVFormatContext *s, AVFormatParameters *ap) {
125     NUVContext *ctx = s->priv_data;
126     AVIOContext *pb = s->pb;
127     char id_string[12];
128     double aspect, fps;
129     int is_mythtv, width, height, v_packs, a_packs;
130     int stream_nr = 0;
131     AVStream *vst = NULL, *ast = NULL;
132     avio_read(pb, id_string, 12);
133     is_mythtv = !memcmp(id_string, "MythTVVideo", 12);
134     avio_skip(pb, 5); // version string
135     avio_skip(pb, 3); // padding
136     width = avio_rl32(pb);
137     height = avio_rl32(pb);
138     avio_rl32(pb); // unused, "desiredwidth"
139     avio_rl32(pb); // unused, "desiredheight"
140     avio_r8(pb); // 'P' == progressive, 'I' == interlaced
141     avio_skip(pb, 3); // padding
142     aspect = av_int2dbl(avio_rl64(pb));
143     if (aspect > 0.9999 && aspect < 1.0001)
144         aspect = 4.0 / 3.0;
145     fps = av_int2dbl(avio_rl64(pb));
146
147     // number of packets per stream type, -1 means unknown, e.g. streaming
148     v_packs = avio_rl32(pb);
149     a_packs = avio_rl32(pb);
150     avio_rl32(pb); // text
151
152     avio_rl32(pb); // keyframe distance (?)
153
154     if (v_packs) {
155         ctx->v_id = stream_nr++;
156         vst = av_new_stream(s, ctx->v_id);
157         if (!vst)
158             return AVERROR(ENOMEM);
159         vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
160         vst->codec->codec_id = CODEC_ID_NUV;
161         vst->codec->width = width;
162         vst->codec->height = height;
163         vst->codec->bits_per_coded_sample = 10;
164         vst->sample_aspect_ratio = av_d2q(aspect * height / width, 10000);
165         vst->r_frame_rate = av_d2q(fps, 60000);
166         av_set_pts_info(vst, 32, 1, 1000);
167     } else
168         ctx->v_id = -1;
169
170     if (a_packs) {
171         ctx->a_id = stream_nr++;
172         ast = av_new_stream(s, ctx->a_id);
173         if (!ast)
174             return AVERROR(ENOMEM);
175         ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
176         ast->codec->codec_id = CODEC_ID_PCM_S16LE;
177         ast->codec->channels = 2;
178         ast->codec->sample_rate = 44100;
179         ast->codec->bit_rate = 2 * 2 * 44100 * 8;
180         ast->codec->block_align = 2 * 2;
181         ast->codec->bits_per_coded_sample = 16;
182         av_set_pts_info(ast, 32, 1, 1000);
183     } else
184         ctx->a_id = -1;
185
186     get_codec_data(pb, vst, ast, is_mythtv);
187     ctx->rtjpg_video = vst && vst->codec->codec_id == CODEC_ID_NUV;
188     return 0;
189 }
190
191 #define HDRSIZE 12
192
193 static int nuv_packet(AVFormatContext *s, AVPacket *pkt) {
194     NUVContext *ctx = s->priv_data;
195     AVIOContext *pb = s->pb;
196     uint8_t hdr[HDRSIZE];
197     nuv_frametype frametype;
198     int ret, size;
199     while (!pb->eof_reached) {
200         int copyhdrsize = ctx->rtjpg_video ? HDRSIZE : 0;
201         uint64_t pos = avio_tell(pb);
202         ret = avio_read(pb, hdr, HDRSIZE);
203         if (ret < HDRSIZE)
204             return ret < 0 ? ret : AVERROR(EIO);
205         frametype = hdr[0];
206         size = PKTSIZE(AV_RL32(&hdr[8]));
207         switch (frametype) {
208             case NUV_EXTRADATA:
209                 if (!ctx->rtjpg_video) {
210                     avio_skip(pb, size);
211                     break;
212                 }
213             case NUV_VIDEO:
214                 if (ctx->v_id < 0) {
215                     av_log(s, AV_LOG_ERROR, "Video packet in file without video stream!\n");
216                     avio_skip(pb, size);
217                     break;
218                 }
219                 ret = av_new_packet(pkt, copyhdrsize + size);
220                 if (ret < 0)
221                     return ret;
222                 // HACK: we have no idea if it is a keyframe,
223                 // but if we mark none seeking will not work at all.
224                 pkt->flags |= AV_PKT_FLAG_KEY;
225                 pkt->pos = pos;
226                 pkt->pts = AV_RL32(&hdr[4]);
227                 pkt->stream_index = ctx->v_id;
228                 memcpy(pkt->data, hdr, copyhdrsize);
229                 ret = avio_read(pb, pkt->data + copyhdrsize, size);
230                 if (ret < 0) {
231                     av_free_packet(pkt);
232                     return ret;
233                 }
234                 if (ret < size)
235                     av_shrink_packet(pkt, copyhdrsize + ret);
236                 return 0;
237             case NUV_AUDIO:
238                 if (ctx->a_id < 0) {
239                     av_log(s, AV_LOG_ERROR, "Audio packet in file without audio stream!\n");
240                     avio_skip(pb, size);
241                     break;
242                 }
243                 ret = av_get_packet(pb, pkt, size);
244                 pkt->flags |= AV_PKT_FLAG_KEY;
245                 pkt->pos = pos;
246                 pkt->pts = AV_RL32(&hdr[4]);
247                 pkt->stream_index = ctx->a_id;
248                 if (ret < 0) return ret;
249                 return 0;
250             case NUV_SEEKP:
251                 // contains no data, size value is invalid
252                 break;
253             default:
254                 avio_skip(pb, size);
255                 break;
256         }
257     }
258     return AVERROR(EIO);
259 }
260
261 AVInputFormat ff_nuv_demuxer = {
262     .name           = "nuv",
263     .long_name      = NULL_IF_CONFIG_SMALL("NuppelVideo format"),
264     .priv_data_size = sizeof(NUVContext),
265     .read_probe     = nuv_probe,
266     .read_header    = nuv_header,
267     .read_packet    = nuv_packet,
268     .flags = AVFMT_GENERIC_INDEX,
269 };