FFmpeg
|
#include "parser.h"
Go to the source code of this file.
Macros | |
#define | SLICE_MAX_START_CODE 0x000001af |
#define | ISPIC(x) ((x) == 0xB3 || (x) == 0xB6) |
#define | ISUNIT(x) ((x) == 0xB0 || (x) == 0xB1 || (x) == 0xB2 || ISPIC(x)) |
Functions | |
static int | avs2_find_frame_end (ParseContext *pc, const uint8_t *buf, int buf_size) |
static int | avs2_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) |
Variables | |
AVCodecParser | ff_avs2_parser |
#define SLICE_MAX_START_CODE 0x000001af |
Definition at line 24 of file avs2_parser.c.
#define ISPIC | ( | x | ) | ((x) == 0xB3 || (x) == 0xB6) |
Definition at line 26 of file avs2_parser.c.
#define ISUNIT | ( | x | ) | ((x) == 0xB0 || (x) == 0xB1 || (x) == 0xB2 || ISPIC(x)) |
Definition at line 27 of file avs2_parser.c.
|
static |
Definition at line 29 of file avs2_parser.c.
Referenced by avs2_parse().
|
static |
Definition at line 65 of file avs2_parser.c.
AVCodecParser ff_avs2_parser |
Definition at line 89 of file avs2_parser.c.