FFmpeg
bintext.c
Go to the documentation of this file.
1 /*
2  * Binary text demuxer
3  * eXtended BINary text (XBIN) demuxer
4  * Artworx Data Format demuxer
5  * iCEDraw File demuxer
6  * Copyright (c) 2010 Peter Ross <pross@xvid.org>
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with FFmpeg; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24 
25 /**
26  * @file
27  * Binary text demuxer
28  * eXtended BINary text (XBIN) demuxer
29  * Artworx Data Format demuxer
30  * iCEDraw File demuxer
31  */
32 
33 #include "libavutil/intreadwrite.h"
34 #include "libavutil/opt.h"
35 #include "libavutil/parseutils.h"
36 #include "avformat.h"
37 #include "internal.h"
38 #include "sauce.h"
39 #include "libavcodec/bintext.h"
40 
41 typedef struct {
42  const AVClass *class;
43  int chars_per_frame; /**< characters to send decoder per frame;
44  set by private options as characters per second, and then
45  converted to characters per frame at runtime */
46  int width, height; /**< video size (WxH pixels) (private option) */
47  AVRational framerate; /**< frames per second (private option) */
48  uint64_t fsize; /**< file size less metadata buffer */
50 
52 {
53  BinDemuxContext *bin = s->priv_data;
55  if (!st)
56  return NULL;
57  st->codecpar->codec_tag = 0;
59 
60  if (!bin->width) {
61  st->codecpar->width = (80<<3);
62  st->codecpar->height = (25<<4);
63  }
64 
65  avpriv_set_pts_info(st, 60, bin->framerate.den, bin->framerate.num);
66 
67  /* simulate tty display speed */
68  bin->chars_per_frame = av_clip(av_q2d(st->time_base) * bin->chars_per_frame, 1, INT_MAX);
69 
70  return st;
71 }
72 
73 #if CONFIG_BINTEXT_DEMUXER | CONFIG_ADF_DEMUXER | CONFIG_IDF_DEMUXER
74 /**
75  * Given filesize and width, calculate height (assume font_height of 16)
76  */
77 static void calculate_height(AVCodecParameters *par, uint64_t fsize)
78 {
79  par->height = (fsize / ((par->width>>3)*2)) << 4;
80 }
81 #endif
82 
83 #if CONFIG_BINTEXT_DEMUXER
84 static const uint8_t next_magic[]={
85  0x1A, 0x1B, '[', '0', ';', '3', '0', ';', '4', '0', 'm', 'N', 'E', 'X', 'T', 0x00
86 };
87 
88 static int next_tag_read(AVFormatContext *avctx, uint64_t *fsize)
89 {
90  AVIOContext *pb = avctx->pb;
91  char buf[36];
92  int len;
93  uint64_t start_pos = avio_size(pb) - 256;
94 
95  avio_seek(pb, start_pos, SEEK_SET);
96  if (avio_read(pb, buf, sizeof(next_magic)) != sizeof(next_magic))
97  return -1;
98  if (memcmp(buf, next_magic, sizeof(next_magic)))
99  return -1;
100  if (avio_r8(pb) != 0x01)
101  return -1;
102 
103  *fsize -= 256;
104 
105 #define GET_EFI2_META(name,size) \
106  len = avio_r8(pb); \
107  if (len < 1 || len > size) \
108  return -1; \
109  if (avio_read(pb, buf, size) == size && *buf) { \
110  buf[len] = 0; \
111  av_dict_set(&avctx->metadata, name, buf, 0); \
112  }
113 
114  GET_EFI2_META("filename", 12)
115  GET_EFI2_META("author", 20)
116  GET_EFI2_META("publisher", 20)
117  GET_EFI2_META("title", 35)
118 
119  return 0;
120 }
121 
122 static void predict_width(AVCodecParameters *par, uint64_t fsize, int got_width)
123 {
124  /** attempt to guess width */
125  if (!got_width)
126  par->width = fsize > 4000 ? (160<<3) : (80<<3);
127 }
128 
129 static int bin_probe(const AVProbeData *p)
130 {
131  const uint8_t *d = p->buf;
132  int magic = 0, sauce = 0;
133  int invisible = 0;
134  int i;
135 
136  if (p->buf_size > 256)
137  magic = !memcmp(d + p->buf_size - 256, next_magic, sizeof(next_magic));
138  if (p->buf_size > 128)
139  sauce = !memcmp(d + p->buf_size - 128, "SAUCE00", 7);
140 
141  if (magic)
142  return AVPROBE_SCORE_EXTENSION + 1;
143 
144  if (av_match_ext(p->filename, "bin")) {
145  AVCodecParameters par;
146  int got_width = 0;
147  par.width = par.height = 0;
148  if (sauce)
149  return AVPROBE_SCORE_EXTENSION + 1;
150 
151  predict_width(&par, p->buf_size, got_width);
152  if (par.width < 8)
153  return 0;
154  calculate_height(&par, p->buf_size);
155  if (par.height <= 0)
156  return 0;
157 
158  for (i = 0; i < p->buf_size - 256; i+=2) {
159  if ((d[i+1] & 15) == (d[i+1] >> 4) && d[i] && d[i] != 0xFF && d[i] != ' ') {
160  invisible ++;
161  }
162  }
163 
164  if (par.width * par.height * 2 / (8*16) == p->buf_size)
165  return AVPROBE_SCORE_MAX / 2;
166  return 0;
167  }
168 
169  if (sauce)
170  return 1;
171 
172  return 0;
173 }
174 
175 
176 static int bintext_read_header(AVFormatContext *s)
177 {
178  BinDemuxContext *bin = s->priv_data;
179  AVIOContext *pb = s->pb;
180 
181  AVStream *st = init_stream(s);
182  if (!st)
183  return AVERROR(ENOMEM);
185 
186  if (ff_alloc_extradata(st->codecpar, 2))
187  return AVERROR(ENOMEM);
188  st->codecpar->extradata[0] = 16;
189  st->codecpar->extradata[1] = 0;
190 
191  if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
192  int got_width = 0;
193  bin->fsize = avio_size(pb);
194  if (ff_sauce_read(s, &bin->fsize, &got_width, 0) < 0)
195  next_tag_read(s, &bin->fsize);
196  if (!bin->width) {
197  predict_width(st->codecpar, bin->fsize, got_width);
198  if (st->codecpar->width < 8)
199  return AVERROR_INVALIDDATA;
200  calculate_height(st->codecpar, bin->fsize);
201  }
202  avio_seek(pb, 0, SEEK_SET);
203  }
204  return 0;
205 }
206 #endif /* CONFIG_BINTEXT_DEMUXER */
207 
208 #if CONFIG_XBIN_DEMUXER
209 static int xbin_probe(const AVProbeData *p)
210 {
211  const uint8_t *d = p->buf;
212 
213  if (AV_RL32(d) == MKTAG('X','B','I','N') && d[4] == 0x1A &&
214  AV_RL16(d+5) > 0 && AV_RL16(d+5) <= 160 &&
215  d[9] > 0 && d[9] <= 32)
216  return AVPROBE_SCORE_MAX;
217  return 0;
218 }
219 
220 static int xbin_read_header(AVFormatContext *s)
221 {
222  BinDemuxContext *bin = s->priv_data;
223  AVIOContext *pb = s->pb;
224  char fontheight, flags;
225 
226  AVStream *st = init_stream(s);
227  if (!st)
228  return AVERROR(ENOMEM);
229 
230  avio_skip(pb, 5);
231  st->codecpar->width = avio_rl16(pb)<<3;
232  st->codecpar->height = avio_rl16(pb);
233  fontheight = avio_r8(pb);
234  st->codecpar->height *= fontheight;
235  flags = avio_r8(pb);
236 
237  st->codecpar->extradata_size = 2;
238  if ((flags & BINTEXT_PALETTE))
239  st->codecpar->extradata_size += 48;
240  if ((flags & BINTEXT_FONT))
241  st->codecpar->extradata_size += fontheight * (flags & 0x10 ? 512 : 256);
243 
245  return AVERROR(ENOMEM);
246  st->codecpar->extradata[0] = fontheight;
247  st->codecpar->extradata[1] = flags;
248  if (avio_read(pb, st->codecpar->extradata + 2, st->codecpar->extradata_size - 2) < 0)
249  return AVERROR(EIO);
250 
251  if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
252  bin->fsize = avio_size(pb) - 9 - st->codecpar->extradata_size;
253  ff_sauce_read(s, &bin->fsize, NULL, 0);
254  avio_seek(pb, 9 + st->codecpar->extradata_size, SEEK_SET);
255  }
256 
257  return 0;
258 }
259 #endif /* CONFIG_XBIN_DEMUXER */
260 
261 #if CONFIG_ADF_DEMUXER
262 static int adf_read_header(AVFormatContext *s)
263 {
264  BinDemuxContext *bin = s->priv_data;
265  AVIOContext *pb = s->pb;
266  AVStream *st;
267 
268  if (avio_r8(pb) != 1)
269  return AVERROR_INVALIDDATA;
270 
271  st = init_stream(s);
272  if (!st)
273  return AVERROR(ENOMEM);
275 
276  if (ff_alloc_extradata(st->codecpar, 2 + 48 + 4096))
277  return AVERROR(ENOMEM);
278  st->codecpar->extradata[0] = 16;
280 
281  if (avio_read(pb, st->codecpar->extradata + 2, 24) < 0)
282  return AVERROR(EIO);
283  avio_skip(pb, 144);
284  if (avio_read(pb, st->codecpar->extradata + 2 + 24, 24) < 0)
285  return AVERROR(EIO);
286  if (avio_read(pb, st->codecpar->extradata + 2 + 48, 4096) < 0)
287  return AVERROR(EIO);
288 
289  if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
290  int got_width = 0;
291  bin->fsize = avio_size(pb) - 1 - 192 - 4096;
292  st->codecpar->width = 80<<3;
293  ff_sauce_read(s, &bin->fsize, &got_width, 0);
294  if (st->codecpar->width < 8)
295  return AVERROR_INVALIDDATA;
296  if (!bin->width)
297  calculate_height(st->codecpar, bin->fsize);
298  avio_seek(pb, 1 + 192 + 4096, SEEK_SET);
299  }
300  return 0;
301 }
302 #endif /* CONFIG_ADF_DEMUXER */
303 
304 #if CONFIG_IDF_DEMUXER
305 static const uint8_t idf_magic[] = {
306  0x04, 0x31, 0x2e, 0x34, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x15, 0x00
307 };
308 
309 static int idf_probe(const AVProbeData *p)
310 {
311  if (p->buf_size < sizeof(idf_magic))
312  return 0;
313  if (!memcmp(p->buf, idf_magic, sizeof(idf_magic)))
314  return AVPROBE_SCORE_MAX;
315  return 0;
316 }
317 
318 static int idf_read_header(AVFormatContext *s)
319 {
320  BinDemuxContext *bin = s->priv_data;
321  AVIOContext *pb = s->pb;
322  AVStream *st;
323  int got_width = 0;
324 
325  if (!(pb->seekable & AVIO_SEEKABLE_NORMAL))
326  return AVERROR(EIO);
327 
328  st = init_stream(s);
329  if (!st)
330  return AVERROR(ENOMEM);
332 
333  if (ff_alloc_extradata(st->codecpar, 2 + 48 + 4096))
334  return AVERROR(ENOMEM);
335  st->codecpar->extradata[0] = 16;
337 
338  avio_seek(pb, avio_size(pb) - 4096 - 48, SEEK_SET);
339 
340  if (avio_read(pb, st->codecpar->extradata + 2 + 48, 4096) < 0)
341  return AVERROR(EIO);
342  if (avio_read(pb, st->codecpar->extradata + 2, 48) < 0)
343  return AVERROR(EIO);
344 
345  bin->fsize = avio_size(pb) - 12 - 4096 - 48;
346  ff_sauce_read(s, &bin->fsize, &got_width, 0);
347  if (st->codecpar->width < 8)
348  return AVERROR_INVALIDDATA;
349  if (!bin->width)
350  calculate_height(st->codecpar, bin->fsize);
351  avio_seek(pb, 12, SEEK_SET);
352  return 0;
353 }
354 #endif /* CONFIG_IDF_DEMUXER */
355 
357  AVPacket *pkt)
358 {
359  BinDemuxContext *bin = s->priv_data;
360 
361  if (bin->fsize > 0) {
362  if (av_get_packet(s->pb, pkt, bin->fsize) < 0)
363  return AVERROR(EIO);
364  bin->fsize = -1; /* done */
365  } else if (!bin->fsize) {
366  if (avio_feof(s->pb))
367  return AVERROR(EIO);
368  if (av_get_packet(s->pb, pkt, bin->chars_per_frame) < 0)
369  return AVERROR(EIO);
370  } else {
371  return AVERROR(EIO);
372  }
373 
375  return 0;
376 }
377 
378 #define OFFSET(x) offsetof(BinDemuxContext, x)
379 static const AVOption options[] = {
380  { "linespeed", "set simulated line speed (bytes per second)", OFFSET(chars_per_frame), AV_OPT_TYPE_INT, {.i64 = 6000}, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM},
381  { "video_size", "set video size, such as 640x480 or hd720.", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, AV_OPT_FLAG_DECODING_PARAM },
382  { "framerate", "set framerate (frames per second)", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
383  { NULL },
384 };
385 
386 #define CLASS(name) \
387 (const AVClass[1]){{ \
388  .class_name = name, \
389  .item_name = av_default_item_name, \
390  .option = options, \
391  .version = LIBAVUTIL_VERSION_INT, \
392 }}
393 
394 #if CONFIG_BINTEXT_DEMUXER
396  .name = "bin",
397  .long_name = NULL_IF_CONFIG_SMALL("Binary text"),
398  .priv_data_size = sizeof(BinDemuxContext),
399  .read_probe = bin_probe,
400  .read_header = bintext_read_header,
402  .priv_class = CLASS("Binary text demuxer"),
403 };
404 #endif
405 
406 #if CONFIG_XBIN_DEMUXER
408  .name = "xbin",
409  .long_name = NULL_IF_CONFIG_SMALL("eXtended BINary text (XBIN)"),
410  .priv_data_size = sizeof(BinDemuxContext),
411  .read_probe = xbin_probe,
412  .read_header = xbin_read_header,
414  .priv_class = CLASS("eXtended BINary text (XBIN) demuxer"),
415 };
416 #endif
417 
418 #if CONFIG_ADF_DEMUXER
420  .name = "adf",
421  .long_name = NULL_IF_CONFIG_SMALL("Artworx Data Format"),
422  .priv_data_size = sizeof(BinDemuxContext),
423  .read_header = adf_read_header,
425  .extensions = "adf",
426  .priv_class = CLASS("Artworx Data Format demuxer"),
427 };
428 #endif
429 
430 #if CONFIG_IDF_DEMUXER
432  .name = "idf",
433  .long_name = NULL_IF_CONFIG_SMALL("iCE Draw File"),
434  .priv_data_size = sizeof(BinDemuxContext),
435  .read_probe = idf_probe,
436  .read_header = idf_read_header,
438  .extensions = "idf",
439  .priv_class = CLASS("iCE Draw File demuxer"),
440 };
441 #endif
AVCodecParameters::extradata
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: avcodec.h:3971
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
opt.h
avformat_new_stream
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4480
AVCodecParameters::codec_type
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:3953
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: avcodec.h:3949
OFFSET
#define OFFSET(x)
Definition: bintext.c:378
MKTAG
#define MKTAG(a, b, c, d)
Definition: common.h:366
AV_OPT_TYPE_VIDEO_RATE
@ AV_OPT_TYPE_VIDEO_RATE
offset must point to AVRational
Definition: opt.h:236
AVOption
AVOption.
Definition: opt.h:246
AVCodecParameters::codec_tag
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: avcodec.h:3961
AVProbeData::buf_size
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:449
avio_size
int64_t avio_size(AVIOContext *s)
Get the filesize.
Definition: aviobuf.c:336
AV_PKT_FLAG_KEY
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1509
AVPROBE_SCORE_MAX
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:458
framerate
int framerate
Definition: h264_levels.c:65
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
BinDemuxContext::chars_per_frame
int chars_per_frame
characters to send decoder per frame; set by private options as characters per second,...
Definition: bintext.c:43
ff_adf_demuxer
AVInputFormat ff_adf_demuxer
avio_rl16
unsigned int avio_rl16(AVIOContext *s)
Definition: aviobuf.c:753
AVRational::num
int num
Numerator.
Definition: rational.h:59
buf
void * buf
Definition: avisynth_c.h:766
AVInputFormat
Definition: avformat.h:640
width
#define width
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:645
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:448
AVCodecParameters::width
int width
Video only.
Definition: avcodec.h:4023
av_q2d
static double av_q2d(AVRational a)
Convert an AVRational to a double.
Definition: rational.h:104
AVProbeData::filename
const char * filename
Definition: avformat.h:447
av_match_ext
int av_match_ext(const char *filename, const char *extensions)
Return a positive value if the given filename has one of the given extensions, 0 otherwise.
Definition: format.c:38
AV_RL16
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
Definition: bytestream.h:90
fsize
static int64_t fsize(FILE *f)
Definition: audiomatch.c:28
BinDemuxContext::width
int width
Definition: bintext.c:46
AVFormatContext
Format I/O context.
Definition: avformat.h:1342
internal.h
AVStream::codecpar
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1017
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:530
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
AVStream::time_base
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition: avformat.h:899
NULL
#define NULL
Definition: coverity.c:32
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
BinDemuxContext::framerate
AVRational framerate
frames per second (private option)
Definition: bintext.c:47
AV_OPT_TYPE_IMAGE_SIZE
@ AV_OPT_TYPE_IMAGE_SIZE
offset must point to two consecutive integers
Definition: opt.h:233
CLASS
#define CLASS(name)
Definition: bintext.c:386
AVFormatContext::pb
AVIOContext * pb
I/O context.
Definition: avformat.h:1384
parseutils.h
ff_xbin_demuxer
AVInputFormat ff_xbin_demuxer
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:446
BinDemuxContext::fsize
uint64_t fsize
file size less metadata buffer
Definition: bintext.c:48
BINTEXT_PALETTE
#define BINTEXT_PALETTE
Definition: bintext.h:34
AVPROBE_SCORE_EXTENSION
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition: avformat.h:456
AVCodecParameters::extradata_size
int extradata_size
Size of the extradata content in bytes.
Definition: avcodec.h:3975
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:188
AV_CODEC_ID_IDF
@ AV_CODEC_ID_IDF
Definition: avcodec.h:693
AVIOContext::seekable
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:260
avpriv_set_pts_info
void avpriv_set_pts_info(AVStream *s, 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:4910
ff_sauce_read
int ff_sauce_read(AVFormatContext *avctx, uint64_t *fsize, int *got_width, int get_height)
Definition: sauce.c:32
AV_CODEC_ID_BINTEXT
@ AV_CODEC_ID_BINTEXT
Definition: avcodec.h:691
avio_r8
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:638
height
#define height
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1483
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
read_packet
static int read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: bintext.c:356
AVCodecParameters::height
int height
Definition: avcodec.h:4024
bintext.h
AV_OPT_FLAG_DECODING_PARAM
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:277
options
static const AVOption options[]
Definition: bintext.c:379
uint8_t
uint8_t
Definition: audio_convert.c:194
len
int len
Definition: vorbis_enc_data.h:452
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:313
init_stream
static AVStream * init_stream(AVFormatContext *s)
Definition: bintext.c:51
AVStream
Stream structure.
Definition: avformat.h:870
avio_seek
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:246
avformat.h
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:88
BINTEXT_FONT
#define BINTEXT_FONT
Definition: bintext.h:35
pkt
static AVPacket pkt
Definition: demuxing_decoding.c:54
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
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
avio_read
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:647
ff_bintext_demuxer
AVInputFormat ff_bintext_demuxer
avio_skip
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:331
AV_CODEC_ID_XBIN
@ AV_CODEC_ID_XBIN
Definition: avcodec.h:692
BinDemuxContext
Definition: bintext.c:41
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVCodecParameters::codec_id
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3957
AVPacket
This structure stores compressed data.
Definition: avcodec.h:1454
sauce.h
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
ff_idf_demuxer
AVInputFormat ff_idf_demuxer
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
ff_alloc_extradata
int ff_alloc_extradata(AVCodecParameters *par, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0.
Definition: utils.c:3309
avio_feof
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition: aviobuf.c:358