FFmpeg
mvdec.c
Go to the documentation of this file.
1 /*
2  * Silicon Graphics Movie demuxer
3  * Copyright (c) 2012 Peter Ross
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 /**
23  * @file
24  * Silicon Graphics Movie demuxer
25  */
26 
28 #include "libavutil/eval.h"
29 #include "libavutil/intfloat.h"
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/rational.h"
32 
33 #include "avformat.h"
34 #include "internal.h"
35 
36 typedef struct MvContext {
39 
40  int eof_count; ///< number of streams that have finished
41  int stream_index; ///< current stream index
42  int frame[2]; ///< frame nb for current stream
43 
44  int acompression; ///< compression level for audio stream
45  int aformat; ///< audio format
46 } MvContext;
47 
48 #define AUDIO_FORMAT_SIGNED 401
49 
50 static int mv_probe(const AVProbeData *p)
51 {
52  if (AV_RB32(p->buf) == MKBETAG('M', 'O', 'V', 'I') &&
53  AV_RB16(p->buf + 4) < 3)
54  return AVPROBE_SCORE_MAX;
55  return 0;
56 }
57 
58 static char *var_read_string(AVIOContext *pb, int size)
59 {
60  int n;
61  char *str;
62 
63  if (size < 0 || size == INT_MAX)
64  return NULL;
65 
66  str = av_malloc(size + 1);
67  if (!str)
68  return NULL;
69  n = avio_get_str(pb, size, str, size + 1);
70  if (n < size)
71  avio_skip(pb, size - n);
72  return str;
73 }
74 
75 static int var_read_int(AVIOContext *pb, int size)
76 {
77  int v;
78  char *s = var_read_string(pb, size);
79  if (!s)
80  return 0;
81  v = strtol(s, NULL, 10);
82  av_free(s);
83  return v;
84 }
85 
87 {
88  AVRational v;
89  char *s = var_read_string(pb, size);
90  if (!s)
91  return (AVRational) { 0, 0 };
92  v = av_d2q(av_strtod(s, NULL), INT_MAX);
93  av_free(s);
94  return v;
95 }
96 
97 static void var_read_metadata(AVFormatContext *avctx, const char *tag, int size)
98 {
99  char *value = var_read_string(avctx->pb, size);
100  if (value)
102 }
103 
104 static int set_channels(AVFormatContext *avctx, AVStream *st, int channels)
105 {
106  if (channels <= 0) {
107  av_log(avctx, AV_LOG_ERROR, "Channel count %d invalid.\n", channels);
108  return AVERROR_INVALIDDATA;
109  }
110  st->codecpar->channels = channels;
113  return 0;
114 }
115 
116 /**
117  * Parse global variable
118  * @return < 0 if unknown
119  */
121  const char *name, int size)
122 {
123  MvContext *mv = avctx->priv_data;
124  AVIOContext *pb = avctx->pb;
125  if (!strcmp(name, "__NUM_I_TRACKS")) {
126  mv->nb_video_tracks = var_read_int(pb, size);
127  } else if (!strcmp(name, "__NUM_A_TRACKS")) {
128  mv->nb_audio_tracks = var_read_int(pb, size);
129  } else if (!strcmp(name, "COMMENT") || !strcmp(name, "TITLE")) {
130  var_read_metadata(avctx, name, size);
131  } else if (!strcmp(name, "LOOP_MODE") || !strcmp(name, "NUM_LOOPS") ||
132  !strcmp(name, "OPTIMIZED")) {
133  avio_skip(pb, size); // ignore
134  } else
135  return AVERROR_INVALIDDATA;
136 
137  return 0;
138 }
139 
140 /**
141  * Parse audio variable
142  * @return < 0 if unknown
143  */
144 static int parse_audio_var(AVFormatContext *avctx, AVStream *st,
145  const char *name, int size)
146 {
147  MvContext *mv = avctx->priv_data;
148  AVIOContext *pb = avctx->pb;
149  if (!strcmp(name, "__DIR_COUNT")) {
150  st->nb_frames = var_read_int(pb, size);
151  } else if (!strcmp(name, "AUDIO_FORMAT")) {
152  mv->aformat = var_read_int(pb, size);
153  } else if (!strcmp(name, "COMPRESSION")) {
154  mv->acompression = var_read_int(pb, size);
155  } else if (!strcmp(name, "DEFAULT_VOL")) {
156  var_read_metadata(avctx, name, size);
157  } else if (!strcmp(name, "NUM_CHANNELS")) {
158  return set_channels(avctx, st, var_read_int(pb, size));
159  } else if (!strcmp(name, "SAMPLE_RATE")) {
160  int sample_rate = var_read_int(pb, size);
161  if (sample_rate <= 0)
162  return AVERROR_INVALIDDATA;
164  avpriv_set_pts_info(st, 33, 1, st->codecpar->sample_rate);
165  } else if (!strcmp(name, "SAMPLE_WIDTH")) {
166  uint64_t bpc = var_read_int(pb, size) * (uint64_t)8;
167  if (bpc > 16)
168  return AVERROR_INVALIDDATA;
169  st->codecpar->bits_per_coded_sample = bpc;
170  } else
171  return AVERROR_INVALIDDATA;
172 
173  return 0;
174 }
175 
176 /**
177  * Parse video variable
178  * @return < 0 if unknown
179  */
180 static int parse_video_var(AVFormatContext *avctx, AVStream *st,
181  const char *name, int size)
182 {
183  AVIOContext *pb = avctx->pb;
184  if (!strcmp(name, "__DIR_COUNT")) {
185  st->nb_frames = st->duration = var_read_int(pb, size);
186  } else if (!strcmp(name, "COMPRESSION")) {
187  char *str = var_read_string(pb, size);
188  if (!str)
189  return AVERROR_INVALIDDATA;
190  if (!strcmp(str, "1")) {
192  } else if (!strcmp(str, "2")) {
195  } else if (!strcmp(str, "3")) {
197  } else if (!strcmp(str, "10")) {
199  } else if (!strcmp(str, "MVC2")) {
201  } else {
202  avpriv_request_sample(avctx, "Video compression %s", str);
203  }
204  av_free(str);
205  } else if (!strcmp(name, "FPS")) {
206  AVRational fps = var_read_float(pb, size);
207  avpriv_set_pts_info(st, 64, fps.den, fps.num);
208  st->avg_frame_rate = fps;
209  } else if (!strcmp(name, "HEIGHT")) {
210  st->codecpar->height = var_read_int(pb, size);
211  } else if (!strcmp(name, "PIXEL_ASPECT")) {
215  INT_MAX);
216  } else if (!strcmp(name, "WIDTH")) {
217  st->codecpar->width = var_read_int(pb, size);
218  } else if (!strcmp(name, "ORIENTATION")) {
219  if (var_read_int(pb, size) == 1101) {
220  if (!st->codecpar->extradata) {
221  st->codecpar->extradata = av_strdup("BottomUp");
222  if (!st->codecpar->extradata)
223  return AVERROR(ENOMEM);
224  st->codecpar->extradata_size = 9;
225  }
226  }
227  } else if (!strcmp(name, "Q_SPATIAL") || !strcmp(name, "Q_TEMPORAL")) {
228  var_read_metadata(avctx, name, size);
229  } else if (!strcmp(name, "INTERLACING") || !strcmp(name, "PACKING")) {
230  avio_skip(pb, size); // ignore
231  } else
232  return AVERROR_INVALIDDATA;
233 
234  return 0;
235 }
236 
237 static int read_table(AVFormatContext *avctx, AVStream *st,
238  int (*parse)(AVFormatContext *avctx, AVStream *st,
239  const char *name, int size))
240 {
241  unsigned count;
242  int i;
243 
244  AVIOContext *pb = avctx->pb;
245  avio_skip(pb, 4);
246  count = avio_rb32(pb);
247  avio_skip(pb, 4);
248  for (i = 0; i < count; i++) {
249  char name[17];
250  int size;
251 
252  if (avio_feof(pb))
253  return AVERROR_EOF;
254 
255  avio_read(pb, name, 16);
256  name[sizeof(name) - 1] = 0;
257  size = avio_rb32(pb);
258  if (size < 0) {
259  av_log(avctx, AV_LOG_ERROR, "entry size %d is invalid\n", size);
260  return AVERROR_INVALIDDATA;
261  }
262  if (parse(avctx, st, name, size) < 0) {
263  avpriv_request_sample(avctx, "Variable %s", name);
264  avio_skip(pb, size);
265  }
266  }
267  return 0;
268 }
269 
270 static void read_index(AVIOContext *pb, AVStream *st)
271 {
272  uint64_t timestamp = 0;
273  int i;
274  for (i = 0; i < st->nb_frames; i++) {
275  uint32_t pos = avio_rb32(pb);
276  uint32_t size = avio_rb32(pb);
277  avio_skip(pb, 8);
278  if (avio_feof(pb))
279  return ;
280  av_add_index_entry(st, pos, timestamp, size, 0, AVINDEX_KEYFRAME);
281  if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
282  timestamp += size / (st->codecpar->channels * 2LL);
283  } else {
284  timestamp++;
285  }
286  }
287 }
288 
289 static int mv_read_header(AVFormatContext *avctx)
290 {
291  MvContext *mv = avctx->priv_data;
292  AVIOContext *pb = avctx->pb;
293  AVStream *ast = NULL, *vst = NULL; //initialization to suppress warning
294  int version, i;
295  int ret;
296 
297  avio_skip(pb, 4);
298 
299  version = avio_rb16(pb);
300  if (version == 2) {
301  uint64_t timestamp;
302  int v;
303  uint32_t bytes_per_sample;
304  AVRational fps;
305 
306  avio_skip(pb, 10);
307 
308  /* allocate audio track first to prevent unnecessary seeking
309  * (audio packet always precede video packet for a given frame) */
310  ast = avformat_new_stream(avctx, NULL);
311  if (!ast)
312  return AVERROR(ENOMEM);
313 
314  vst = avformat_new_stream(avctx, NULL);
315  if (!vst)
316  return AVERROR(ENOMEM);
317  fps = av_d2q(av_int2double(avio_rb64(pb)), INT_MAX);
318  avpriv_set_pts_info(vst, 64, fps.den, fps.num);
319  avio_skip(pb, 4);
320  vst->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
321  vst->avg_frame_rate = fps;
322  vst->duration = vst->nb_frames = avio_rb32(pb);
323  v = avio_rb32(pb);
324  switch (v) {
325  case 1:
326  vst->codecpar->codec_id = AV_CODEC_ID_MVC1;
327  break;
328  case 2:
329  vst->codecpar->format = AV_PIX_FMT_ARGB;
330  vst->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO;
331  break;
332  default:
333  avpriv_request_sample(avctx, "Video compression %i", v);
334  break;
335  }
336  vst->codecpar->codec_tag = 0;
337  vst->codecpar->width = avio_rb32(pb);
338  vst->codecpar->height = avio_rb32(pb);
339  avio_skip(pb, 12);
340 
342  ast->nb_frames = vst->nb_frames;
343  ast->codecpar->sample_rate = avio_rb32(pb);
344  if (ast->codecpar->sample_rate <= 0) {
345  av_log(avctx, AV_LOG_ERROR, "Invalid sample rate %d\n", ast->codecpar->sample_rate);
346  return AVERROR_INVALIDDATA;
347  }
348  avpriv_set_pts_info(ast, 33, 1, ast->codecpar->sample_rate);
349 
350  bytes_per_sample = avio_rb32(pb);
351 
352  v = avio_rb32(pb);
353  if (v == AUDIO_FORMAT_SIGNED) {
354  switch (bytes_per_sample) {
355  case 1:
357  break;
358  case 2:
360  break;
361  default:
362  avpriv_request_sample(avctx, "Audio sample size %i bytes", bytes_per_sample);
363  break;
364  }
365  } else {
366  avpriv_request_sample(avctx, "Audio compression (format %i)", v);
367  }
368 
369  if (bytes_per_sample == 0)
370  return AVERROR_INVALIDDATA;
371 
372  if (set_channels(avctx, ast, avio_rb32(pb)) < 0)
373  return AVERROR_INVALIDDATA;
374 
375  avio_skip(pb, 8);
376 
377  var_read_metadata(avctx, "title", 0x80);
378  var_read_metadata(avctx, "comment", 0x100);
379  avio_skip(pb, 0x80);
380 
381  timestamp = 0;
382  for (i = 0; i < vst->nb_frames; i++) {
383  uint32_t pos = avio_rb32(pb);
384  uint32_t asize = avio_rb32(pb);
385  uint32_t vsize = avio_rb32(pb);
386  if (avio_feof(pb))
387  return AVERROR_INVALIDDATA;
388  avio_skip(pb, 8);
389  av_add_index_entry(ast, pos, timestamp, asize, 0, AVINDEX_KEYFRAME);
390  av_add_index_entry(vst, pos + asize, i, vsize, 0, AVINDEX_KEYFRAME);
391  timestamp += asize / (ast->codecpar->channels * (uint64_t)bytes_per_sample);
392  }
393  } else if (!version && avio_rb16(pb) == 3) {
394  avio_skip(pb, 4);
395 
396  if ((ret = read_table(avctx, NULL, parse_global_var)) < 0)
397  return ret;
398 
399  if (mv->nb_audio_tracks < 0 || mv->nb_video_tracks < 0 ||
400  (mv->nb_audio_tracks == 0 && mv->nb_video_tracks == 0)) {
401  av_log(avctx, AV_LOG_ERROR, "Stream count is invalid.\n");
402  return AVERROR_INVALIDDATA;
403  }
404 
405  if (mv->nb_audio_tracks > 1) {
406  avpriv_request_sample(avctx, "Multiple audio streams support");
407  return AVERROR_PATCHWELCOME;
408  } else if (mv->nb_audio_tracks) {
409  ast = avformat_new_stream(avctx, NULL);
410  if (!ast)
411  return AVERROR(ENOMEM);
413  if ((ret = read_table(avctx, ast, parse_audio_var)) < 0)
414  return ret;
415  if (mv->acompression == 100 &&
416  mv->aformat == AUDIO_FORMAT_SIGNED &&
417  ast->codecpar->bits_per_coded_sample == 16) {
419  } else {
420  avpriv_request_sample(avctx,
421  "Audio compression %i (format %i, sr %i)",
422  mv->acompression, mv->aformat,
425  }
426  if (ast->codecpar->channels <= 0) {
427  av_log(avctx, AV_LOG_ERROR, "No valid channel count found.\n");
428  return AVERROR_INVALIDDATA;
429  }
430  }
431 
432  if (mv->nb_video_tracks > 1) {
433  avpriv_request_sample(avctx, "Multiple video streams support");
434  return AVERROR_PATCHWELCOME;
435  } else if (mv->nb_video_tracks) {
436  vst = avformat_new_stream(avctx, NULL);
437  if (!vst)
438  return AVERROR(ENOMEM);
439  vst->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
440  if ((ret = read_table(avctx, vst, parse_video_var))<0)
441  return ret;
442  }
443 
444  if (mv->nb_audio_tracks)
445  read_index(pb, ast);
446 
447  if (mv->nb_video_tracks)
448  read_index(pb, vst);
449  } else {
450  avpriv_request_sample(avctx, "Version %i", version);
451  return AVERROR_PATCHWELCOME;
452  }
453 
454  return 0;
455 }
456 
458 {
459  MvContext *mv = avctx->priv_data;
460  AVIOContext *pb = avctx->pb;
461  AVStream *st = avctx->streams[mv->stream_index];
462  FFStream *const sti = ffstream(st);
463  const AVIndexEntry *index;
464  int frame = mv->frame[mv->stream_index];
465  int64_t ret;
466  uint64_t pos;
467 
468  if (frame < sti->nb_index_entries) {
469  index = &sti->index_entries[frame];
470  pos = avio_tell(pb);
471  if (index->pos > pos)
472  avio_skip(pb, index->pos - pos);
473  else if (index->pos < pos) {
474  if (!(pb->seekable & AVIO_SEEKABLE_NORMAL))
475  return AVERROR(EIO);
476  ret = avio_seek(pb, index->pos, SEEK_SET);
477  if (ret < 0)
478  return ret;
479  }
480  ret = av_get_packet(pb, pkt, index->size);
481  if (ret < 0)
482  return ret;
483 
484  pkt->stream_index = mv->stream_index;
485  pkt->pts = index->timestamp;
487 
488  mv->frame[mv->stream_index]++;
489  mv->eof_count = 0;
490  } else {
491  mv->eof_count++;
492  if (mv->eof_count >= avctx->nb_streams)
493  return AVERROR_EOF;
494 
495  // avoid returning 0 without a packet
496  return AVERROR(EAGAIN);
497  }
498 
499  mv->stream_index++;
500  if (mv->stream_index >= avctx->nb_streams)
501  mv->stream_index = 0;
502 
503  return 0;
504 }
505 
506 static int mv_read_seek(AVFormatContext *avctx, int stream_index,
507  int64_t timestamp, int flags)
508 {
509  MvContext *mv = avctx->priv_data;
510  AVStream *st = avctx->streams[stream_index];
511  int frame, i;
512 
514  return AVERROR(ENOSYS);
515 
516  if (!(avctx->pb->seekable & AVIO_SEEKABLE_NORMAL))
517  return AVERROR(EIO);
518 
519  frame = av_index_search_timestamp(st, timestamp, flags);
520  if (frame < 0)
521  return AVERROR_INVALIDDATA;
522 
523  for (i = 0; i < avctx->nb_streams; i++)
524  mv->frame[i] = frame;
525  return 0;
526 }
527 
529  .name = "mv",
530  .long_name = NULL_IF_CONFIG_SMALL("Silicon Graphics Movie"),
531  .priv_data_size = sizeof(MvContext),
532  .read_probe = mv_probe,
536 };
MvContext::nb_video_tracks
int nb_video_tracks
Definition: mvdec.c:37
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: codec_par.h:74
name
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option name
Definition: writing_filters.txt:88
MvContext::eof_count
int eof_count
number of streams that have finished
Definition: mvdec.c:40
MvContext::frame
int frame[2]
frame nb for current stream
Definition: mvdec.c:42
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:768
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:56
AVSEEK_FLAG_FRAME
#define AVSEEK_FLAG_FRAME
seeking based on frame number
Definition: avformat.h:2278
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
var_read_string
static char * var_read_string(AVIOContext *pb, int size)
Definition: mvdec.c:58
av_int2double
static av_always_inline double av_int2double(uint64_t i)
Reinterpret a 64-bit integer as a double.
Definition: intfloat.h:60
AV_CH_LAYOUT_MONO
#define AV_CH_LAYOUT_MONO
Definition: channel_layout.h:90
set_channels
static int set_channels(AVFormatContext *avctx, AVStream *st, int channels)
Definition: mvdec.c:104
rational.h
mv
static const int8_t mv[256][2]
Definition: 4xm.c:79
AV_CODEC_ID_RAWVIDEO
@ AV_CODEC_ID_RAWVIDEO
Definition: codec_id.h:63
AV_CODEC_ID_MVC2
@ AV_CODEC_ID_MVC2
Definition: codec_id.h:235
AVFormatContext::streams
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1268
index
fg index
Definition: ffmpeg_filter.c:167
parse
static int parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition: vp3_parser.c:23
AVStream::avg_frame_rate
AVRational avg_frame_rate
Average framerate.
Definition: avformat.h:1015
AVSEEK_FLAG_BYTE
#define AVSEEK_FLAG_BYTE
seeking based on position in bytes
Definition: avformat.h:2276
intfloat.h
AV_PKT_FLAG_KEY
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: packet.h:428
sample_rate
sample_rate
Definition: ffmpeg_filter.c:153
AVIndexEntry
Definition: avformat.h:801
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:31
AVINDEX_KEYFRAME
#define AVINDEX_KEYFRAME
Definition: avformat.h:809
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:459
return
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a it should return
Definition: filter_design.txt:264
AVCodecParameters::channels
int channels
Audio only.
Definition: codec_par.h:166
ffstream
static av_always_inline FFStream * ffstream(AVStream *st)
Definition: internal.h:432
AV_CODEC_ID_PCM_S16BE
@ AV_CODEC_ID_PCM_S16BE
Definition: codec_id.h:315
read_seek
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:149
av_add_index_entry
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:117
AUDIO_FORMAT_SIGNED
#define AUDIO_FORMAT_SIGNED
Definition: mvdec.c:48
avio_tell
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:504
AVStream::duration
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:985
var_read_int
static int var_read_int(AVIOContext *pb, int size)
Definition: mvdec.c:75
av_reduce
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition: rational.c:35
AVRational::num
int num
Numerator.
Definition: rational.h:59
AV_CH_LAYOUT_STEREO
#define AV_CH_LAYOUT_STEREO
Definition: channel_layout.h:91
AV_DICT_DONT_STRDUP_VAL
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
Definition: dict.h:72
AV_CODEC_ID_PCM_S8
@ AV_CODEC_ID_PCM_S8
Definition: codec_id.h:318
avio_rb32
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:790
pkt
AVPacket * pkt
Definition: movenc.c:59
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
AVFormatContext::metadata
AVDictionary * metadata
Metadata that applies to the whole file.
Definition: avformat.h:1429
AVInputFormat
Definition: avformat.h:650
MvContext::aformat
int aformat
audio format
Definition: mvdec.c:45
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:257
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:655
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:449
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
AVCodecParameters::width
int width
Video only.
Definition: codec_par.h:126
channels
channels
Definition: aptx.h:33
AVFormatContext
Format I/O context.
Definition: avformat.h:1200
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1095
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:527
parse_audio_var
static int parse_audio_var(AVFormatContext *avctx, AVStream *st, const char *name, int size)
Parse audio variable.
Definition: mvdec.c:144
NULL
#define NULL
Definition: coverity.c:32
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:64
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
var_read_metadata
static void var_read_metadata(AVFormatContext *avctx, const char *tag, int size)
Definition: mvdec.c:97
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
mv_read_packet
static int mv_read_packet(AVFormatContext *avctx, AVPacket *pkt)
Definition: mvdec.c:457
avio_rb64
uint64_t avio_rb64(AVIOContext *s)
Definition: aviobuf.c:937
AVFormatContext::pb
AVIOContext * pb
I/O context.
Definition: avformat.h:1242
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:447
parse_video_var
static int parse_video_var(AVFormatContext *avctx, AVStream *st, const char *name, int size)
Parse video variable.
Definition: mvdec.c:180
parse_global_var
static int parse_global_var(AVFormatContext *avctx, AVStream *st, const char *name, int size)
Parse global variable.
Definition: mvdec.c:120
AV_PIX_FMT_ABGR
@ AV_PIX_FMT_ABGR
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
Definition: pixfmt.h:94
MvContext::stream_index
int stream_index
current stream index
Definition: mvdec.c:41
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:170
AVStream::nb_frames
int64_t nb_frames
number of frames in this stream if known or 0
Definition: avformat.h:987
AVCodecParameters::extradata_size
int extradata_size
Size of the extradata content in bytes.
Definition: codec_par.h:78
AVFormatContext::nb_streams
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1256
eval.h
AVIOContext
Bytestream IO Context.
Definition: avio.h:161
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
AVIOContext::seekable
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:262
FFStream
Definition: internal.h:194
avio_get_str
int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen)
Read a string from pb into buf.
Definition: aviobuf.c:895
size
int size
Definition: twinvq_data.h:10344
ff_mv_demuxer
const AVInputFormat ff_mv_demuxer
Definition: mvdec.c:528
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: macros.h:56
AV_RB32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
Definition: bytestream.h:96
AVStream::sample_aspect_ratio
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown)
Definition: avformat.h:1004
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:379
mv_probe
static int mv_probe(const AVProbeData *p)
Definition: mvdec.c:50
version
version
Definition: libkvazaar.c:313
AV_PIX_FMT_ARGB
@ AV_PIX_FMT_ARGB
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
Definition: pixfmt.h:92
AV_CODEC_ID_MJPEG
@ AV_CODEC_ID_MJPEG
Definition: codec_id.h:57
mv_read_seek
static int mv_read_seek(AVFormatContext *avctx, int stream_index, int64_t timestamp, int flags)
Definition: mvdec.c:506
AV_CODEC_ID_NONE
@ AV_CODEC_ID_NONE
Definition: codec_id.h:48
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:366
AVCodecParameters::height
int height
Definition: codec_par.h:127
value
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default value
Definition: writing_filters.txt:86
av_d2q
AVRational av_d2q(double d, int max)
Convert a double precision floating point number to a rational.
Definition: rational.c:106
MvContext
Definition: mvdec.c:36
AV_CODEC_ID_MVC1
@ AV_CODEC_ID_MVC1
Definition: codec_id.h:234
av_get_packet
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:197
read_index
static void read_index(AVIOContext *pb, AVStream *st)
Definition: mvdec.c:270
tag
uint32_t tag
Definition: movenc.c:1596
ret
ret
Definition: filter_design.txt:187
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
AVStream
Stream structure.
Definition: avformat.h:935
avio_seek
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:260
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
av_strtod
double av_strtod(const char *numstr, char **tail)
Parse the string in numstr and return its value as a double.
Definition: eval.c:106
avio_rb16
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:775
pos
unsigned int pos
Definition: spdifenc.c:412
avformat.h
mv_read_header
static int mv_read_header(AVFormatContext *avctx)
Definition: mvdec.c:289
channel_layout.h
AVIO_SEEKABLE_NORMAL
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition: avio.h:40
AVRational::den
int den
Denominator.
Definition: rational.h:60
avio_read
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:641
avpriv_set_pts_info
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: utils.c:1196
AVPacket::stream_index
int stream_index
Definition: packet.h:375
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:347
FFStream::index_entries
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
Definition: internal.h:277
av_strdup
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:279
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVCodecParameters::bits_per_coded_sample
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: codec_par.h:102
MvContext::nb_audio_tracks
int nb_audio_tracks
Definition: mvdec.c:38
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:37
AVCodecParameters::format
int format
Definition: codec_par.h:84
av_free
#define av_free(p)
Definition: tableprint_vlc.h:34
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:60
AVPacket
This structure stores compressed data.
Definition: packet.h:350
MvContext::acompression
int acompression
compression level for audio stream
Definition: mvdec.c:44
AV_CODEC_ID_SGIRLE
@ AV_CODEC_ID_SGIRLE
Definition: codec_id.h:233
av_dict_set
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
AVCodecParameters::channel_layout
uint64_t channel_layout
Audio only.
Definition: codec_par.h:162
read_table
static int read_table(AVFormatContext *avctx, AVStream *st, int(*parse)(AVFormatContext *avctx, AVStream *st, const char *name, int size))
Definition: mvdec.c:237
convert_header.str
string str
Definition: convert_header.py:20
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
var_read_float
static AVRational var_read_float(AVIOContext *pb, int size)
Definition: mvdec.c:86
AVFormatContext::priv_data
void * priv_data
Format private data.
Definition: avformat.h:1228
AV_RB16
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
Definition: bytestream.h:98
av_index_search_timestamp
int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags)
Get the index for a specific timestamp.
Definition: seek.c:237
avio_feof
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition: aviobuf.c:375