FFmpeg
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
usmdec.c
Go to the documentation of this file.
1 /*
2  * USM demuxer
3  * Copyright (c) 2023 Paul B Mahol
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/intfloat.h"
23 #include "libavutil/intreadwrite.h"
24 #include "libavutil/mem.h"
25 #include "libavcodec/bytestream.h"
26 
27 #include "avformat.h"
28 #include "demux.h"
29 #include "internal.h"
30 
31 #define VIDEOI 0
32 #define AUDIOI 1
33 #define ALPHAI 2
34 #define SUBTTI 3
35 
36 typedef struct USMChannel {
37  int index;
38  int used;
39  int type;
40  int codec_id;
42  int nb_frames;
44  int width, height;
47 } USMChannel;
48 
49 typedef struct USMDemuxContext {
50  USMChannel ch[4][256];
51  int nb_channels[4];
52  uint8_t *header;
53  unsigned header_size;
55 
56 static int usm_probe(const AVProbeData *p)
57 {
58  if (AV_RL32(p->buf) != MKTAG('C','R','I','D'))
59  return 0;
60 
61  if (AV_RN32(p->buf + 4) == 0)
62  return 0;
63 
64  return AVPROBE_SCORE_MAX / 3;
65 }
66 
68 {
69  s->ctx_flags |= AVFMTCTX_NOHEADER;
70  return 0;
71 }
72 
74  USMChannel *ch, int ch_type,
75  uint32_t parent_chunk_size)
76 {
77  USMDemuxContext *usm = s->priv_data;
78  GetByteContext gb, ugb, sgb;
79  uint32_t chunk_type, chunk_size, offset;
80  uint32_t unique_offset, string_offset;
81  int nb_items, unique_size, nb_dictionaries;
82  AVRational fps = { 0 };
83  int type;
84 
85  chunk_type = avio_rb32(pb);
86  chunk_size = avio_rb32(pb);
87 
88  if (chunk_type != MKBETAG('@','U','T','F'))
89  return AVERROR_INVALIDDATA;
90 
91  if (!chunk_size || chunk_size >= parent_chunk_size)
92  return AVERROR_INVALIDDATA;
93 
94  av_fast_malloc(&usm->header, &usm->header_size, chunk_size);
95  if (!usm->header)
96  return AVERROR(ENOMEM);
97 
98  if (avio_read(pb, usm->header, chunk_size) != chunk_size)
99  return AVERROR_EOF;
100 
101  bytestream2_init(&gb, usm->header, chunk_size);
102  ugb = gb;
103  sgb = gb;
104  unique_offset = bytestream2_get_be32(&gb);
105  string_offset = bytestream2_get_be32(&gb);
106  /*byte_offset =*/ bytestream2_get_be32(&gb);
107  /*payload_name_offset =*/ bytestream2_get_be32(&gb);
108  nb_items = bytestream2_get_be16(&gb);
109  unique_size = bytestream2_get_be16(&gb);
110  nb_dictionaries = bytestream2_get_be32(&gb);
111  if (nb_dictionaries == 0)
112  return AVERROR_INVALIDDATA;
113 
114  bytestream2_skip(&ugb, unique_offset);
115  if (bytestream2_get_bytes_left(&ugb) < unique_size)
116  return AVERROR_INVALIDDATA;
117  bytestream2_init(&ugb, ugb.buffer, unique_size);
118 
119  bytestream2_skip(&sgb, string_offset);
120 
121  for (int i = 0; i < nb_items; i++) {
122  GetByteContext *xgb;
123  uint8_t key[256];
124  int64_t value = -1;
125  int n = 0;
126 
127  type = bytestream2_get_byte(&gb);
128  offset = bytestream2_get_be32(&gb);
129 
130  bytestream2_seek(&sgb, string_offset + offset, SEEK_SET);
131  while (bytestream2_get_bytes_left(&sgb) > 0) {
132  key[n] = bytestream2_get_byte(&sgb);
133  if (!key[n])
134  break;
135  if (n >= sizeof(key) - 1)
136  break;
137  n++;
138  }
139  key[n] = '\0';
140 
141  if ((type >> 5) == 1)
142  xgb = &gb;
143  else
144  xgb = &ugb;
145 
146  switch (type & 0x1F) {
147  case 0x10:
148  case 0x11:
149  value = bytestream2_get_byte(xgb);
150  break;
151  case 0x12:
152  case 0x13:
153  value = bytestream2_get_be16(xgb);
154  break;
155  case 0x14:
156  case 0x15:
157  value = bytestream2_get_be32(xgb);
158  break;
159  case 0x16:
160  case 0x17:
161  value = bytestream2_get_be64(xgb);
162  break;
163  case 0x18:
164  value = av_int2float(bytestream2_get_be32(xgb));
165  break;
166  case 0x19:
167  value = av_int2double(bytestream2_get_be64(xgb));
168  break;
169  case 0x1A:
170  break;
171  }
172 
173  if (ch_type == AUDIOI) {
174  if (!strcmp(key, "sampling_rate")) {
175  ch->rate.num = value;
176  ch->rate.den = 1;
177  } else if (!strcmp(key, "num_channels")) {
178  ch->nb_channels = value;
179  } else if (!strcmp(key, "total_samples")) {
180  ch->duration = value;
181  } else if (!strcmp(key, "audio_codec")) {
182  switch (value) {
183  case 2:
185  break;
186  case 4:
188  break;
189  default:
190  av_log(s, AV_LOG_ERROR, "unsupported audio: %d\n", (int)value);
191  break;
192  }
193  }
194  } else if (ch_type == VIDEOI || ch_type == ALPHAI) {
195  if (!strcmp(key, "width")) {
196  ch->width = value;
197  } else if (!strcmp(key, "height")) {
198  ch->height = value;
199  } else if (!strcmp(key, "total_frames")) {
200  ch->nb_frames = value;
201  } else if (!strcmp(key, "framerate_n")) {
202  fps.num = value;
203  } else if (!strcmp(key, "framerate_d")) {
204  fps.den = value;
205  } else if (!strcmp(key, "mpeg_codec")) {
206  switch (value) {
207  case 1:
209  break;
210  case 5:
212  break;
213  case 9:
215  break;
216  default:
217  av_log(s, AV_LOG_ERROR, "unsupported video: %d\n", (int)value);
218  break;
219  }
220  }
221  }
222  }
223 
224  if (ch_type == VIDEOI && fps.num && fps.den)
225  ch->rate = fps;
226 
227  return 0;
228 }
229 
231  uint32_t chunk_type, uint32_t chunk_size,
232  AVPacket *pkt)
233 {
234  const int is_audio = chunk_type == MKBETAG('@','S','F','A');
235  const int is_alpha = chunk_type == MKBETAG('@','A','L','P');
236  const int is_subtt = chunk_type == MKBETAG('@','S','B','T');
237  USMDemuxContext *usm = s->priv_data;
238  int padding_size, payload_type, payload_offset;
239  const int ch_type = is_subtt ? SUBTTI : is_audio ? AUDIOI : is_alpha ? ALPHAI : VIDEOI;
240  int stream_index, frame_rate;
242 
243  ret = avio_tell(pb);
244  if (ret < 0)
245  return ret;
246  chunk_start = ret;
247  avio_skip(pb, 1);
248  payload_offset = avio_r8(pb);
249  padding_size = avio_rb16(pb);
250  stream_index = avio_r8(pb);
251  avio_skip(pb, 2);
252  payload_type = avio_r8(pb);
253  /*frame_time =*/ avio_rb32(pb);
254  frame_rate = avio_rb32(pb);
255  avio_skip(pb, 8);
256  ret = avio_tell(pb);
257  if (ret < 0)
258  return ret;
259  ret = avio_skip(pb, FFMAX(0, (ret - chunk_start) - payload_offset));
260  if (ret < 0)
261  return ret;
262 
263  if (payload_type == 1) {
264  if (usm->ch[ch_type][stream_index].used == 0) {
265  USMChannel *ch = &usm->ch[ch_type][stream_index];
266 
267  switch (ch_type) {
268  case ALPHAI:
269  case VIDEOI:
270  ch->type = AVMEDIA_TYPE_VIDEO;
271  break;
272  case AUDIOI:
273  ch->type = AVMEDIA_TYPE_AUDIO;
274  break;
275  case SUBTTI:
277  break;
278  default:
279  return AVERROR_INVALIDDATA;
280  }
281 
282  ch->used = 1;
283  ch->index = -1;
284  usm->nb_channels[ch_type]++;
285 
286  ret = parse_utf(s, pb, ch, ch_type, chunk_size);
287  if (ret < 0)
288  return ret;
289  }
290  } else if (payload_type == 0) {
291  if (usm->ch[ch_type][stream_index].used == 1) {
292  USMChannel *ch = &usm->ch[ch_type][stream_index];
293  int get_extradata = 0;
294  uint32_t pkt_size;
295  AVStream *st;
296 
297  if (ch->index < 0) {
298  AVCodecParameters *par;
299  st = avformat_new_stream(s, NULL);
300  if (!st)
301  return AVERROR(ENOMEM);
302  par = st->codecpar;
303  par->codec_type = ch->type;
304  par->codec_id = ch->codec_id;
305  st->start_time = 0;
306 
307  switch (ch->type) {
308  case AVMEDIA_TYPE_VIDEO:
309  par->width = ch->width;
310  par->height = ch->height;
311  st->nb_frames = ch->nb_frames;
312  break;
313  case AVMEDIA_TYPE_AUDIO:
314  par->sample_rate = ch->rate.num;
315  par->ch_layout.nb_channels = ch->nb_channels;
316  st->duration = ch->duration;
317  break;
318  }
319 
320  ch->index = st->index;
321  if (!ch->rate.num || !ch->rate.den)
322  ch->rate = av_make_q(frame_rate, 100);
323  avpriv_set_pts_info(st, 64, ch->rate.den, ch->rate.num);
324 
326  get_extradata = ch->codec_id == AV_CODEC_ID_ADPCM_ADX;
327  ch->extradata_pos = avio_tell(pb);
328  }
329 
330  ret = avio_tell(pb);
331  if (ret < 0)
332  return ret;
333 
334  pkt_size = chunk_size - (ret - chunk_start) - padding_size;
335  if (get_extradata) {
336  if ((ret = ff_get_extradata(s, st->codecpar, pb, pkt_size)) < 0)
337  return ret;
338  } else {
339  if (ret == ch->extradata_pos && ch->codec_id == AV_CODEC_ID_ADPCM_ADX) {
340  avio_skip(pb, pkt_size);
341  ret = 0;
342  } else {
343  ret = av_get_packet(pb, pkt, pkt_size);
344  if (ret < 0)
345  return ret;
346 
347  pkt->stream_index = ch->index;
348  }
349  }
350 
351  avio_skip(pb, padding_size);
352 
353  if (ret != pkt_size)
354  return AVERROR_EOF;
355  if (get_extradata == 0)
356  return ret;
357  }
358  }
359 
360  ret = avio_tell(pb);
361  if (ret < 0)
362  return ret;
363  ret = avio_skip(pb, FFMAX(0, chunk_size - (ret - chunk_start)));
364  if (ret < 0)
365  return ret;
366  return FFERROR_REDO;
367 }
368 
370 {
371  AVIOContext *pb = s->pb;
373 
374  while (!avio_feof(pb)) {
375  uint32_t chunk_type, chunk_size;
376  int got_packet = 0;
377  int64_t pos;
378 
379  pos = avio_tell(pb);
380  if (pos < 0)
381  return pos;
382  chunk_type = avio_rb32(pb);
383  chunk_size = avio_rb32(pb);
384  if (!chunk_size)
385  return AVERROR_INVALIDDATA;
386 
387  switch (chunk_type) {
388  case MKBETAG('C','R','I','D'):
389  default:
390  ret = avio_skip(pb, chunk_size);
391  break;
392  case MKBETAG('@','A','L','P'):
393  case MKBETAG('@','S','B','T'):
394  case MKBETAG('@','S','F','A'):
395  case MKBETAG('@','S','F','V'):
396  ret = parse_chunk(s, pb, chunk_type, chunk_size, pkt);
397  got_packet = ret > 0;
398  break;
399  }
400 
401  if (got_packet)
402  pkt->pos = pos;
403 
404  if (got_packet || ret < 0)
405  break;
406  }
407 
408  return ret;
409 }
410 
412 {
413  USMDemuxContext *usm = s->priv_data;
414  av_freep(&usm->header);
415  usm->header_size = 0;
416  return 0;
417 }
418 
420  .p.name = "usm",
421  .p.long_name = NULL_IF_CONFIG_SMALL("CRI USM"),
422  .p.extensions = "usm",
424  .priv_data_size = sizeof(USMDemuxContext),
429 };
AVMEDIA_TYPE_SUBTITLE
@ AVMEDIA_TYPE_SUBTITLE
Definition: avutil.h:204
AVFMT_NO_BYTE_SEEK
#define AVFMT_NO_BYTE_SEEK
Format does not allow seeking by bytes.
Definition: avformat.h:487
chunk_start
static int chunk_start(AVFormatContext *s)
Definition: webm_chunk.c:167
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
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:51
USMDemuxContext
Definition: usmdec.c:49
GetByteContext
Definition: bytestream.h:33
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: codec_par.h:47
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
av_int2double
static av_always_inline double av_int2double(uint64_t i)
Reinterpret a 64-bit integer as a double.
Definition: intfloat.h:60
int64_t
long long int64_t
Definition: coverity.c:34
bytestream2_seek
static av_always_inline int bytestream2_seek(GetByteContext *g, int offset, int whence)
Definition: bytestream.h:212
USMDemuxContext::header_size
unsigned header_size
Definition: usmdec.c:53
USMDemuxContext::nb_channels
int nb_channels[4]
Definition: usmdec.c:51
USMChannel::codec_id
int codec_id
Definition: usmdec.c:40
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
AVFMT_NOBINSEARCH
#define AVFMT_NOBINSEARCH
Format does not allow to fall back on binary search via read_timestamp.
Definition: avformat.h:485
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:329
intfloat.h
USMChannel::index
int index
Definition: usmdec.c:37
ALPHAI
#define ALPHAI
Definition: usmdec.c:33
ff_get_extradata
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...
Definition: demux_utils.c:326
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:463
bytestream2_skip
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition: bytestream.h:168
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: avformat.c:777
ffstream
static av_always_inline FFStream * ffstream(AVStream *st)
Definition: internal.h:347
av_int2float
static av_always_inline float av_int2float(uint32_t i)
Reinterpret a 32-bit integer as a float.
Definition: intfloat.h:40
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:143
avio_tell
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:494
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:480
type
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 type
Definition: writing_filters.txt:86
AVStream::duration
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:804
AVRational::num
int num
Numerator.
Definition: rational.h:59
USMChannel::extradata_pos
int64_t extradata_pos
Definition: usmdec.c:46
avio_rb32
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:761
pkt
AVPacket * pkt
Definition: movenc.c:60
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:209
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_read_callback.c:42
intreadwrite.h
s
#define s(width, name)
Definition: cbs_vp9.c:198
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:550
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:453
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
AV_CODEC_ID_VP9
@ AV_CODEC_ID_VP9
Definition: codec_id.h:222
AVCodecParameters::width
int width
Video only.
Definition: codec_par.h:134
GetByteContext::buffer
const uint8_t * buffer
Definition: bytestream.h:34
AUDIOI
#define AUDIOI
Definition: usmdec.c:32
key
const char * key
Definition: hwcontext_opencl.c:189
AV_CODEC_ID_H264
@ AV_CODEC_ID_H264
Definition: codec_id.h:79
USMDemuxContext::ch
USMChannel ch[4][256]
Definition: usmdec.c:50
parse_chunk
static int64_t parse_chunk(AVFormatContext *s, AVIOContext *pb, uint32_t chunk_type, uint32_t chunk_size, AVPacket *pkt)
Definition: usmdec.c:230
FFStream::need_parsing
enum AVStreamParseType need_parsing
Definition: internal.h:314
AVFormatContext
Format I/O context.
Definition: avformat.h:1265
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:768
NULL
#define NULL
Definition: coverity.c:32
AVFMTCTX_NOHEADER
#define AVFMTCTX_NOHEADER
signal that no header is present (streams are added dynamically)
Definition: avformat.h:1216
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
USMChannel::height
int height
Definition: usmdec.c:44
AV_RN32
#define AV_RN32(p)
Definition: intreadwrite.h:360
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:451
AVCodecParameters::ch_layout
AVChannelLayout ch_layout
Audio only.
Definition: codec_par.h:180
AVCodecParameters::sample_rate
int sample_rate
Audio only.
Definition: codec_par.h:184
AV_CODEC_ID_MPEG1VIDEO
@ AV_CODEC_ID_MPEG1VIDEO
Definition: codec_id.h:53
bytestream2_get_bytes_left
static av_always_inline int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:158
AVStream::nb_frames
int64_t nb_frames
number of frames in this stream if known or 0
Definition: avformat.h:806
AVIOContext
Bytestream IO Context.
Definition: avio.h:160
AV_CODEC_ID_ADPCM_ADX
@ AV_CODEC_ID_ADPCM_ADX
Definition: codec_id.h:383
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:94
av_make_q
static AVRational av_make_q(int num, int den)
Create an AVRational.
Definition: rational.h:71
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: macros.h:56
USMChannel::used
int used
Definition: usmdec.c:38
FFInputFormat::p
AVInputFormat p
The public AVInputFormat.
Definition: demux.h:46
avio_r8
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:603
offset
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 offset
Definition: writing_filters.txt:86
USMChannel::duration
int64_t duration
Definition: usmdec.c:45
read_header
static int read_header(FFV1Context *f, RangeCoder *c)
Definition: ffv1dec.c:467
ff_usm_demuxer
const FFInputFormat ff_usm_demuxer
Definition: usmdec.c:419
FFERROR_REDO
#define FFERROR_REDO
Returned by demuxers to indicate that data was consumed but discarded (ignored streams or junk data).
Definition: demux.h:176
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
AVCodecParameters::height
int height
Definition: codec_par.h:135
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
USMChannel::rate
AVRational rate
Definition: usmdec.c:43
demux.h
usm_probe
static int usm_probe(const AVProbeData *p)
Definition: usmdec.c:56
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:94
ret
ret
Definition: filter_design.txt:187
AVStream
Stream structure.
Definition: avformat.h:745
avio_rb16
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:746
pos
unsigned int pos
Definition: spdifenc.c:414
avformat.h
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
USMChannel::nb_frames
int nb_frames
Definition: usmdec.c:42
AVStream::index
int index
stream index in AVFormatContext
Definition: avformat.h:751
VIDEOI
#define VIDEOI
Definition: usmdec.c:31
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:612
usm_read_header
static int usm_read_header(AVFormatContext *s)
Definition: usmdec.c:67
USMChannel::nb_channels
int nb_channels
Definition: usmdec.c:41
AVPacket::stream_index
int stream_index
Definition: packet.h:537
parse_utf
static int parse_utf(AVFormatContext *s, AVIOContext *pb, USMChannel *ch, int ch_type, uint32_t parent_chunk_size)
Definition: usmdec.c:73
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:318
usm_read_close
static int usm_read_close(AVFormatContext *s)
Definition: usmdec.c:411
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
read_probe
static int read_probe(const AVProbeData *p)
Definition: cdg.c:30
mem.h
USMChannel
Definition: usmdec.c:36
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:55
AVPacket
This structure stores compressed data.
Definition: packet.h:512
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
av_fast_malloc
void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
Allocate a buffer, reusing the given one if large enough.
Definition: mem.c:557
AVPacket::pos
int64_t pos
byte position in stream, -1 if unknown
Definition: packet.h:555
usm_read_packet
static int usm_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: usmdec.c:369
FFInputFormat
Definition: demux.h:42
bytestream.h
bytestream2_init
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:137
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
SUBTTI
#define SUBTTI
Definition: usmdec.c:34
MKTAG
#define MKTAG(a, b, c, d)
Definition: macros.h:55
AVStream::start_time
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base.
Definition: avformat.h:794
AVSTREAM_PARSE_TIMESTAMPS
@ AVSTREAM_PARSE_TIMESTAMPS
full parsing and interpolation of timestamps for frames not starting on a packet boundary
Definition: avformat.h:592
USMChannel::type
int type
Definition: usmdec.c:39
USMChannel::width
int width
Definition: usmdec.c:44
USMDemuxContext::header
uint8_t * header
Definition: usmdec.c:52
AV_CODEC_ID_HCA
@ AV_CODEC_ID_HCA
Definition: codec_id.h:541
avio_feof
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition: aviobuf.c:346