|
FFmpeg
|
#include <AudioToolbox/AudioToolbox.h>#include "config.h"#include "config_components.h"#include "avcodec.h"#include "ac3_parser_internal.h"#include "bytestream.h"#include "codec_internal.h"#include "decode.h"#include "mpegaudiodecheader.h"#include "libavutil/avassert.h"#include "libavutil/channel_layout.h"#include "libavutil/mem.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, bsf_name) |
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, const 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, AVFrame *frame, 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 40 of file audiotoolboxdec.c.
Referenced by ffat_get_format_id().
| #define COPY_SAMPLES | ( | type | ) |
Definition at line 469 of file audiotoolboxdec.c.
Referenced by ffat_copy_samples().
| #define FFAT_DEC_CLASS | ( | NAME | ) |
Definition at line 589 of file audiotoolboxdec.c.
| #define FFAT_DEC | ( | NAME, | |
| ID, | |||
| bsf_name ) |
Definition at line 595 of file audiotoolboxdec.c.
|
static |
Definition at line 60 of file audiotoolboxdec.c.
Referenced by ffat_create_decoder().
|
static |
Definition at line 101 of file audiotoolboxdec.c.
Referenced by ffat_compare_channel_descriptions(), and ffat_update_ctx().
|
static |
Definition at line 129 of file audiotoolboxdec.c.
Referenced by ffat_update_ctx().
|
static |
Definition at line 136 of file audiotoolboxdec.c.
Referenced by ffat_update_ctx().
|
static |
Definition at line 164 of file audiotoolboxdec.c.
Referenced by ffat_create_decoder().
|
static |
Definition at line 225 of file audiotoolboxdec.c.
Referenced by ffat_get_magic_cookie().
|
static |
Definition at line 234 of file audiotoolboxdec.c.
Referenced by ffat_create_decoder(), and ffat_set_extradata().
|
static |
Definition at line 274 of file audiotoolboxdec.c.
Referenced by ffat_create_decoder(), ffat_init_decoder(), and ffat_set_extradata().
|
static |
Definition at line 284 of file audiotoolboxdec.c.
Referenced by ffat_create_decoder().
|
static |
Definition at line 306 of file audiotoolboxdec.c.
Referenced by ffat_decode(), and ffat_init_decoder().
|
static |
Definition at line 413 of file audiotoolboxdec.c.
|
static |
Definition at line 430 of file audiotoolboxdec.c.
Referenced by ffat_decode().
|
static |
Definition at line 479 of file audiotoolboxdec.c.
Referenced by ffat_decode().
|
static |
Definition at line 489 of file audiotoolboxdec.c.
|
static |
Definition at line 569 of file audiotoolboxdec.c.
|
static |
Definition at line 577 of file audiotoolboxdec.c.