VC1 test bitstream file demuxer by Konstantin Shishkov Format specified in SMPTE standard 421 Annex L. More...
#include "libavutil/intreadwrite.h"#include "avformat.h"#include "internal.h"Go to the source code of this file.
Defines | |
| #define | VC1_EXTRADATA_SIZE 4 |
Functions | |
| static int | vc1t_probe (AVProbeData *p) |
| static int | vc1t_read_header (AVFormatContext *s, AVFormatParameters *ap) |
| static int | vc1t_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
| AVInputFormat | ff_vc1t_demuxer |
VC1 test bitstream file demuxer by Konstantin Shishkov Format specified in SMPTE standard 421 Annex L.
Definition in file vc1test.c.
| #define VC1_EXTRADATA_SIZE 4 |
Definition at line 33 of file vc1test.c.
Referenced by vc1t_read_header().
| static int vc1t_probe | ( | AVProbeData * | p | ) | [static] |
| static int vc1t_read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) | [static] |
| static int vc1t_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
{
.name = "vc1test",
.long_name = NULL_IF_CONFIG_SMALL("VC-1 test bitstream format"),
.read_probe = vc1t_probe,
.read_header = vc1t_read_header,
.read_packet = vc1t_read_packet,
.flags = AVFMT_GENERIC_INDEX,
}