#include "libavutil/intfloat_readwrite.h"#include "libavutil/dict.h"#include "avformat.h"#include "internal.h"#include "pcm.h"#include "aiff.h"#include "isom.h"Go to the source code of this file.
| Data Structures | |
| struct | AIFFInputContext | 
| Defines | |
| #define | AIFF 0 | 
| #define | AIFF_C_VERSION1 0xA2805140 | 
| #define | MAX_SIZE 4096 | 
| Functions | |
| static enum CodecID | aiff_codec_get_id (int bps) | 
| static int | get_tag (AVIOContext *pb, uint32_t *tag) | 
| static void | get_meta (AVFormatContext *s, const char *key, int size) | 
| static unsigned int | get_aiff_header (AVIOContext *pb, AVCodecContext *codec, int size, unsigned version) | 
| static int | aiff_probe (AVProbeData *p) | 
| static int | aiff_read_header (AVFormatContext *s, AVFormatParameters *ap) | 
| static int | aiff_read_packet (AVFormatContext *s, AVPacket *pkt) | 
| Variables | |
| AVInputFormat | ff_aiff_demuxer | 
| #define AIFF 0 | 
| #define AIFF_C_VERSION1 0xA2805140 | 
| static enum CodecID aiff_codec_get_id | ( | int | bps | ) |  [static] | 
| static int aiff_probe | ( | AVProbeData * | p | ) |  [static] | 
| static int aiff_read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) |  [static] | 
| static int aiff_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) |  [static] | 
| static unsigned int get_aiff_header | ( | AVIOContext * | pb, | |
| AVCodecContext * | codec, | |||
| int | size, | |||
| unsigned | version | |||
| ) |  [static] | 
| static void get_meta | ( | AVFormatContext * | s, | |
| const char * | key, | |||
| int | size | |||
| ) |  [static] | 
| static int get_tag | ( | AVIOContext * | pb, | |
| uint32_t * | tag | |||
| ) |  [static] | 
Definition at line 53 of file aiffdec.c.
Referenced by aiff_read_header(), asf_read_content_desc(), asf_read_ext_content_desc(), asf_read_header(), and parse_legacy_attrib().
Initial value:
 {
    .name           = "aiff",
    .long_name      = NULL_IF_CONFIG_SMALL("Audio IFF"),
    .priv_data_size = sizeof(AIFFInputContext),
    .read_probe     = aiff_probe,
    .read_header    = aiff_read_header,
    .read_packet    = aiff_read_packet,
    .read_seek      = pcm_read_seek,
    .codec_tag= (const AVCodecTag* const []){ff_codec_aiff_tags, 0},
}
 1.5.8
 1.5.8