FFmpeg
|
#include <AudioToolbox/AudioToolbox.h>
#include "config.h"
#include "avcodec.h"
#include "ac3_parser.h"
#include "bytestream.h"
#include "internal.h"
#include "mpegaudiodecheader.h"
#include "libavutil/avassert.h"
#include "libavutil/opt.h"
#include "libavutil/log.h"
Go to the source code of this file.
Data Structures | |
struct | ATDecodeContext |
Macros | |
#define | kAudioFormatEnhancedAC3 'ec-3' |
#define | COPY_SAMPLES(type) |
#define | FFAT_DEC_CLASS(NAME) |
#define | FFAT_DEC(NAME, ID) |
Functions | |
static UInt32 | ffat_get_format_id (enum AVCodecID codec, int profile) |
static int | ffat_get_channel_id (AudioChannelLabel label) |
static int | ffat_compare_channel_descriptions (const void *a, const void *b) |
static AudioChannelLayout * | ffat_convert_layout (AudioChannelLayout *layout, UInt32 *size) |
static int | ffat_update_ctx (AVCodecContext *avctx) |
static void | put_descr (PutByteContext *pb, int tag, unsigned int size) |
static uint8_t * | ffat_get_magic_cookie (AVCodecContext *avctx, UInt32 *cookie_size) |
static av_cold int | ffat_usable_extradata (AVCodecContext *avctx) |
static int | ffat_set_extradata (AVCodecContext *avctx) |
static av_cold int | ffat_create_decoder (AVCodecContext *avctx, AVPacket *pkt) |
static av_cold int | ffat_init_decoder (AVCodecContext *avctx) |
static OSStatus | ffat_decode_callback (AudioConverterRef converter, UInt32 *nb_packets, AudioBufferList *data, AudioStreamPacketDescription **packets, void *inctx) |
static void | ffat_copy_samples (AVCodecContext *avctx, AVFrame *frame) |
static int | ffat_decode (AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt) |
static av_cold void | ffat_decode_flush (AVCodecContext *avctx) |
static av_cold int | ffat_close_decoder (AVCodecContext *avctx) |
#define kAudioFormatEnhancedAC3 'ec-3' |
Definition at line 36 of file audiotoolboxdec.c.
Referenced by ffat_get_format_id().
#define COPY_SAMPLES | ( | type | ) |
Definition at line 450 of file audiotoolboxdec.c.
Referenced by ffat_copy_samples().
#define FFAT_DEC_CLASS | ( | NAME | ) |
Definition at line 593 of file audiotoolboxdec.c.
#define FFAT_DEC | ( | NAME, | |
ID | |||
) |
Definition at line 599 of file audiotoolboxdec.c.
|
static |
Definition at line 57 of file audiotoolboxdec.c.
Referenced by ffat_create_decoder().
|
static |
Definition at line 96 of file audiotoolboxdec.c.
Referenced by ffat_compare_channel_descriptions(), and ffat_update_ctx().
Definition at line 124 of file audiotoolboxdec.c.
Referenced by ffat_update_ctx().
|
static |
Definition at line 131 of file audiotoolboxdec.c.
Referenced by ffat_update_ctx().
|
static |
Definition at line 159 of file audiotoolboxdec.c.
Referenced by ffat_create_decoder().
|
static |
Definition at line 219 of file audiotoolboxdec.c.
Referenced by ffat_get_magic_cookie().
|
static |
Definition at line 228 of file audiotoolboxdec.c.
Referenced by ffat_create_decoder(), and ffat_set_extradata().
|
static |
Definition at line 268 of file audiotoolboxdec.c.
Referenced by ffat_create_decoder(), ffat_init_decoder(), and ffat_set_extradata().
|
static |
Definition at line 278 of file audiotoolboxdec.c.
Referenced by ffat_create_decoder().
|
static |
Definition at line 300 of file audiotoolboxdec.c.
Referenced by ffat_decode(), and ffat_init_decoder().
|
static |
Definition at line 399 of file audiotoolboxdec.c.
|
static |
Definition at line 411 of file audiotoolboxdec.c.
Referenced by ffat_decode().
|
static |
Definition at line 460 of file audiotoolboxdec.c.
Referenced by ffat_decode().
|
static |
Definition at line 470 of file audiotoolboxdec.c.
|
static |
Definition at line 574 of file audiotoolboxdec.c.
|
static |
Definition at line 582 of file audiotoolboxdec.c.