|
FFmpeg
|
#include "avformat.h"#include "internal.h"#include "libavutil/intreadwrite.h"#include "libavutil/avassert.h"#include "libavutil/internal.h"Go to the source code of this file.
Data Structures | |
| struct | PPBnkHeader |
| struct | PPBnkTrack |
| struct | PPBnkCtxTrack |
| struct | PPBnkCtx |
Macros | |
| #define | PP_BNK_MAX_READ_SIZE 4096 |
| #define | PP_BNK_FILE_HEADER_SIZE 20 |
| #define | PP_BNK_TRACK_SIZE 20 |
Enumerations | |
| enum | { PP_BNK_FLAG_PERSIST = (1 << 0), PP_BNK_FLAG_MUSIC = (1 << 1), PP_BNK_FLAG_MASK = (PP_BNK_FLAG_PERSIST | PP_BNK_FLAG_MUSIC) } |
Functions | |
| static void | pp_bnk_parse_header (PPBnkHeader *hdr, const uint8_t *buf) |
| static void | pp_bnk_parse_track (PPBnkTrack *trk, const uint8_t *buf) |
| static int | pp_bnk_probe (const AVProbeData *p) |
| static int | pp_bnk_read_header (AVFormatContext *s) |
| static int | pp_bnk_read_packet (AVFormatContext *s, AVPacket *pkt) |
| static int | pp_bnk_read_close (AVFormatContext *s) |
| static int | pp_bnk_seek (AVFormatContext *s, int stream_index, int64_t pts, int flags) |
Variables | |
| AVInputFormat | ff_pp_bnk_demuxer |
| anonymous enum |
|
static |
Definition at line 67 of file pp_bnk.c.
Referenced by pp_bnk_read_header().
|
static |
Definition at line 76 of file pp_bnk.c.
Referenced by pp_bnk_read_header().
|
static |
|
static |
|
static |
|
static |
|
static |
| AVInputFormat ff_pp_bnk_demuxer |
1.8.17