#include "libavcodec/avcodec.h"#include "libavcodec/a64enc.h"#include "libavcodec/bytestream.h"#include "avformat.h"Go to the source code of this file.
Data Structures | |
| struct | A64MuxerContext |
Functions | |
| static int | a64_write_header (struct AVFormatContext *s) |
| static int | a64_write_packet (struct AVFormatContext *s, AVPacket *pkt) |
| static int | a64_write_trailer (struct AVFormatContext *s) |
Variables | |
| AVOutputFormat | ff_a64_muxer |
| static int a64_write_header | ( | struct AVFormatContext * | s | ) | [static] |
| static int a64_write_packet | ( | struct AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
| static int a64_write_trailer | ( | struct AVFormatContext * | s | ) | [static] |
Initial value:
{
.name = "a64",
.long_name = NULL_IF_CONFIG_SMALL("a64 - video for Commodore 64"),
.extensions = "a64, A64",
.priv_data_size = sizeof (A64Context),
.video_codec = AV_CODEC_ID_A64_MULTI,
.write_header = a64_write_header,
.write_packet = a64_write_packet,
.write_trailer = a64_write_trailer,
}
1.5.8