FFmpeg
Loading...
Searching...
No Matches
nuv.c
Go to the documentation of this file.
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
24#include "libavutil/imgutils.h"
26#include "libavutil/intfloat.h"
27#include "avformat.h"
28#include "avio_internal.h"
29#include "demux.h"
30#include "internal.h"
31#include "riff.h"
32
33static const AVCodecTag nuv_audio_tags[] = {
34 { AV_CODEC_ID_PCM_S16LE, MKTAG('R', 'A', 'W', 'A') },
35 { AV_CODEC_ID_MP3, MKTAG('L', 'A', 'M', 'E') },
36 { AV_CODEC_ID_NONE, 0 },
37};
38
39typedef struct NUVContext {
40 int v_id;
41 int a_id;
44
45typedef enum {
46 NUV_VIDEO = 'V',
48 NUV_AUDIO = 'A',
49 NUV_SEEKP = 'R',
52
53static int nuv_probe(const AVProbeData *p)
54{
55 if (!memcmp(p->buf, "NuppelVideo", 12))
56 return AVPROBE_SCORE_MAX;
57 if (!memcmp(p->buf, "MythTVVideo", 12))
58 return AVPROBE_SCORE_MAX;
59 return 0;
60}
61
62/// little macro to sanitize packet size
63#define PKTSIZE(s) (s & 0xffffff)
64
65/**
66 * @brief read until we found all data needed for decoding
67 * @param vst video stream of which to change parameters
68 * @param ast video stream of which to change parameters
69 * @param myth set if this is a MythTVVideo format file
70 * @return 0 or AVERROR code
71 */
73 AVStream *ast, int myth)
74{
75 nuv_frametype frametype;
76
77 if (!vst && !myth)
78 return 1; // no codec data needed
79 while (!avio_feof(pb)) {
80 int size, subtype, ret;
81
82 frametype = avio_r8(pb);
83 switch (frametype) {
84 case NUV_EXTRADATA:
85 subtype = avio_r8(pb);
86 avio_skip(pb, 6);
87 size = PKTSIZE(avio_rl32(pb));
88 if (vst && subtype == 'R') {
89 if ((ret = ff_get_extradata(NULL, vst->codecpar, pb, size)) < 0)
90 return ret;
91 size = 0;
92 if (!myth)
93 return 0;
94 }
95 break;
96 case NUV_MYTHEXT:
97 avio_skip(pb, 7);
98 size = PKTSIZE(avio_rl32(pb));
99 if (size != 128 * 4)
100 break;
101 avio_rl32(pb); // version
102 if (vst) {
103 vst->codecpar->codec_tag = avio_rl32(pb);
104 vst->codecpar->codec_id =
106 if (vst->codecpar->codec_tag == MKTAG('R', 'J', 'P', 'G'))
108 } else
109 avio_skip(pb, 4);
110
111 if (ast) {
112 int id;
113
114 ast->codecpar->codec_tag = avio_rl32(pb);
115 ast->codecpar->sample_rate = avio_rl32(pb);
116 if (ast->codecpar->sample_rate <= 0) {
117 av_log(s, AV_LOG_ERROR, "Invalid sample rate %d\n", ast->codecpar->sample_rate);
118 return AVERROR_INVALIDDATA;
119 }
124 if (ast->codecpar->ch_layout.nb_channels <= 0) {
125 av_log(s, AV_LOG_ERROR, "Invalid channels %d\n", ast->codecpar->ch_layout.nb_channels);
126 return AVERROR_INVALIDDATA;
127 }
128
131 if (id == AV_CODEC_ID_NONE) {
133 if (id == AV_CODEC_ID_PCM_S16LE)
135 0, 0, ~1);
136 }
137 ast->codecpar->codec_id = id;
138
140 } else
141 avio_skip(pb, 4 * 4);
142
143 size -= 6 * 4;
144 avio_skip(pb, size);
145 return 0;
146 case NUV_SEEKP:
147 size = 11;
148 break;
149 default:
150 avio_skip(pb, 7);
151 size = PKTSIZE(avio_rl32(pb));
152 break;
153 }
154 avio_skip(pb, size);
155 }
156
157 return 0;
158}
159
161{
162 NUVContext *ctx = s->priv_data;
163 AVIOContext *pb = s->pb;
164 char id_string[12];
165 double aspect, fps;
166 int is_mythtv, width, height, v_packs, a_packs, ret;
167 AVStream *vst = NULL, *ast = NULL;
168
169 if ((ret = ffio_read_size(pb, id_string, 12)) < 0)
170 return ret;
171
172 is_mythtv = !memcmp(id_string, "MythTVVideo", 12);
173 avio_skip(pb, 5); // version string
174 avio_skip(pb, 3); // padding
175 width = avio_rl32(pb);
176 height = avio_rl32(pb);
177 avio_rl32(pb); // unused, "desiredwidth"
178 avio_rl32(pb); // unused, "desiredheight"
179 avio_r8(pb); // 'P' == progressive, 'I' == interlaced
180 avio_skip(pb, 3); // padding
181 aspect = av_int2double(avio_rl64(pb));
182 if (aspect > 0.9999 && aspect < 1.0001)
183 aspect = 4.0 / 3.0;
184 fps = av_int2double(avio_rl64(pb));
185 if (fps < 0.0f) {
186 if (s->error_recognition & AV_EF_EXPLODE) {
187 av_log(s, AV_LOG_ERROR, "Invalid frame rate %f\n", fps);
188 return AVERROR_INVALIDDATA;
189 } else {
190 av_log(s, AV_LOG_WARNING, "Invalid frame rate %f, setting to 0.\n", fps);
191 fps = 0.0f;
192 }
193 }
194
195 // number of packets per stream type, -1 means unknown, e.g. streaming
196 v_packs = avio_rl32(pb);
197 a_packs = avio_rl32(pb);
198 avio_rl32(pb); // text
199
200 avio_rl32(pb); // keyframe distance (?)
201
202 if (v_packs) {
203 vst = avformat_new_stream(s, NULL);
204 if (!vst)
205 return AVERROR(ENOMEM);
206 ctx->v_id = vst->index;
207
208 ret = av_image_check_size(width, height, 0, s);
209 if (ret < 0)
210 return ret;
211
214 vst->codecpar->width = width;
215 vst->codecpar->height = height;
217 vst->sample_aspect_ratio = av_d2q(aspect * height / width,
218 10000);
219#if FF_API_R_FRAME_RATE
220 vst->r_frame_rate =
221#endif
222 vst->avg_frame_rate = av_d2q(fps, 60000);
223 avpriv_set_pts_info(vst, 32, 1, 1000);
224 } else
225 ctx->v_id = -1;
226
227 if (a_packs) {
228 ast = avformat_new_stream(s, NULL);
229 if (!ast)
230 return AVERROR(ENOMEM);
231 ctx->a_id = ast->index;
232
233 ast->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
234 ast->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE;
235 ast->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_STEREO;
236 ast->codecpar->sample_rate = 44100;
237 ast->codecpar->bit_rate = 2 * 2 * 44100 * 8;
238 ast->codecpar->block_align = 2 * 2;
239 ast->codecpar->bits_per_coded_sample = 16;
240 avpriv_set_pts_info(ast, 32, 1, 1000);
241 } else
242 ctx->a_id = -1;
243
244 if ((ret = get_codec_data(s, pb, vst, ast, is_mythtv)) < 0)
245 return ret;
246
247 ctx->rtjpg_video = vst && vst->codecpar->codec_id == AV_CODEC_ID_NUV;
248
249 return 0;
250}
251
252#define HDRSIZE 12
253
255{
256 NUVContext *ctx = s->priv_data;
257 AVIOContext *pb = s->pb;
258 uint8_t hdr[HDRSIZE];
259 nuv_frametype frametype;
260 int ret, size;
261
262 while (!avio_feof(pb)) {
263 int copyhdrsize = ctx->rtjpg_video ? HDRSIZE : 0;
264 uint64_t pos = avio_tell(pb);
265
266 ret = ffio_read_size(pb, hdr, HDRSIZE);
267 if (ret < 0)
268 return ret;
269
270 frametype = hdr[0];
271 size = PKTSIZE(AV_RL32(&hdr[8]));
272
273 switch (frametype) {
274 case NUV_EXTRADATA:
275 if (!ctx->rtjpg_video) {
276 avio_skip(pb, size);
277 break;
278 }
280 case NUV_VIDEO:
281 if (ctx->v_id < 0) {
282 av_log(s, AV_LOG_ERROR, "Video packet in file without video stream!\n");
283 avio_skip(pb, size);
284 break;
285 }
286 ret = av_new_packet(pkt, copyhdrsize + size);
287 if (ret < 0)
288 return ret;
289
290 pkt->pos = pos;
291 pkt->flags |= hdr[2] == 0 ? AV_PKT_FLAG_KEY : 0;
292 pkt->pts = AV_RL32(&hdr[4]);
293 pkt->stream_index = ctx->v_id;
294 memcpy(pkt->data, hdr, copyhdrsize);
295 ret = avio_read(pb, pkt->data + copyhdrsize, size);
296 if (ret < 0) {
297 return ret;
298 }
299 if (ret < size)
300 av_shrink_packet(pkt, copyhdrsize + ret);
301 return 0;
302 case NUV_AUDIO:
303 if (ctx->a_id < 0) {
304 av_log(s, AV_LOG_ERROR, "Audio packet in file without audio stream!\n");
305 avio_skip(pb, size);
306 break;
307 }
308 ret = av_get_packet(pb, pkt, size);
309 pkt->flags |= AV_PKT_FLAG_KEY;
310 pkt->pos = pos;
311 pkt->pts = AV_RL32(&hdr[4]);
312 pkt->stream_index = ctx->a_id;
313 if (ret < 0)
314 return ret;
315 return 0;
316 case NUV_SEEKP:
317 // contains no data, size value is invalid
318 break;
319 default:
320 avio_skip(pb, size);
321 break;
322 }
323 }
324
325 return AVERROR_INVALIDDATA;
326}
327
328/**
329 * \brief looks for the string RTjjjjjjjjjj in the stream too resync reading
330 * \return 1 if the syncword is found 0 otherwise.
331 */
332static int nuv_resync(AVFormatContext *s, int64_t pos_limit) {
333 AVIOContext *pb = s->pb;
334 uint32_t tag = 0;
335 while(!avio_feof(pb) && avio_tell(pb) < pos_limit) {
336 tag = (tag << 8) | avio_r8(pb);
337 if (tag == MKBETAG('R','T','j','j') &&
338 (tag = avio_rb32(pb)) == MKBETAG('j','j','j','j') &&
339 (tag = avio_rb32(pb)) == MKBETAG('j','j','j','j'))
340 return 1;
341 }
342 return 0;
343}
344
345/**
346 * \brief attempts to read a timestamp from stream at the given stream position
347 * \return timestamp if successful and AV_NOPTS_VALUE if failure
348 */
349static int64_t nuv_read_dts(AVFormatContext *s, int stream_index,
350 int64_t *ppos, int64_t pos_limit)
351{
352 NUVContext *ctx = s->priv_data;
353 AVIOContext *pb = s->pb;
354 uint8_t hdr[HDRSIZE];
355 nuv_frametype frametype;
356 int size, key, idx;
357 int64_t pos, dts;
358
359 if (avio_seek(pb, *ppos, SEEK_SET) < 0)
360 return AV_NOPTS_VALUE;
361
362 if (!nuv_resync(s, pos_limit))
363 return AV_NOPTS_VALUE;
364
365 while (!avio_feof(pb) && avio_tell(pb) < pos_limit) {
366 if (avio_read(pb, hdr, HDRSIZE) < HDRSIZE)
367 return AV_NOPTS_VALUE;
368 frametype = hdr[0];
369 size = PKTSIZE(AV_RL32(&hdr[8]));
370 switch (frametype) {
371 case NUV_SEEKP:
372 break;
373 case NUV_AUDIO:
374 case NUV_VIDEO:
375 if (frametype == NUV_VIDEO) {
376 idx = ctx->v_id;
377 key = hdr[2] == 0;
378 } else {
379 idx = ctx->a_id;
380 key = 1;
381 }
382 if (stream_index == idx) {
383
384 pos = avio_tell(s->pb) - HDRSIZE;
385 dts = AV_RL32(&hdr[4]);
386
387 // TODO - add general support in av_gen_search, so it adds positions after reading timestamps
388 av_add_index_entry(s->streams[stream_index], pos, dts, size + HDRSIZE, 0,
389 key ? AVINDEX_KEYFRAME : 0);
390
391 *ppos = pos;
392 return dts;
393 }
395 default:
396 avio_skip(pb, size);
397 break;
398 }
399 }
400 return AV_NOPTS_VALUE;
401}
402
403
405 .p.name = "nuv",
406 .p.long_name = NULL_IF_CONFIG_SMALL("NuppelVideo"),
407 .p.flags = AVFMT_GENERIC_INDEX,
408 .priv_data_size = sizeof(NUVContext),
413};
const FFInputFormat ff_nuv_demuxer
Definition nuv.c:404
static AVFormatContext * ctx
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
Main libavformat public API header.
#define AVINDEX_KEYFRAME
Definition avformat.h:628
#define AVPROBE_SCORE_MAX
maximum score
Definition avformat.h:483
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition utils.c:98
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition avformat.h:499
@ AVSTREAM_PARSE_FULL
full parsing and repack
Definition avformat.h:611
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition aviobuf.c:236
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition aviobuf.c:349
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition avio.h:494
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition aviobuf.c:321
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:615
unsigned int avio_rl32(AVIOContext *s)
Definition aviobuf.c:733
unsigned int avio_rb32(AVIOContext *s)
Definition aviobuf.c:764
int avio_r8(AVIOContext *s)
Definition aviobuf.c:606
uint64_t avio_rl64(AVIOContext *s)
Definition aviobuf.c:741
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:665
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
#define s(width, name)
Definition cbs_vp9.c:198
static int read_probe(const AVProbeData *p)
Definition cdg.c:30
Public libavutil channel layout APIs header.
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition defs.h:51
int ff_get_extradata(void *logctx, AVCodecParameters *par, AVIOContext *pb, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0 and f...
static AVPacket * pkt
enum AVCodecID id
Definition dts2pts.c:607
const char * key
static int read_header(FFV1Context *f, RangeCoder *c)
Definition ffv1dec.c:578
@ AV_CODEC_ID_PCM_S16LE
Definition codec_id.h:330
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_NUV
Definition codec_id.h:134
@ AV_CODEC_ID_MP3
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition codec_id.h:454
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition packet.h:650
void av_shrink_packet(AVPacket *pkt, int size)
Reduce packet size, correctly zeroing padding.
Definition packet.c:113
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition packet.c:98
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
Definition seek.c:122
#define AV_CHANNEL_LAYOUT_STEREO
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
@ AV_CHANNEL_ORDER_UNSPEC
Only the channel count is specified, without any further information about the channel order.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
AVRational av_d2q(double d, int max)
Convert a double precision floating point number to a rational.
Definition rational.c:110
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
Definition imgutils.c:318
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
misc image utilities
static av_always_inline double av_int2double(uint64_t i)
Reinterpret a 64-bit integer as a double.
Definition intfloat.h:60
#define AV_RL32(p)
enum AVCodecID ff_get_pcm_codec_id(int bps, int flt, int be, int sflags)
Select a PCM codec based on the given parameters.
Definition utils.c:154
static av_always_inline FFStream * ffstream(AVStream *st)
Definition internal.h:365
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition utils.c:143
static int nuv_resync(AVFormatContext *s, int64_t pos_limit)
looks for the string RTjjjjjjjjjj in the stream too resync reading
Definition nuv.c:332
static int nuv_header(AVFormatContext *s)
Definition nuv.c:160
static int get_codec_data(AVFormatContext *s, AVIOContext *pb, AVStream *vst, AVStream *ast, int myth)
read until we found all data needed for decoding
Definition nuv.c:72
#define HDRSIZE
Definition nuv.c:252
nuv_frametype
Definition nuv.c:45
@ NUV_EXTRADATA
Definition nuv.c:47
@ NUV_MYTHEXT
Definition nuv.c:50
@ NUV_VIDEO
Definition nuv.c:46
@ NUV_SEEKP
Definition nuv.c:49
@ NUV_AUDIO
Definition nuv.c:48
static const AVCodecTag nuv_audio_tags[]
Definition nuv.c:33
static int nuv_packet(AVFormatContext *s, AVPacket *pkt)
Definition nuv.c:254
static int nuv_probe(const AVProbeData *p)
Definition nuv.c:53
static int64_t nuv_read_dts(AVFormatContext *s, int stream_index, int64_t *ppos, int64_t pos_limit)
attempts to read a timestamp from stream at the given stream position
Definition nuv.c:349
#define PKTSIZE(s)
little macro to sanitize packet size
Definition nuv.c:63
Macro definitions for various function/variable attributes.
#define av_fallthrough
Definition attributes.h:67
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
#define MKTAG(a, b, c, d)
Definition macros.h:55
#define MKBETAG(a, b, c, d)
Definition macros.h:56
uint32_t tag
Definition movenc.c:2087
const AVCodecTag ff_codec_bmp_tags[]
Definition riff.c:36
internal header for RIFF based (de)muxers do NOT include this in end user applications
enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps)
Definition riffdec.c:277
static int64_t read_timestamp(AVFormatContext *s, int stream_index, int64_t *ppos, int64_t pos_limit, int64_t(*read_timestamp)(struct AVFormatContext *, int, int64_t *, int64_t))
Definition seek.c:281
unsigned int pos
Definition spdifenc.c:431
An AVChannelLayout holds information about the channel layout of audio data.
enum AVChannelOrder order
Channel order used in this layout.
int nb_channels
Number of channels in this layout.
int height
The height of the video frame in pixels.
Definition codec_par.h:150
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition codec_par.h:113
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
int width
The width of the video frame in pixels.
Definition codec_par.h:143
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition codec_par.h:61
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
Format I/O context.
Definition avformat.h:1333
Bytestream IO Context.
Definition avio.h:160
This structure stores compressed data.
Definition packet.h:580
This structure contains the data a format has to probe a file.
Definition avformat.h:471
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown)
Definition avformat.h:844
int index
stream index in AVFormatContext
Definition avformat.h:772
AVRational avg_frame_rate
Average framerate.
Definition avformat.h:855
AVRational r_frame_rate
Real base framerate of the stream.
Definition avformat.h:900
enum AVStreamParseType need_parsing
Definition internal.h:321
int a_id
Definition nuv.c:41
int v_id
Definition nuv.c:40
int rtjpg_video
Definition nuv.c:42
#define av_log(a,...)
#define height
Definition dsp.h:89
#define width
Definition dsp.h:89
int size