| 
    FFmpeg
    
   | 
 
#include <stdio.h>#include "libavutil/intreadwrite.h"#include "avformat.h"#include "internal.h"#include "apetag.h"Go to the source code of this file.
Data Structures | |
| struct | APEFrame | 
| struct | APEContext | 
| Decoder context.  More... | |
Macros | |
| #define | APE_MIN_VERSION 3800 | 
| #define | APE_MAX_VERSION 3990 | 
| #define | MAC_FORMAT_FLAG_8_BIT 1 | 
| #define | MAC_FORMAT_FLAG_CRC 2 | 
| #define | MAC_FORMAT_FLAG_HAS_PEAK_LEVEL 4 | 
| #define | MAC_FORMAT_FLAG_24_BIT 8 | 
| #define | MAC_FORMAT_FLAG_HAS_SEEK_ELEMENTS 16 | 
| #define | MAC_FORMAT_FLAG_CREATE_WAV_HEADER 32 | 
| #define | APE_EXTRADATA_SIZE 6 | 
Functions | |
| static int | ape_probe (AVProbeData *p) | 
| static void | ape_dumpinfo (AVFormatContext *s, APEContext *ape_ctx) | 
| static int | ape_read_header (AVFormatContext *s) | 
| static int | ape_read_packet (AVFormatContext *s, AVPacket *pkt) | 
| static int | ape_read_close (AVFormatContext *s) | 
| static int | ape_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, int flags) | 
Variables | |
| AVInputFormat | ff_ape_demuxer | 
| #define APE_MIN_VERSION 3800 | 
Definition at line 31 of file ape.c.
Referenced by ape_read_header().
| #define APE_MAX_VERSION 3990 | 
Definition at line 32 of file ape.c.
Referenced by ape_probe(), and ape_read_header().
| #define MAC_FORMAT_FLAG_8_BIT 1 | 
Definition at line 34 of file ape.c.
Referenced by ape_read_header().
| #define MAC_FORMAT_FLAG_HAS_PEAK_LEVEL 4 | 
Definition at line 36 of file ape.c.
Referenced by ape_read_header().
| #define MAC_FORMAT_FLAG_24_BIT 8 | 
Definition at line 37 of file ape.c.
Referenced by ape_read_header().
| #define MAC_FORMAT_FLAG_HAS_SEEK_ELEMENTS 16 | 
Definition at line 38 of file ape.c.
Referenced by ape_read_header().
| #define MAC_FORMAT_FLAG_CREATE_WAV_HEADER 32 | 
Definition at line 39 of file ape.c.
Referenced by ape_read_header().
| #define APE_EXTRADATA_SIZE 6 | 
Definition at line 41 of file ape.c.
Referenced by ape_read_header().
      
  | 
  static | 
      
  | 
  static | 
Definition at line 98 of file ape.c.
Referenced by ape_read_header().
      
  | 
  static | 
      
  | 
  static | 
      
  | 
  static | 
      
  | 
  static | 
| AVInputFormat ff_ape_demuxer | 
 1.8.6