FFmpeg
|
Go to the source code of this file.
Enumerations | |
enum | OutputFormat { FMT_MPEG1, FMT_H261, FMT_H263, FMT_MJPEG } |
Functions | |
void | ff_draw_horiz_band (AVCodecContext *avctx, AVFrame *cur, AVFrame *last, int y, int h, int picture_structure, int first_field, int low_delay) |
Draw a horizontal band if supported. More... | |
void | ff_print_debug_info2 (AVCodecContext *avctx, AVFrame *pict, uint8_t *mbskip_table, uint32_t *mbtype_table, int8_t *qscale_table, int16_t(*motion_val[2])[2], int *low_delay, int mb_width, int mb_height, int mb_stride, int quarter_sample) |
Print debugging info for the given picture. More... | |
#define FRAME_SKIPPED 100 |
Return value for header parsers if frame is not coded.
Definition at line 34 of file mpegutils.h.
#define PICT_TOP_FIELD 1 |
Definition at line 37 of file mpegutils.h.
#define PICT_BOTTOM_FIELD 2 |
Definition at line 38 of file mpegutils.h.
#define PICT_FRAME 3 |
Definition at line 39 of file mpegutils.h.
#define DELAYED_PIC_REF 4 |
Value of Picture.reference when Picture is not a reference picture, but is held for delayed output.
Definition at line 45 of file mpegutils.h.
#define MAX_MB_BYTES (30 * 16 * 16 * 3 / 8 + 120) |
Definition at line 47 of file mpegutils.h.
#define MAX_FCODE 7 |
Definition at line 48 of file mpegutils.h.
#define MB_TYPE_INTRA4x4 (1 << 0) |
Definition at line 51 of file mpegutils.h.
#define MB_TYPE_INTRA16x16 (1 << 1) |
Definition at line 52 of file mpegutils.h.
#define MB_TYPE_INTRA_PCM (1 << 2) |
Definition at line 53 of file mpegutils.h.
#define MB_TYPE_16x16 (1 << 3) |
Definition at line 54 of file mpegutils.h.
#define MB_TYPE_16x8 (1 << 4) |
Definition at line 55 of file mpegutils.h.
#define MB_TYPE_8x16 (1 << 5) |
Definition at line 56 of file mpegutils.h.
#define MB_TYPE_8x8 (1 << 6) |
Definition at line 57 of file mpegutils.h.
#define MB_TYPE_INTERLACED (1 << 7) |
Definition at line 58 of file mpegutils.h.
#define MB_TYPE_DIRECT2 (1 << 8) |
Definition at line 59 of file mpegutils.h.
#define MB_TYPE_ACPRED (1 << 9) |
Definition at line 60 of file mpegutils.h.
#define MB_TYPE_GMC (1 << 10) |
Definition at line 61 of file mpegutils.h.
#define MB_TYPE_SKIP (1 << 11) |
Definition at line 62 of file mpegutils.h.
#define MB_TYPE_P0L0 (1 << 12) |
Definition at line 63 of file mpegutils.h.
#define MB_TYPE_P1L0 (1 << 13) |
Definition at line 64 of file mpegutils.h.
#define MB_TYPE_P0L1 (1 << 14) |
Definition at line 65 of file mpegutils.h.
#define MB_TYPE_P1L1 (1 << 15) |
Definition at line 66 of file mpegutils.h.
#define MB_TYPE_L0 (MB_TYPE_P0L0 | MB_TYPE_P1L0) |
Definition at line 67 of file mpegutils.h.
#define MB_TYPE_L1 (MB_TYPE_P0L1 | MB_TYPE_P1L1) |
Definition at line 68 of file mpegutils.h.
#define MB_TYPE_L0L1 (MB_TYPE_L0 | MB_TYPE_L1) |
Definition at line 69 of file mpegutils.h.
#define MB_TYPE_QUANT (1 << 16) |
Definition at line 70 of file mpegutils.h.
#define MB_TYPE_CBP (1 << 17) |
Definition at line 71 of file mpegutils.h.
#define MB_TYPE_INTRA MB_TYPE_INTRA4x4 |
Definition at line 73 of file mpegutils.h.
#define IS_INTRA4x4 | ( | a | ) | ((a) & MB_TYPE_INTRA4x4) |
Definition at line 75 of file mpegutils.h.
#define IS_INTRA16x16 | ( | a | ) | ((a) & MB_TYPE_INTRA16x16) |
Definition at line 76 of file mpegutils.h.
#define IS_PCM | ( | a | ) | ((a) & MB_TYPE_INTRA_PCM) |
Definition at line 77 of file mpegutils.h.
Definition at line 78 of file mpegutils.h.
#define IS_INTER | ( | a | ) |
Definition at line 79 of file mpegutils.h.
#define IS_SKIP | ( | a | ) | ((a) & MB_TYPE_SKIP) |
Definition at line 81 of file mpegutils.h.
#define IS_INTRA_PCM | ( | a | ) | ((a) & MB_TYPE_INTRA_PCM) |
Definition at line 82 of file mpegutils.h.
#define IS_INTERLACED | ( | a | ) | ((a) & MB_TYPE_INTERLACED) |
Definition at line 83 of file mpegutils.h.
#define IS_DIRECT | ( | a | ) | ((a) & MB_TYPE_DIRECT2) |
Definition at line 84 of file mpegutils.h.
#define IS_GMC | ( | a | ) | ((a) & MB_TYPE_GMC) |
Definition at line 85 of file mpegutils.h.
#define IS_16X16 | ( | a | ) | ((a) & MB_TYPE_16x16) |
Definition at line 86 of file mpegutils.h.
#define IS_16X8 | ( | a | ) | ((a) & MB_TYPE_16x8) |
Definition at line 87 of file mpegutils.h.
#define IS_8X16 | ( | a | ) | ((a) & MB_TYPE_8x16) |
Definition at line 88 of file mpegutils.h.
#define IS_8X8 | ( | a | ) | ((a) & MB_TYPE_8x8) |
Definition at line 89 of file mpegutils.h.
#define IS_SUB_8X8 | ( | a | ) | ((a) & MB_TYPE_16x16) |
Definition at line 90 of file mpegutils.h.
#define IS_SUB_8X4 | ( | a | ) | ((a) & MB_TYPE_16x8) |
Definition at line 91 of file mpegutils.h.
#define IS_SUB_4X8 | ( | a | ) | ((a) & MB_TYPE_8x16) |
Definition at line 92 of file mpegutils.h.
#define IS_SUB_4X4 | ( | a | ) | ((a) & MB_TYPE_8x8) |
Definition at line 93 of file mpegutils.h.
#define IS_ACPRED | ( | a | ) | ((a) & MB_TYPE_ACPRED) |
Definition at line 94 of file mpegutils.h.
#define IS_QUANT | ( | a | ) | ((a) & MB_TYPE_QUANT) |
Definition at line 95 of file mpegutils.h.
#define IS_DIR | ( | a, | |
part, | |||
list | |||
) | ((a) & (MB_TYPE_P0L0 << ((part) + 2 * (list)))) |
Definition at line 96 of file mpegutils.h.
#define USES_LIST | ( | a, | |
list | |||
) | ((a) & ((MB_TYPE_P0L0 | MB_TYPE_P1L0) << (2 * (list)))) |
Definition at line 99 of file mpegutils.h.
#define HAS_CBP | ( | a | ) | ((a) & MB_TYPE_CBP) |
Definition at line 101 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_INTRA (1 << 0) |
Definition at line 104 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_INTER (1 << 1) |
Definition at line 105 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_INTER4V (1 << 2) |
Definition at line 106 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_SKIPPED (1 << 3) |
Definition at line 107 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_DIRECT (1 << 4) |
Definition at line 109 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_FORWARD (1 << 5) |
Definition at line 110 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_BACKWARD (1 << 6) |
Definition at line 111 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_BIDIR (1 << 7) |
Definition at line 112 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_INTER_I (1 << 8) |
Definition at line 114 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_FORWARD_I (1 << 9) |
Definition at line 115 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_BACKWARD_I (1 << 10) |
Definition at line 116 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_BIDIR_I (1 << 11) |
Definition at line 117 of file mpegutils.h.
#define CANDIDATE_MB_TYPE_DIRECT0 (1 << 12) |
Definition at line 119 of file mpegutils.h.
#define INPLACE_OFFSET 16 |
Definition at line 121 of file mpegutils.h.
enum OutputFormat |
Enumerator | |
---|---|
FMT_MPEG1 | |
FMT_H261 | |
FMT_H263 | |
FMT_MJPEG |
Definition at line 123 of file mpegutils.h.
void ff_draw_horiz_band | ( | AVCodecContext * | avctx, |
AVFrame * | cur, | ||
AVFrame * | last, | ||
int | y, | ||
int | h, | ||
int | picture_structure, | ||
int | first_field, | ||
int | low_delay | ||
) |
Draw a horizontal band if supported.
h | is the normal height, this will be reduced automatically if needed |
Definition at line 51 of file mpegutils.c.
Referenced by ff_intrax8_decode_picture(), ff_mpeg_draw_horiz_band(), and svq3_decode_frame().
void ff_print_debug_info2 | ( | AVCodecContext * | avctx, |
AVFrame * | pict, | ||
uint8_t * | mbskip_table, | ||
uint32_t * | mbtype_table, | ||
int8_t * | qscale_table, | ||
int16_t(*[2]) | motion_val[2], | ||
int * | low_delay, | ||
int | mb_width, | ||
int | mb_height, | ||
int | mb_stride, | ||
int | quarter_sample | ||
) |
Print debugging info for the given picture.
Definition at line 103 of file mpegutils.c.
Referenced by ff_print_debug_info(), and finalize_frame().