#include "avformat.h"
#include "internal.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"
Go to the source code of this file.
Data Structures | |
struct | G729DemuxerContext |
Functions | |
static int | g729_read_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | g729_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
static const AVOption | g729_options [] |
static const AVClass | g729_demuxer_class |
AVInputFormat | ff_g729_demuxer |
static int g729_read_header | ( | AVFormatContext * | s, | |
AVFormatParameters * | ap | |||
) | [static] |
static int g729_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Initial value:
{ .name = "g729", .long_name = NULL_IF_CONFIG_SMALL("G.729 raw format demuxer"), .priv_data_size = sizeof(G729DemuxerContext), .read_header = g729_read_header, .read_packet = g729_read_packet, .flags = AVFMT_GENERIC_INDEX, .extensions = "g729", .priv_class = &g729_demuxer_class, }
const AVClass g729_demuxer_class [static] |
Initial value:
{ .class_name = "g729 demuxer", .item_name = av_default_item_name, .option = g729_options, .version = LIBAVUTIL_VERSION_INT, }
const AVOption g729_options[] [static] |
Initial value:
{ { "bit_rate", "", 0x42, AV_OPT_TYPE_INT, {.dbl = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM }, { NULL }, }