FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
swfdec.c
Go to the documentation of this file.
1 /*
2  * Flash Compatible Streaming Format demuxer
3  * Copyright (c) 2000 Fabrice Bellard
4  * Copyright (c) 2003 Tinic Uro
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include "libavutil/avassert.h"
25 #include "libavutil/imgutils.h"
26 #include "libavutil/intreadwrite.h"
27 #include "libavcodec/get_bits.h"
28 #include "swf.h"
29 
30 static const AVCodecTag swf_audio_codec_tags[] = {
31  { AV_CODEC_ID_PCM_S16LE, 0x00 },
32  { AV_CODEC_ID_ADPCM_SWF, 0x01 },
33  { AV_CODEC_ID_MP3, 0x02 },
34  { AV_CODEC_ID_PCM_S16LE, 0x03 },
35 // { AV_CODEC_ID_NELLYMOSER, 0x06 },
36  { AV_CODEC_ID_NONE, 0 },
37 };
38 
39 static int get_swf_tag(AVIOContext *pb, int *len_ptr)
40 {
41  int tag, len;
42 
43  if (avio_feof(pb))
44  return AVERROR_EOF;
45 
46  tag = avio_rl16(pb);
47  len = tag & 0x3f;
48  tag = tag >> 6;
49  if (len == 0x3f) {
50  len = avio_rl32(pb);
51  }
52  *len_ptr = len;
53  return tag;
54 }
55 
56 
57 static int swf_probe(AVProbeData *p)
58 {
59  GetBitContext gb;
60  int len, xmin, xmax, ymin, ymax;
61 
62  if(p->buf_size < 15)
63  return 0;
64 
65  /* check file header */
66  if ( AV_RB24(p->buf) != AV_RB24("CWS")
67  && AV_RB24(p->buf) != AV_RB24("FWS"))
68  return 0;
69 
70  init_get_bits8(&gb, p->buf + 3, p->buf_size - 3);
71 
72  skip_bits(&gb, 40);
73  len = get_bits(&gb, 5);
74  if (!len)
75  return 0;
76  xmin = get_bits_long(&gb, len);
77  xmax = get_bits_long(&gb, len);
78  ymin = get_bits_long(&gb, len);
79  ymax = get_bits_long(&gb, len);
80  if (xmin || ymin || !xmax || !ymax)
81  return 0;
82 
83  if (p->buf[3] >= 20 || xmax < 16 || ymax < 16)
84  return AVPROBE_SCORE_MAX / 4;
85 
86  return AVPROBE_SCORE_MAX;
87 }
88 
89 #if CONFIG_ZLIB
90 static int zlib_refill(void *opaque, uint8_t *buf, int buf_size)
91 {
92  AVFormatContext *s = opaque;
93  SWFContext *swf = s->priv_data;
94  z_stream *z = &swf->zstream;
95  int ret;
96 
97 retry:
98  if (!z->avail_in) {
99  int n = avio_read(s->pb, swf->zbuf_in, ZBUF_SIZE);
100  if (n < 0)
101  return n;
102  z->next_in = swf->zbuf_in;
103  z->avail_in = n;
104  }
105 
106  z->next_out = buf;
107  z->avail_out = buf_size;
108 
109  ret = inflate(z, Z_NO_FLUSH);
110  if (ret < 0)
111  return AVERROR(EINVAL);
112  if (ret == Z_STREAM_END)
113  return AVERROR_EOF;
114 
115  if (buf_size - z->avail_out == 0)
116  goto retry;
117 
118  return buf_size - z->avail_out;
119 }
120 #endif
121 
123 {
124  SWFContext *swf = s->priv_data;
125  AVIOContext *pb = s->pb;
126  int nbits, len, tag;
127 
128  tag = avio_rb32(pb) & 0xffffff00;
129  avio_rl32(pb);
130 
131  if (tag == MKBETAG('C', 'W', 'S', 0)) {
132  av_log(s, AV_LOG_INFO, "SWF compressed file detected\n");
133 #if CONFIG_ZLIB
134  swf->zbuf_in = av_malloc(ZBUF_SIZE);
135  swf->zbuf_out = av_malloc(ZBUF_SIZE);
136  swf->zpb = avio_alloc_context(swf->zbuf_out, ZBUF_SIZE, 0, s,
137  zlib_refill, NULL, NULL);
138  if (!swf->zbuf_in || !swf->zbuf_out || !swf->zpb)
139  return AVERROR(ENOMEM);
140  swf->zpb->seekable = 0;
141  if (inflateInit(&swf->zstream) != Z_OK) {
142  av_log(s, AV_LOG_ERROR, "Unable to init zlib context\n");
143  return AVERROR(EINVAL);
144  }
145  pb = swf->zpb;
146 #else
147  av_log(s, AV_LOG_ERROR, "zlib support is required to read SWF compressed files\n");
148  return AVERROR(EIO);
149 #endif
150  } else if (tag != MKBETAG('F', 'W', 'S', 0))
151  return AVERROR(EIO);
152  /* skip rectangle size */
153  nbits = avio_r8(pb) >> 3;
154  len = (4 * nbits - 3 + 7) / 8;
155  avio_skip(pb, len);
156  swf->frame_rate = avio_rl16(pb); /* 8.8 fixed */
157  avio_rl16(pb); /* frame count */
158 
159  swf->samples_per_frame = 0;
161  return 0;
162 }
163 
164 static AVStream *create_new_audio_stream(AVFormatContext *s, int id, int info)
165 {
166  int sample_rate_code, sample_size_code;
167  AVStream *ast = avformat_new_stream(s, NULL);
168  if (!ast)
169  return NULL;
170  ast->id = id;
171  if (info & 1) {
172  ast->codec->channels = 2;
174  } else {
175  ast->codec->channels = 1;
177  }
179  ast->codec->codec_id = ff_codec_get_id(swf_audio_codec_tags, info>>4 & 15);
181  sample_rate_code = info>>2 & 3;
182  sample_size_code = info>>1 & 1;
183  if (!sample_size_code && ast->codec->codec_id == AV_CODEC_ID_PCM_S16LE)
185  ast->codec->sample_rate = 44100 >> (3 - sample_rate_code);
186  avpriv_set_pts_info(ast, 64, 1, ast->codec->sample_rate);
187  return ast;
188 }
189 
191 {
192  SWFContext *swf = s->priv_data;
193  AVIOContext *pb = s->pb;
194  AVStream *vst = NULL, *ast = NULL, *st = 0;
195  int tag, len, i, frame, v, res;
196 
197 #if CONFIG_ZLIB
198  if (swf->zpb)
199  pb = swf->zpb;
200 #endif
201 
202  for(;;) {
203  uint64_t pos = avio_tell(pb);
204  tag = get_swf_tag(pb, &len);
205  if (tag < 0)
206  return tag;
207  if (len < 0) {
208  av_log(s, AV_LOG_ERROR, "invalid tag length: %d\n", len);
209  return AVERROR_INVALIDDATA;
210  }
211  if (tag == TAG_VIDEOSTREAM) {
212  int ch_id = avio_rl16(pb);
213  len -= 2;
214 
215  for (i=0; i<s->nb_streams; i++) {
216  st = s->streams[i];
217  if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && st->id == ch_id)
218  goto skip;
219  }
220 
221  avio_rl16(pb);
222  avio_rl16(pb);
223  avio_rl16(pb);
224  avio_r8(pb);
225  /* Check for FLV1 */
226  vst = avformat_new_stream(s, NULL);
227  if (!vst)
228  return AVERROR(ENOMEM);
229  vst->id = ch_id;
232  avpriv_set_pts_info(vst, 16, 256, swf->frame_rate);
233  len -= 8;
234  } else if (tag == TAG_STREAMHEAD || tag == TAG_STREAMHEAD2) {
235  /* streaming found */
236 
237  for (i=0; i<s->nb_streams; i++) {
238  st = s->streams[i];
239  if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->id == -1)
240  goto skip;
241  }
242 
243  avio_r8(pb);
244  v = avio_r8(pb);
245  swf->samples_per_frame = avio_rl16(pb);
246  ast = create_new_audio_stream(s, -1, v); /* -1 to avoid clash with video stream ch_id */
247  if (!ast)
248  return AVERROR(ENOMEM);
249  len -= 4;
250  } else if (tag == TAG_DEFINESOUND) {
251  /* audio stream */
252  int ch_id = avio_rl16(pb);
253 
254  for (i=0; i<s->nb_streams; i++) {
255  st = s->streams[i];
256  if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->id == ch_id)
257  goto skip;
258  }
259 
260  // FIXME: The entire audio stream is stored in a single chunk/tag. Normally,
261  // these are smaller audio streams in DEFINESOUND tags, but it's technically
262  // possible they could be huge. Break it up into multiple packets if it's big.
263  v = avio_r8(pb);
264  ast = create_new_audio_stream(s, ch_id, v);
265  if (!ast)
266  return AVERROR(ENOMEM);
267  ast->duration = avio_rl32(pb); // number of samples
268  if (((v>>4) & 15) == 2) { // MP3 sound data record
269  ast->skip_samples = avio_rl16(pb);
270  len -= 2;
271  }
272  len -= 7;
273  if ((res = av_get_packet(pb, pkt, len)) < 0)
274  return res;
275  pkt->pos = pos;
276  pkt->stream_index = ast->index;
277  return pkt->size;
278  } else if (tag == TAG_VIDEOFRAME) {
279  int ch_id = avio_rl16(pb);
280  len -= 2;
281  for(i=0; i<s->nb_streams; i++) {
282  st = s->streams[i];
283  if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && st->id == ch_id) {
284  frame = avio_rl16(pb);
285  len -= 2;
286  if (len <= 0)
287  goto skip;
288  if ((res = av_get_packet(pb, pkt, len)) < 0)
289  return res;
290  pkt->pos = pos;
291  pkt->pts = frame;
292  pkt->stream_index = st->index;
293  return pkt->size;
294  }
295  }
296  } else if (tag == TAG_DEFINEBITSLOSSLESS || tag == TAG_DEFINEBITSLOSSLESS2) {
297 #if CONFIG_ZLIB
298  long out_len;
299  uint8_t *buf = NULL, *zbuf = NULL, *pal;
300  uint32_t colormap[AVPALETTE_COUNT] = {0};
301  const int alpha_bmp = tag == TAG_DEFINEBITSLOSSLESS2;
302  const int colormapbpp = 3 + alpha_bmp;
303  int linesize, colormapsize = 0;
304 
305  const int ch_id = avio_rl16(pb);
306  const int bmp_fmt = avio_r8(pb);
307  const int width = avio_rl16(pb);
308  const int height = avio_rl16(pb);
309  int pix_fmt;
310 
311  len -= 2+1+2+2;
312 
313  switch (bmp_fmt) {
314  case 3: // PAL-8
315  linesize = width;
316  colormapsize = avio_r8(pb) + 1;
317  len--;
318  break;
319  case 4: // RGB15
320  linesize = width * 2;
321  break;
322  case 5: // RGB24 (0RGB)
323  linesize = width * 4;
324  break;
325  default:
326  av_log(s, AV_LOG_ERROR, "invalid bitmap format %d, skipped\n", bmp_fmt);
327  goto bitmap_end_skip;
328  }
329 
330  linesize = FFALIGN(linesize, 4);
331 
332  if (av_image_check_size(width, height, 0, s) < 0 ||
333  linesize >= INT_MAX / height ||
334  linesize * height >= INT_MAX - colormapsize * colormapbpp) {
335  av_log(s, AV_LOG_ERROR, "invalid frame size %dx%d\n", width, height);
336  goto bitmap_end_skip;
337  }
338 
339  out_len = colormapsize * colormapbpp + linesize * height;
340 
341  av_dlog(s, "bitmap: ch=%d fmt=%d %dx%d (linesize=%d) len=%d->%ld pal=%d\n",
342  ch_id, bmp_fmt, width, height, linesize, len, out_len, colormapsize);
343 
344  zbuf = av_malloc(len);
345  buf = av_malloc(out_len);
346  if (!zbuf || !buf) {
347  res = AVERROR(ENOMEM);
348  goto bitmap_end;
349  }
350 
351  len = avio_read(pb, zbuf, len);
352  if (len < 0 || (res = uncompress(buf, &out_len, zbuf, len)) != Z_OK) {
353  av_log(s, AV_LOG_WARNING, "Failed to uncompress one bitmap\n");
354  goto bitmap_end_skip;
355  }
356 
357  for (i = 0; i < s->nb_streams; i++) {
358  st = s->streams[i];
359  if (st->codec->codec_id == AV_CODEC_ID_RAWVIDEO && st->id == -3)
360  break;
361  }
362  if (i == s->nb_streams) {
363  vst = avformat_new_stream(s, NULL);
364  if (!vst) {
365  res = AVERROR(ENOMEM);
366  goto bitmap_end;
367  }
368  vst->id = -3; /* -3 to avoid clash with video stream and audio stream */
371  avpriv_set_pts_info(vst, 64, 256, swf->frame_rate);
372  st = vst;
373  }
374 
375  if ((res = av_new_packet(pkt, out_len - colormapsize * colormapbpp)) < 0)
376  goto bitmap_end;
377  if (!st->codec->width && !st->codec->height) {
378  st->codec->width = width;
379  st->codec->height = height;
380  } else {
381  ff_add_param_change(pkt, 0, 0, 0, width, height);
382  }
383  pkt->pos = pos;
384  pkt->stream_index = st->index;
385 
386  switch (bmp_fmt) {
387  case 3:
388  pix_fmt = AV_PIX_FMT_PAL8;
389  for (i = 0; i < colormapsize; i++)
390  if (alpha_bmp) colormap[i] = buf[3]<<24 | AV_RB24(buf + 4*i);
391  else colormap[i] = 0xffU <<24 | AV_RB24(buf + 3*i);
393  if (!pal) {
394  res = AVERROR(ENOMEM);
395  goto bitmap_end;
396  }
397  memcpy(pal, colormap, AVPALETTE_SIZE);
398  break;
399  case 4:
400  pix_fmt = AV_PIX_FMT_RGB555;
401  break;
402  case 5:
403  pix_fmt = alpha_bmp ? AV_PIX_FMT_ARGB : AV_PIX_FMT_0RGB;
404  break;
405  default:
406  av_assert0(0);
407  }
408  if (st->codec->pix_fmt != AV_PIX_FMT_NONE && st->codec->pix_fmt != pix_fmt) {
409  av_log(s, AV_LOG_ERROR, "pixel format change unsupported\n");
410  res = AVERROR_PATCHWELCOME;
411  goto bitmap_end;
412  }
413  st->codec->pix_fmt = pix_fmt;
414 
415  if (linesize * height > pkt->size) {
416  res = AVERROR_INVALIDDATA;
417  goto bitmap_end;
418  }
419  memcpy(pkt->data, buf + colormapsize*colormapbpp, linesize * height);
420 
421  res = pkt->size;
422 
423 bitmap_end:
424  av_freep(&zbuf);
425  av_freep(&buf);
426  return res;
427 bitmap_end_skip:
428  av_freep(&zbuf);
429  av_freep(&buf);
430 #else
431  av_log(s, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
432 #endif
433  } else if (tag == TAG_STREAMBLOCK) {
434  for (i = 0; i < s->nb_streams; i++) {
435  st = s->streams[i];
436  if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->id == -1) {
437  if (st->codec->codec_id == AV_CODEC_ID_MP3) {
438  avio_skip(pb, 4);
439  len -= 4;
440  if (len <= 0)
441  goto skip;
442  if ((res = av_get_packet(pb, pkt, len)) < 0)
443  return res;
444  } else { // ADPCM, PCM
445  if (len <= 0)
446  goto skip;
447  if ((res = av_get_packet(pb, pkt, len)) < 0)
448  return res;
449  }
450  pkt->pos = pos;
451  pkt->stream_index = st->index;
452  return pkt->size;
453  }
454  }
455  } else if (tag == TAG_JPEG2) {
456  for (i=0; i<s->nb_streams; i++) {
457  st = s->streams[i];
458  if (st->codec->codec_id == AV_CODEC_ID_MJPEG && st->id == -2)
459  break;
460  }
461  if (i == s->nb_streams) {
462  vst = avformat_new_stream(s, NULL);
463  if (!vst)
464  return AVERROR(ENOMEM);
465  vst->id = -2; /* -2 to avoid clash with video stream and audio stream */
468  avpriv_set_pts_info(vst, 64, 256, swf->frame_rate);
469  st = vst;
470  }
471  avio_rl16(pb); /* BITMAP_ID */
472  len -= 2;
473  if (len < 4)
474  goto skip;
475  if ((res = av_new_packet(pkt, len)) < 0)
476  return res;
477  if (avio_read(pb, pkt->data, 4) != 4) {
478  av_free_packet(pkt);
479  return AVERROR_INVALIDDATA;
480  }
481  if (AV_RB32(pkt->data) == 0xffd8ffd9 ||
482  AV_RB32(pkt->data) == 0xffd9ffd8) {
483  /* old SWF files containing SOI/EOI as data start */
484  /* files created by swink have reversed tag */
485  pkt->size -= 4;
486  memset(pkt->data+pkt->size, 0, 4);
487  res = avio_read(pb, pkt->data, pkt->size);
488  } else {
489  res = avio_read(pb, pkt->data + 4, pkt->size - 4);
490  if (res >= 0)
491  res += 4;
492  }
493  if (res != pkt->size) {
494  if (res < 0) {
495  av_free_packet(pkt);
496  return res;
497  }
498  av_shrink_packet(pkt, res);
499  }
500 
501  pkt->pos = pos;
502  pkt->stream_index = st->index;
503  return pkt->size;
504  } else {
505  av_log(s, AV_LOG_DEBUG, "Unknown tag: %d\n", tag);
506  }
507  skip:
508  if(len<0)
509  av_log(s, AV_LOG_WARNING, "Cliping len %d\n", len);
510  len = FFMAX(0, len);
511  avio_skip(pb, len);
512  }
513 }
514 
515 #if CONFIG_ZLIB
516 static av_cold int swf_read_close(AVFormatContext *avctx)
517 {
518  SWFContext *s = avctx->priv_data;
519  inflateEnd(&s->zstream);
520  av_freep(&s->zbuf_in);
521  av_freep(&s->zbuf_out);
522  av_freep(&s->zpb);
523  return 0;
524 }
525 #endif
526 
528  .name = "swf",
529  .long_name = NULL_IF_CONFIG_SMALL("SWF (ShockWave Flash)"),
530  .priv_data_size = sizeof(SWFContext),
534 #if CONFIG_ZLIB
535  .read_close = swf_read_close,
536 #endif
537 };
const AVCodecTag ff_swf_codec_tags[]
Definition: swf.c:25
static int swf_probe(AVProbeData *p)
Definition: swfdec.c:57
#define NULL
Definition: coverity.c:32
float v
const char * s
Definition: avisynth_c.h:631
Bytestream IO Context.
Definition: avio.h:111
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
static enum AVPixelFormat pix_fmt
void av_free_packet(AVPacket *pkt)
Free a packet.
Definition: avpacket.c:280
static int get_swf_tag(AVIOContext *pb, int *len_ptr)
Definition: swfdec.c:39
enum AVCodecID id
Definition: mxfenc.c:99
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition: utils.c:2713
misc image utilities
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:260
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
int64_t pos
byte position in stream, -1 if unknown
Definition: avcodec.h:1187
void av_shrink_packet(AVPacket *pkt, int size)
Reduce packet size, correctly zeroing padding.
Definition: avpacket.c:103
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:4006
int size
Definition: avcodec.h:1163
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:276
static AVPacket pkt
#define AV_CH_LAYOUT_STEREO
int ctx_flags
Flags signalling stream properties.
Definition: avformat.h:1321
#define FFALIGN(x, a)
Definition: common.h:71
Format I/O context.
Definition: avformat.h:1272
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
int frame_rate
Definition: swf.h:131
uint8_t
#define av_cold
Definition: attributes.h:74
#define av_malloc(s)
#define AVFMTCTX_NOHEADER
signal that no header is present (streams are added dynamically)
Definition: avformat.h:1231
8 bit with AV_PIX_FMT_RGB32 palette
Definition: pixfmt.h:74
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:689
#define AVPALETTE_SIZE
Definition: pixfmt.h:33
enum AVStreamParseType need_parsing
Definition: avformat.h:1035
int id
Format-specific stream ID.
Definition: avformat.h:849
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:3672
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:85
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1340
static AVFrame * frame
uint8_t * data
Definition: avcodec.h:1162
uint32_t tag
Definition: movenc.c:1333
#define AVERROR_EOF
End of file.
Definition: error.h:55
bitstream reader API header.
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
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:241
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:365
Definition: swf.h:62
#define av_log(a,...)
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:537
#define U(x)
Definition: vp56_arith.h:37
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition: avpacket.c:83
AVIOContext * avio_alloc_context(unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
Allocate and initialize an AVIOContext for buffered I/O.
Definition: aviobuf.c:111
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
AVInputFormat ff_swf_demuxer
Definition: swfdec.c:527
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:658
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition: avcodec.h:421
int ff_add_param_change(AVPacket *pkt, int32_t channels, uint64_t channel_layout, int32_t sample_rate, int32_t width, int32_t height)
Add side data to a packet for changing parameters to the given values.
Definition: utils.c:4146
simple assert() macros that are a bit more flexible than ISO C assert().
#define FFMAX(a, b)
Definition: common.h:64
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
Definition: pixfmt.h:94
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2046
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:528
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:861
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:451
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:450
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1328
int samples_per_frame
Definition: swf.h:127
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:241
audio channel layout utility functions
static const AVCodecTag swf_audio_codec_tags[]
Definition: swfdec.c:30
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
ret
Definition: avfilter.c:974
int width
picture width / height.
Definition: avcodec.h:1414
int n
Definition: avisynth_c.h:547
static AVStream * create_new_audio_stream(AVFormatContext *s, int id, int info)
Definition: swfdec.c:164
static int swf_read_header(AVFormatContext *s)
Definition: swfdec.c:122
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:620
Stream structure.
Definition: avformat.h:842
#define av_dlog(pctx,...)
av_dlog macros
Definition: log.h:330
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
enum AVMediaType codec_type
Definition: avcodec.h:1249
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_RB24
Definition: bytestream.h:85
enum AVCodecID codec_id
Definition: avcodec.h:1258
int sample_rate
samples per second
Definition: avcodec.h:1985
AVIOContext * pb
I/O context.
Definition: avformat.h:1314
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:441
void * buf
Definition: avisynth_c.h:553
BYTE int const BYTE int int int height
Definition: avisynth_c.h:676
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:297
This structure contains the data a format has to probe a file.
Definition: avformat.h:448
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
Definition: get_bits.h:337
#define AVPALETTE_COUNT
Definition: pixfmt.h:34
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:460
static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: swfdec.c:190
full parsing and repack
Definition: avformat.h:774
unsigned int avio_rl16(AVIOContext *s)
Definition: aviobuf.c:642
#define AV_PIX_FMT_RGB555
Definition: pixfmt.h:352
#define MKBETAG(a, b, c, d)
Definition: common.h:316
int len
int channels
number of audio channels
Definition: avcodec.h:1986
void * priv_data
Format private data.
Definition: avformat.h:1300
#define av_freep(p)
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:628
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext.
Definition: aviobuf.c:300
uint8_t * av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type, int size)
Allocate new information of a packet.
Definition: avpacket.c:299
int stream_index
Definition: avcodec.h:1164
#define AV_CH_LAYOUT_MONO
packed RGB 8:8:8, 32bpp, XRGBXRGB... X=unused/undefined
Definition: pixfmt.h:264
This structure stores compressed data.
Definition: avcodec.h:1139
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1155
static int width