|
FFmpeg
|
#include "libavutil/avassert.h"#include "libavutil/common.h"#include "avcodec.h"#include "bytestream.h"#include "codec_internal.h"#include "decode.h"Go to the source code of this file.
Data Structures | |
| struct | BMVDecContext |
Macros | |
| #define | SCREEN_WIDE 640 |
| #define | SCREEN_HIGH 429 |
| #define | NEXT_BYTE(v) |
Enumerations | |
| enum | BMVFlags { BMV_NOP = 0 , BMV_END , BMV_DELTA , BMV_INTRA , BMV_SCROLL = 0x04 , BMV_PALETTE = 0x08 , BMV_COMMAND = 0x10 , BMV_AUDIO = 0x20 , BMV_EXT = 0x40 , BMV_PRINT = 0x80 } |
Functions | |
| static int | decode_bmv_frame (const uint8_t *source, int src_len, uint8_t *frame, int frame_off) |
| static int | decode_frame (AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt) |
| static av_cold int | decode_init (AVCodecContext *avctx) |
Variables | |
| const FFCodec | ff_bmv_video_decoder |
| #define SCREEN_WIDE 640 |
Definition at line 44 of file bmvvideo.c.
Referenced by decode_bmv_frame(), and decode_init().
| #define SCREEN_HIGH 429 |
Definition at line 45 of file bmvvideo.c.
Referenced by decode_bmv_frame(), and decode_init().
| #define NEXT_BYTE | ( | v | ) |
Definition at line 55 of file bmvvideo.c.
Referenced by decode_bmv_frame().
| enum BMVFlags |
| Enumerator | |
|---|---|
| BMV_NOP | |
| BMV_END | |
| BMV_DELTA | |
| BMV_INTRA | |
| BMV_SCROLL | |
| BMV_PALETTE | |
| BMV_COMMAND | |
| BMV_AUDIO | |
| BMV_EXT | |
| BMV_PRINT | |
Definition at line 30 of file bmvvideo.c.
|
static |
Definition at line 57 of file bmvvideo.c.
Referenced by decode_frame().
|
static |
Definition at line 199 of file bmvvideo.c.
|
static |
Definition at line 270 of file bmvvideo.c.
| const FFCodec ff_bmv_video_decoder |
Definition at line 287 of file bmvvideo.c.