]> git.sesse.net Git - ffmpeg/blob - libavformat/nuv.c
oggdec: simplify start time calculation code.
[ffmpeg] / libavformat / nuv.c
1 /*
2  * NuppelVideo demuxer.
3  * Copyright (c) 2006 Reimar Doeffinger
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 "libavutil/intreadwrite.h"
23 #include "libavutil/intfloat.h"
24 #include "avformat.h"
25 #include "internal.h"
26 #include "riff.h"
27
28 typedef struct {
29     int v_id;
30     int a_id;
31     int rtjpg_video;
32 } NUVContext;
33
34 typedef enum {
35     NUV_VIDEO = 'V',
36     NUV_EXTRADATA = 'D',
37     NUV_AUDIO = 'A',
38     NUV_SEEKP = 'R',
39     NUV_MYTHEXT = 'X'
40 } nuv_frametype;
41
42 static int nuv_probe(AVProbeData *p) {
43     if (!memcmp(p->buf, "NuppelVideo", 12))
44         return AVPROBE_SCORE_MAX;
45     if (!memcmp(p->buf, "MythTVVideo", 12))
46         return AVPROBE_SCORE_MAX;
47     return 0;
48 }
49
50 /// little macro to sanitize packet size
51 #define PKTSIZE(s) (s &  0xffffff)
52
53 /**
54  * @brief read until we found all data needed for decoding
55  * @param vst video stream of which to change parameters
56  * @param ast video stream of which to change parameters
57  * @param myth set if this is a MythTVVideo format file
58  * @return 1 if all required codec data was found
59  */
60 static int get_codec_data(AVIOContext *pb, AVStream *vst,
61                           AVStream *ast, int myth) {
62     nuv_frametype frametype;
63     if (!vst && !myth)
64         return 1; // no codec data needed
65     while (!url_feof(pb)) {
66         int size, subtype;
67         frametype = avio_r8(pb);
68         switch (frametype) {
69             case NUV_EXTRADATA:
70                 subtype = avio_r8(pb);
71                 avio_skip(pb, 6);
72                 size = PKTSIZE(avio_rl32(pb));
73                 if (vst && subtype == 'R') {
74                     vst->codec->extradata_size = size;
75                     vst->codec->extradata = av_malloc(size);
76                     avio_read(pb, vst->codec->extradata, size);
77                     size = 0;
78                     if (!myth)
79                         return 1;
80                 }
81                 break;
82             case NUV_MYTHEXT:
83                 avio_skip(pb, 7);
84                 size = PKTSIZE(avio_rl32(pb));
85                 if (size != 128 * 4)
86                     break;
87                 avio_rl32(pb); // version
88                 if (vst) {
89                     vst->codec->codec_tag = avio_rl32(pb);
90                     vst->codec->codec_id =
91                         ff_codec_get_id(ff_codec_bmp_tags, vst->codec->codec_tag);
92                     if (vst->codec->codec_tag == MKTAG('R', 'J', 'P', 'G'))
93                         vst->codec->codec_id = CODEC_ID_NUV;
94                 } else
95                     avio_skip(pb, 4);
96
97                 if (ast) {
98                     ast->codec->codec_tag = avio_rl32(pb);
99                     ast->codec->sample_rate = avio_rl32(pb);
100                     ast->codec->bits_per_coded_sample = avio_rl32(pb);
101                     ast->codec->channels = avio_rl32(pb);
102                     ast->codec->codec_id =
103                         ff_wav_codec_get_id(ast->codec->codec_tag,
104                                          ast->codec->bits_per_coded_sample);
105                     ast->need_parsing = AVSTREAM_PARSE_FULL;
106                 } else
107                     avio_skip(pb, 4 * 4);
108
109                 size -= 6 * 4;
110                 avio_skip(pb, size);
111                 return 1;
112             case NUV_SEEKP:
113                 size = 11;
114                 break;
115             default:
116                 avio_skip(pb, 7);
117                 size = PKTSIZE(avio_rl32(pb));
118                 break;
119         }
120         avio_skip(pb, size);
121     }
122     return 0;
123 }
124
125 static int nuv_header(AVFormatContext *s) {
126     NUVContext *ctx = s->priv_data;
127     AVIOContext *pb = s->pb;
128     char id_string[12];
129     double aspect, fps;
130     int is_mythtv, width, height, v_packs, a_packs;
131     int stream_nr = 0;
132     AVStream *vst = NULL, *ast = NULL;
133     avio_read(pb, id_string, 12);
134     is_mythtv = !memcmp(id_string, "MythTVVideo", 12);
135     avio_skip(pb, 5); // version string
136     avio_skip(pb, 3); // padding
137     width = avio_rl32(pb);
138     height = avio_rl32(pb);
139     avio_rl32(pb); // unused, "desiredwidth"
140     avio_rl32(pb); // unused, "desiredheight"
141     avio_r8(pb); // 'P' == progressive, 'I' == interlaced
142     avio_skip(pb, 3); // padding
143     aspect = av_int2double(avio_rl64(pb));
144     if (aspect > 0.9999 && aspect < 1.0001)
145         aspect = 4.0 / 3.0;
146     fps = av_int2double(avio_rl64(pb));
147
148     // number of packets per stream type, -1 means unknown, e.g. streaming
149     v_packs = avio_rl32(pb);
150     a_packs = avio_rl32(pb);
151     avio_rl32(pb); // text
152
153     avio_rl32(pb); // keyframe distance (?)
154
155     if (v_packs) {
156         ctx->v_id = stream_nr++;
157         vst = avformat_new_stream(s, NULL);
158         if (!vst)
159             return AVERROR(ENOMEM);
160         vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
161         vst->codec->codec_id = CODEC_ID_NUV;
162         vst->codec->width = width;
163         vst->codec->height = height;
164         vst->codec->bits_per_coded_sample = 10;
165         vst->sample_aspect_ratio = av_d2q(aspect * height / width, 10000);
166 #if FF_API_R_FRAME_RATE
167         vst->r_frame_rate =
168 #endif
169         vst->avg_frame_rate = av_d2q(fps, 60000);
170         avpriv_set_pts_info(vst, 32, 1, 1000);
171     } else
172         ctx->v_id = -1;
173
174     if (a_packs) {
175         ctx->a_id = stream_nr++;
176         ast = avformat_new_stream(s, NULL);
177         if (!ast)
178             return AVERROR(ENOMEM);
179         ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
180         ast->codec->codec_id = CODEC_ID_PCM_S16LE;
181         ast->codec->channels = 2;
182         ast->codec->sample_rate = 44100;
183         ast->codec->bit_rate = 2 * 2 * 44100 * 8;
184         ast->codec->block_align = 2 * 2;
185         ast->codec->bits_per_coded_sample = 16;
186         avpriv_set_pts_info(ast, 32, 1, 1000);
187     } else
188         ctx->a_id = -1;
189
190     get_codec_data(pb, vst, ast, is_mythtv);
191     ctx->rtjpg_video = vst && vst->codec->codec_id == CODEC_ID_NUV;
192     return 0;
193 }
194
195 #define HDRSIZE 12
196
197 static int nuv_packet(AVFormatContext *s, AVPacket *pkt) {
198     NUVContext *ctx = s->priv_data;
199     AVIOContext *pb = s->pb;
200     uint8_t hdr[HDRSIZE];
201     nuv_frametype frametype;
202     int ret, size;
203     while (!url_feof(pb)) {
204         int copyhdrsize = ctx->rtjpg_video ? HDRSIZE : 0;
205         uint64_t pos = avio_tell(pb);
206         ret = avio_read(pb, hdr, HDRSIZE);
207         if (ret < HDRSIZE)
208             return ret < 0 ? ret : AVERROR(EIO);
209         frametype = hdr[0];
210         size = PKTSIZE(AV_RL32(&hdr[8]));
211         switch (frametype) {
212             case NUV_EXTRADATA:
213                 if (!ctx->rtjpg_video) {
214                     avio_skip(pb, size);
215                     break;
216                 }
217             case NUV_VIDEO:
218                 if (ctx->v_id < 0) {
219                     av_log(s, AV_LOG_ERROR, "Video packet in file without video stream!\n");
220                     avio_skip(pb, size);
221                     break;
222                 }
223                 ret = av_new_packet(pkt, copyhdrsize + size);
224                 if (ret < 0)
225                     return ret;
226
227                 pkt->pos = pos;
228                 pkt->flags |= hdr[2] == 0 ? AV_PKT_FLAG_KEY : 0;
229                 pkt->pts = AV_RL32(&hdr[4]);
230                 pkt->stream_index = ctx->v_id;
231                 memcpy(pkt->data, hdr, copyhdrsize);
232                 ret = avio_read(pb, pkt->data + copyhdrsize, size);
233                 if (ret < 0) {
234                     av_free_packet(pkt);
235                     return ret;
236                 }
237                 if (ret < size)
238                     av_shrink_packet(pkt, copyhdrsize + ret);
239                 return 0;
240             case NUV_AUDIO:
241                 if (ctx->a_id < 0) {
242                     av_log(s, AV_LOG_ERROR, "Audio packet in file without audio stream!\n");
243                     avio_skip(pb, size);
244                     break;
245                 }
246                 ret = av_get_packet(pb, pkt, size);
247                 pkt->flags |= AV_PKT_FLAG_KEY;
248                 pkt->pos = pos;
249                 pkt->pts = AV_RL32(&hdr[4]);
250                 pkt->stream_index = ctx->a_id;
251                 if (ret < 0) return ret;
252                 return 0;
253             case NUV_SEEKP:
254                 // contains no data, size value is invalid
255                 break;
256             default:
257                 avio_skip(pb, size);
258                 break;
259         }
260     }
261     return AVERROR(EIO);
262 }
263
264 /**
265  * \brief looks for the string RTjjjjjjjjjj in the stream too resync reading
266  * \return 1 if the syncword is found 0 otherwise.
267  */
268 static int nuv_resync(AVFormatContext *s, int64_t pos_limit) {
269     AVIOContext *pb = s->pb;
270     uint32_t tag = 0;
271     while(!url_feof(pb) && avio_tell(pb) < pos_limit) {
272         tag = (tag << 8) | avio_r8(pb);
273         if (tag                  == MKBETAG('R','T','j','j') &&
274            (tag = avio_rb32(pb)) == MKBETAG('j','j','j','j') &&
275            (tag = avio_rb32(pb)) == MKBETAG('j','j','j','j'))
276             return 1;
277     }
278     return 0;
279 }
280
281 /**
282  * \brief attempts to read a timestamp from stream at the given stream position
283  * \return timestamp if successful and AV_NOPTS_VALUE if failure
284  */
285 static int64_t nuv_read_dts(AVFormatContext *s, int stream_index,
286                             int64_t *ppos, int64_t pos_limit)
287 {
288     NUVContext *ctx = s->priv_data;
289     AVIOContext *pb = s->pb;
290     uint8_t hdr[HDRSIZE];
291     nuv_frametype frametype;
292     int size, key, idx;
293     int64_t pos, dts;
294
295     if (avio_seek(pb, *ppos, SEEK_SET) < 0)
296         return AV_NOPTS_VALUE;
297
298     if (!nuv_resync(s, pos_limit))
299         return AV_NOPTS_VALUE;
300
301     while (!url_feof(pb) && avio_tell(pb) < pos_limit) {
302         if (avio_read(pb, hdr, HDRSIZE) < HDRSIZE)
303             return AV_NOPTS_VALUE;
304         frametype = hdr[0];
305         size = PKTSIZE(AV_RL32(&hdr[8]));
306         switch (frametype) {
307             case NUV_SEEKP:
308                 break;
309             case NUV_AUDIO:
310             case NUV_VIDEO:
311                 if (frametype == NUV_VIDEO) {
312                     idx = ctx->v_id;
313                     key = hdr[2] == 0;
314                 } else {
315                     idx = ctx->a_id;
316                     key = 1;
317                 }
318                 if (stream_index == idx) {
319
320                     pos = avio_tell(s->pb) - HDRSIZE;
321                     dts = AV_RL32(&hdr[4]);
322
323                     // TODO - add general support in av_gen_search, so it adds positions after reading timestamps
324                     av_add_index_entry(s->streams[stream_index], pos, dts, size + HDRSIZE, 0,
325                             key ? AVINDEX_KEYFRAME : 0);
326
327                     *ppos = pos;
328                     return dts;
329                 }
330             default:
331                 avio_skip(pb, size);
332                 break;
333         }
334     }
335     return AV_NOPTS_VALUE;
336 }
337
338
339 AVInputFormat ff_nuv_demuxer = {
340     .name           = "nuv",
341     .long_name      = NULL_IF_CONFIG_SMALL("NuppelVideo"),
342     .priv_data_size = sizeof(NUVContext),
343     .read_probe     = nuv_probe,
344     .read_header    = nuv_header,
345     .read_packet    = nuv_packet,
346     .read_timestamp = nuv_read_dts,
347     .flags          = AVFMT_GENERIC_INDEX,
348 };