Defines | Variables

libavcodec/mpegaudiodec_float.c File Reference

#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 Documentation

#define CONFIG_FLOAT   1

Definition at line 22 of file mpegaudiodec_float.c.


Variable Documentation

Initial value:
{
    "mp1float",
    AVMEDIA_TYPE_AUDIO,
    CODEC_ID_MP1,
    sizeof(MPADecodeContext),
    decode_init,
    NULL,
    .close = NULL,
    decode_frame,
    CODEC_CAP_PARSE_ONLY,
    .flush= flush,
    .long_name= NULL_IF_CONFIG_SMALL("MP1 (MPEG audio layer 1)"),
}

Definition at line 26 of file mpegaudiodec_float.c.

Initial value:
{
    "mp2float",
    AVMEDIA_TYPE_AUDIO,
    CODEC_ID_MP2,
    sizeof(MPADecodeContext),
    decode_init,
    NULL,
    .close = NULL,
    decode_frame,
    CODEC_CAP_PARSE_ONLY,
    .flush= flush,
    .long_name= NULL_IF_CONFIG_SMALL("MP2 (MPEG audio layer 2)"),
}

Definition at line 42 of file mpegaudiodec_float.c.

Initial value:
{
    "mp3adufloat",
    AVMEDIA_TYPE_AUDIO,
    CODEC_ID_MP3ADU,
    sizeof(MPADecodeContext),
    decode_init,
    NULL,
    .close = NULL,
    decode_frame_adu,
    CODEC_CAP_PARSE_ONLY,
    .flush= flush,
    .long_name= NULL_IF_CONFIG_SMALL("ADU (Application Data Unit) MP3 (MPEG audio layer 3)"),
}

Definition at line 74 of file mpegaudiodec_float.c.

Initial value:
{
    "mp3float",
    AVMEDIA_TYPE_AUDIO,
    CODEC_ID_MP3,
    sizeof(MPADecodeContext),
    decode_init,
    NULL,
    .close = NULL,
    decode_frame,
    CODEC_CAP_PARSE_ONLY,
    .flush= flush,
    .long_name= NULL_IF_CONFIG_SMALL("MP3 (MPEG audio layer 3)"),
}

Definition at line 58 of file mpegaudiodec_float.c.

Initial value:
{
    "mp3on4float",
    AVMEDIA_TYPE_AUDIO,
    CODEC_ID_MP3ON4,
    sizeof(MP3On4DecodeContext),
    decode_init_mp3on4,
    NULL,
    decode_close_mp3on4,
    decode_frame_mp3on4,
    .flush= flush,
    .long_name= NULL_IF_CONFIG_SMALL("MP3onMP4"),
}

Definition at line 90 of file mpegaudiodec_float.c.