#include "avformat.h"#include "internal.h"Go to the source code of this file.
| Data Structures | |
| struct | RCVContext | 
| Functions | |
| static int | vc1test_write_header (AVFormatContext *s) | 
| static int | vc1test_write_packet (AVFormatContext *s, AVPacket *pkt) | 
| static int | vc1test_write_trailer (AVFormatContext *s) | 
| Variables | |
| AVOutputFormat | ff_vc1t_muxer | 
| static int vc1test_write_header | ( | AVFormatContext * | s | ) |  [static] | 
Definition at line 28 of file vc1testenc.c.
| static int vc1test_write_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) |  [static] | 
Definition at line 56 of file vc1testenc.c.
| static int vc1test_write_trailer | ( | AVFormatContext * | s | ) |  [static] | 
Definition at line 72 of file vc1testenc.c.
Initial value:
 {
    .name              = "rcv",
    .long_name         = NULL_IF_CONFIG_SMALL("VC-1 test bitstream"),
    .mime_type         = "",
    .extensions        = "rcv",
    .priv_data_size    = sizeof(RCVContext),
    .audio_codec       = CODEC_ID_NONE,
    .video_codec       = CODEC_ID_WMV3,
    .write_header      = vc1test_write_header,
    .write_packet      = vc1test_write_packet,
    .write_trailer     = vc1test_write_trailer,
}
Definition at line 85 of file vc1testenc.c.
 1.5.8
 1.5.8