#include "libavutil/intreadwrite.h"
#include "avformat.h"
Go to the source code of this file.
Data Structures | |
| struct | BinkDemuxContext | 
Defines | |
| #define | BINK_EXTRADATA_SIZE 1 | 
| #define | BINK_MAX_AUDIO_TRACKS 256 | 
| #define | BINK_MAX_WIDTH 7680 | 
| #define | BINK_MAX_HEIGHT 4800 | 
Enumerations | |
| enum | BinkAudFlags { BINK_AUD_16BITS = 0x4000, BINK_AUD_STEREO = 0x2000, BINK_AUD_USEDCT = 0x1000 } | 
Functions | |
| static int | probe (AVProbeData *p) | 
| static int | read_header (AVFormatContext *s, AVFormatParameters *ap) | 
| static int | read_packet (AVFormatContext *s, AVPacket *pkt) | 
| static int | read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, int flags) | 
Variables | |
| AVInputFormat | ff_bink_demuxer | 
Technical details here: http://wiki.multimedia.cx/index.php?title=Bink_Container
Definition in file bink.c.
| #define BINK_MAX_AUDIO_TRACKS 256 | 
| enum BinkAudFlags | 
| static int probe | ( | AVProbeData * | p | ) |  [static] | 
        
| static int read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) |  [static] | 
        
| static int read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) |  [static] | 
        
| static int read_seek | ( | AVFormatContext * | s, | |
| int | stream_index, | |||
| int64_t | timestamp, | |||
| int | flags | |||
| ) |  [static] | 
        
Initial value:
 {
    "bink",
    NULL_IF_CONFIG_SMALL("Bink"),
    sizeof(BinkDemuxContext),
    probe,
    read_header,
    read_packet,
    NULL,
    read_seek,
}
 1.5.8