#include "mpegaudiodec.c"
Go to the source code of this file.
Defines | |
#define | CONFIG_FLOAT 1 |
Variables | |
AVCodec | ff_mp1float_decoder |
AVCodec | ff_mp2float_decoder |
AVCodec | ff_mp3float_decoder |
AVCodec | ff_mp3adufloat_decoder |
AVCodec | ff_mp3on4float_decoder |
#define CONFIG_FLOAT 1 |
Definition at line 22 of file mpegaudiodec_float.c.
{ .name = "mp1float", .type = AVMEDIA_TYPE_AUDIO, .id = CODEC_ID_MP1, .priv_data_size = sizeof(MPADecodeContext), .init = decode_init, .decode = decode_frame, .capabilities = CODEC_CAP_PARSE_ONLY | CODEC_CAP_DR1, .flush = flush, .long_name = NULL_IF_CONFIG_SMALL("MP1 (MPEG audio layer 1)"), }
Definition at line 26 of file mpegaudiodec_float.c.
{ .name = "mp2float", .type = AVMEDIA_TYPE_AUDIO, .id = CODEC_ID_MP2, .priv_data_size = sizeof(MPADecodeContext), .init = decode_init, .decode = decode_frame, .capabilities = CODEC_CAP_PARSE_ONLY | CODEC_CAP_DR1, .flush = flush, .long_name = NULL_IF_CONFIG_SMALL("MP2 (MPEG audio layer 2)"), }
Definition at line 43 of file mpegaudiodec_float.c.
{ .name = "mp3adufloat", .type = AVMEDIA_TYPE_AUDIO, .id = CODEC_ID_MP3ADU, .priv_data_size = sizeof(MPADecodeContext), .init = decode_init, .decode = decode_frame_adu, .capabilities = CODEC_CAP_PARSE_ONLY | CODEC_CAP_DR1, .flush = flush, .long_name = NULL_IF_CONFIG_SMALL("ADU (Application Data Unit) MP3 (MPEG audio layer 3)"), }
Definition at line 77 of file mpegaudiodec_float.c.
{ .name = "mp3float", .type = AVMEDIA_TYPE_AUDIO, .id = CODEC_ID_MP3, .priv_data_size = sizeof(MPADecodeContext), .init = decode_init, .decode = decode_frame, .capabilities = CODEC_CAP_PARSE_ONLY | CODEC_CAP_DR1, .flush = flush, .long_name = NULL_IF_CONFIG_SMALL("MP3 (MPEG audio layer 3)"), }
Definition at line 60 of file mpegaudiodec_float.c.
{ .name = "mp3on4float", .type = AVMEDIA_TYPE_AUDIO, .id = CODEC_ID_MP3ON4, .priv_data_size = sizeof(MP3On4DecodeContext), .init = decode_init_mp3on4, .close = decode_close_mp3on4, .decode = decode_frame_mp3on4, .capabilities = CODEC_CAP_DR1, .flush = flush_mp3on4, .long_name = NULL_IF_CONFIG_SMALL("MP3onMP4"), }
Definition at line 94 of file mpegaudiodec_float.c.