]> git.sesse.net Git - ffmpeg/blob - libavformat/nuv.c
Merge remote-tracking branch 'qatar/master'
[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         vst->r_frame_rate = av_d2q(fps, 60000);
167         avpriv_set_pts_info(vst, 32, 1, 1000);
168     } else
169         ctx->v_id = -1;
170
171     if (a_packs) {
172         ctx->a_id = stream_nr++;
173         ast = avformat_new_stream(s, NULL);
174         if (!ast)
175             return AVERROR(ENOMEM);
176         ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
177         ast->codec->codec_id = CODEC_ID_PCM_S16LE;
178         ast->codec->channels = 2;
179         ast->codec->sample_rate = 44100;
180         ast->codec->bit_rate = 2 * 2 * 44100 * 8;
181         ast->codec->block_align = 2 * 2;
182         ast->codec->bits_per_coded_sample = 16;
183         avpriv_set_pts_info(ast, 32, 1, 1000);
184     } else
185         ctx->a_id = -1;
186
187     get_codec_data(pb, vst, ast, is_mythtv);
188     ctx->rtjpg_video = vst && vst->codec->codec_id == CODEC_ID_NUV;
189     return 0;
190 }
191
192 #define HDRSIZE 12
193
194 static int nuv_packet(AVFormatContext *s, AVPacket *pkt) {
195     NUVContext *ctx = s->priv_data;
196     AVIOContext *pb = s->pb;
197     uint8_t hdr[HDRSIZE];
198     nuv_frametype frametype;
199     int ret, size;
200     while (!url_feof(pb)) {
201         int copyhdrsize = ctx->rtjpg_video ? HDRSIZE : 0;
202         uint64_t pos = avio_tell(pb);
203         ret = avio_read(pb, hdr, HDRSIZE);
204         if (ret < HDRSIZE)
205             return ret < 0 ? ret : AVERROR(EIO);
206         frametype = hdr[0];
207         size = PKTSIZE(AV_RL32(&hdr[8]));
208         switch (frametype) {
209             case NUV_EXTRADATA:
210                 if (!ctx->rtjpg_video) {
211                     avio_skip(pb, size);
212                     break;
213                 }
214             case NUV_VIDEO:
215                 if (ctx->v_id < 0) {
216                     av_log(s, AV_LOG_ERROR, "Video packet in file without video stream!\n");
217                     avio_skip(pb, size);
218                     break;
219                 }
220                 ret = av_new_packet(pkt, copyhdrsize + size);
221                 if (ret < 0)
222                     return ret;
223
224                 pkt->pos = pos;
225                 pkt->flags |= hdr[2] == 0 ? AV_PKT_FLAG_KEY : 0;
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 /**
262  * \brief looks for the string RTjjjjjjjjjj in the stream too resync reading
263  * \return 1 if the syncword is found 0 otherwise.
264  */
265 static int nuv_resync(AVFormatContext *s, int64_t pos_limit) {
266     AVIOContext *pb = s->pb;
267     uint32_t tag = 0;
268     while(!url_feof(pb) && avio_tell(pb) < pos_limit) {
269         tag = (tag << 8) | avio_r8(pb);
270         if (tag                  == MKBETAG('R','T','j','j') &&
271            (tag = avio_rb32(pb)) == MKBETAG('j','j','j','j') &&
272            (tag = avio_rb32(pb)) == MKBETAG('j','j','j','j'))
273             return 1;
274     }
275     return 0;
276 }
277
278 /**
279  * \brief attempts to read a timestamp from stream at the given stream position
280  * \return timestamp if successfull and AV_NOPTS_VALUE if failure
281  */
282 static int64_t nuv_read_dts(AVFormatContext *s, int stream_index,
283                             int64_t *ppos, int64_t pos_limit)
284 {
285     NUVContext *ctx = s->priv_data;
286     AVIOContext *pb = s->pb;
287     uint8_t hdr[HDRSIZE];
288     nuv_frametype frametype;
289     int size, key, idx;
290     int64_t pos, dts;
291
292     if (avio_seek(pb, *ppos, SEEK_SET) < 0)
293         return AV_NOPTS_VALUE;
294
295     if (!nuv_resync(s, pos_limit))
296         return AV_NOPTS_VALUE;
297
298     while (!url_feof(pb) && avio_tell(pb) < pos_limit) {
299         if (avio_read(pb, hdr, HDRSIZE) < HDRSIZE)
300             return AV_NOPTS_VALUE;
301         frametype = hdr[0];
302         size = PKTSIZE(AV_RL32(&hdr[8]));
303         switch (frametype) {
304             case NUV_SEEKP:
305                 break;
306             case NUV_AUDIO:
307             case NUV_VIDEO:
308                 if (frametype == NUV_VIDEO) {
309                     idx = ctx->v_id;
310                     key = hdr[2] == 0;
311                 } else {
312                     idx = ctx->a_id;
313                     key = 1;
314                 }
315                 if (stream_index == idx) {
316
317                     pos = avio_tell(s->pb) - HDRSIZE;
318                     dts = AV_RL32(&hdr[4]);
319
320                     // TODO - add general support in av_gen_search, so it adds positions after reading timestamps
321                     av_add_index_entry(s->streams[stream_index], pos, dts, size + HDRSIZE, 0,
322                             key ? AVINDEX_KEYFRAME : 0);
323
324                     *ppos = pos;
325                     return dts;
326                 }
327             default:
328                 avio_skip(pb, size);
329                 break;
330         }
331     }
332     return AV_NOPTS_VALUE;
333 }
334
335
336 AVInputFormat ff_nuv_demuxer = {
337     .name           = "nuv",
338     .long_name      = NULL_IF_CONFIG_SMALL("NuppelVideo format"),
339     .priv_data_size = sizeof(NUVContext),
340     .read_probe     = nuv_probe,
341     .read_header    = nuv_header,
342     .read_packet    = nuv_packet,
343     .read_timestamp = nuv_read_dts,
344     .flags = AVFMT_GENERIC_INDEX,
345 };