#include "libavutil/intreadwrite.h"#include "swf.h"Go to the source code of this file.
Functions | |
| static int | get_swf_tag (AVIOContext *pb, int *len_ptr) |
| static int | swf_probe (AVProbeData *p) |
| static int | swf_read_header (AVFormatContext *s) |
| static int | swf_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
| static const AVCodecTag | swf_audio_codec_tags [] |
| AVInputFormat | ff_swf_demuxer |
| static int get_swf_tag | ( | AVIOContext * | pb, | |
| int * | len_ptr | |||
| ) | [static] |
| static int swf_probe | ( | AVProbeData * | p | ) | [static] |
| static int swf_read_header | ( | AVFormatContext * | s | ) | [static] |
| static int swf_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
Initial value:
{
.name = "swf",
.long_name = NULL_IF_CONFIG_SMALL("SWF (ShockWave Flash)"),
.priv_data_size = sizeof(SWFContext),
.read_probe = swf_probe,
.read_header = swf_read_header,
.read_packet = swf_read_packet,
}
const AVCodecTag swf_audio_codec_tags[] [static] |
Initial value:
{
{ AV_CODEC_ID_PCM_S16LE, 0x00 },
{ AV_CODEC_ID_ADPCM_SWF, 0x01 },
{ AV_CODEC_ID_MP3, 0x02 },
{ AV_CODEC_ID_PCM_S16LE, 0x03 },
{ AV_CODEC_ID_NONE, 0 },
}
1.5.8