]> git.sesse.net Git - ffmpeg/blob - libavformat/nuv.c
rtmp: support strict rtmp servers
[ffmpeg] / 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.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 (!pb->eof_reached) {
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 = AV_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 = AV_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 = AV_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 == AV_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 (!pb->eof_reached) {
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                 // HACK: we have no idea if it is a keyframe,
227                 // but if we mark none seeking will not work at all.
228                 pkt->flags |= AV_PKT_FLAG_KEY;
229                 pkt->pos = pos;
230                 pkt->pts = AV_RL32(&hdr[4]);
231                 pkt->stream_index = ctx->v_id;
232                 memcpy(pkt->data, hdr, copyhdrsize);
233                 ret = avio_read(pb, pkt->data + copyhdrsize, size);
234                 if (ret < 0) {
235                     av_free_packet(pkt);
236                     return ret;
237                 }
238                 if (ret < size)
239                     av_shrink_packet(pkt, copyhdrsize + ret);
240                 return 0;
241             case NUV_AUDIO:
242                 if (ctx->a_id < 0) {
243                     av_log(s, AV_LOG_ERROR, "Audio packet in file without audio stream!\n");
244                     avio_skip(pb, size);
245                     break;
246                 }
247                 ret = av_get_packet(pb, pkt, size);
248                 pkt->flags |= AV_PKT_FLAG_KEY;
249                 pkt->pos = pos;
250                 pkt->pts = AV_RL32(&hdr[4]);
251                 pkt->stream_index = ctx->a_id;
252                 if (ret < 0) return ret;
253                 return 0;
254             case NUV_SEEKP:
255                 // contains no data, size value is invalid
256                 break;
257             default:
258                 avio_skip(pb, size);
259                 break;
260         }
261     }
262     return AVERROR(EIO);
263 }
264
265 AVInputFormat ff_nuv_demuxer = {
266     .name           = "nuv",
267     .long_name      = NULL_IF_CONFIG_SMALL("NuppelVideo"),
268     .priv_data_size = sizeof(NUVContext),
269     .read_probe     = nuv_probe,
270     .read_header    = nuv_header,
271     .read_packet    = nuv_packet,
272     .flags          = AVFMT_GENERIC_INDEX,
273 };