FFmpeg
mpegutils.h
Go to the documentation of this file.
1 /*
2  * Mpeg video formats-related defines and utility functions
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #ifndef AVCODEC_MPEGUTILS_H
22 #define AVCODEC_MPEGUTILS_H
23 
24 #include <stdint.h>
25 
26 #include "libavutil/frame.h"
27 
28 #include "avcodec.h"
29 
30 /**
31  * Return value for header parsers if frame is not coded.
32  * */
33 #define FRAME_SKIPPED 100
34 
35 /* picture type */
36 #define PICT_TOP_FIELD 1
37 #define PICT_BOTTOM_FIELD 2
38 #define PICT_FRAME 3
39 
40 /**
41  * Value of Picture.reference when Picture is not a reference picture, but
42  * is held for delayed output.
43  */
44 #define DELAYED_PIC_REF 4
45 
46 #define MAX_MB_BYTES (30 * 16 * 16 * 3 / 8 + 120)
47 #define MAX_FCODE 7
48 
49 /* MB types */
50 #define MB_TYPE_INTRA4x4 (1 << 0)
51 #define MB_TYPE_INTRA16x16 (1 << 1) // FIXME H.264-specific
52 #define MB_TYPE_INTRA_PCM (1 << 2) // FIXME H.264-specific
53 #define MB_TYPE_16x16 (1 << 3)
54 #define MB_TYPE_16x8 (1 << 4)
55 #define MB_TYPE_8x16 (1 << 5)
56 #define MB_TYPE_8x8 (1 << 6)
57 #define MB_TYPE_INTERLACED (1 << 7)
58 #define MB_TYPE_DIRECT2 (1 << 8) // FIXME
59 #define MB_TYPE_ACPRED (1 << 9)
60 #define MB_TYPE_GMC (1 << 10)
61 #define MB_TYPE_SKIP (1 << 11)
62 #define MB_TYPE_P0L0 (1 << 12)
63 #define MB_TYPE_P1L0 (1 << 13)
64 #define MB_TYPE_P0L1 (1 << 14)
65 #define MB_TYPE_P1L1 (1 << 15)
66 #define MB_TYPE_L0 (MB_TYPE_P0L0 | MB_TYPE_P1L0)
67 #define MB_TYPE_L1 (MB_TYPE_P0L1 | MB_TYPE_P1L1)
68 #define MB_TYPE_L0L1 (MB_TYPE_L0 | MB_TYPE_L1)
69 #define MB_TYPE_QUANT (1 << 16)
70 #define MB_TYPE_CBP (1 << 17)
71 
72 #define MB_TYPE_INTRA MB_TYPE_INTRA4x4 // default mb_type if there is just one type
73 
74 #define IS_INTRA4x4(a) ((a) & MB_TYPE_INTRA4x4)
75 #define IS_INTRA16x16(a) ((a) & MB_TYPE_INTRA16x16)
76 #define IS_PCM(a) ((a) & MB_TYPE_INTRA_PCM)
77 #define IS_INTRA(a) ((a) & 7)
78 #define IS_INTER(a) ((a) & (MB_TYPE_16x16 | MB_TYPE_16x8 | \
79  MB_TYPE_8x16 | MB_TYPE_8x8))
80 #define IS_SKIP(a) ((a) & MB_TYPE_SKIP)
81 #define IS_INTRA_PCM(a) ((a) & MB_TYPE_INTRA_PCM)
82 #define IS_INTERLACED(a) ((a) & MB_TYPE_INTERLACED)
83 #define IS_DIRECT(a) ((a) & MB_TYPE_DIRECT2)
84 #define IS_GMC(a) ((a) & MB_TYPE_GMC)
85 #define IS_16X16(a) ((a) & MB_TYPE_16x16)
86 #define IS_16X8(a) ((a) & MB_TYPE_16x8)
87 #define IS_8X16(a) ((a) & MB_TYPE_8x16)
88 #define IS_8X8(a) ((a) & MB_TYPE_8x8)
89 #define IS_SUB_8X8(a) ((a) & MB_TYPE_16x16) // note reused
90 #define IS_SUB_8X4(a) ((a) & MB_TYPE_16x8) // note reused
91 #define IS_SUB_4X8(a) ((a) & MB_TYPE_8x16) // note reused
92 #define IS_SUB_4X4(a) ((a) & MB_TYPE_8x8) // note reused
93 #define IS_ACPRED(a) ((a) & MB_TYPE_ACPRED)
94 #define IS_QUANT(a) ((a) & MB_TYPE_QUANT)
95 #define IS_DIR(a, part, list) ((a) & (MB_TYPE_P0L0 << ((part) + 2 * (list))))
96 
97 // does this mb use listX, note does not work if subMBs
98 #define USES_LIST(a, list) ((a) & ((MB_TYPE_P0L0 | MB_TYPE_P1L0) << (2 * (list))))
99 
100 #define HAS_CBP(a) ((a) & MB_TYPE_CBP)
101 
102 /* MB types for encoding */
103 #define CANDIDATE_MB_TYPE_INTRA (1 << 0)
104 #define CANDIDATE_MB_TYPE_INTER (1 << 1)
105 #define CANDIDATE_MB_TYPE_INTER4V (1 << 2)
106 #define CANDIDATE_MB_TYPE_SKIPPED (1 << 3)
107 
108 #define CANDIDATE_MB_TYPE_DIRECT (1 << 4)
109 #define CANDIDATE_MB_TYPE_FORWARD (1 << 5)
110 #define CANDIDATE_MB_TYPE_BACKWARD (1 << 6)
111 #define CANDIDATE_MB_TYPE_BIDIR (1 << 7)
112 
113 #define CANDIDATE_MB_TYPE_INTER_I (1 << 8)
114 #define CANDIDATE_MB_TYPE_FORWARD_I (1 << 9)
115 #define CANDIDATE_MB_TYPE_BACKWARD_I (1 << 10)
116 #define CANDIDATE_MB_TYPE_BIDIR_I (1 << 11)
117 
118 #define CANDIDATE_MB_TYPE_DIRECT0 (1 << 12)
119 
120 #define INPLACE_OFFSET 16
121 
128 };
129 
130 
131 /**
132  * Draw a horizontal band if supported.
133  *
134  * @param h is the normal height, this will be reduced automatically if needed
135  */
136 void ff_draw_horiz_band(AVCodecContext *avctx, AVFrame *cur, AVFrame *last,
137  int y, int h, int picture_structure, int first_field,
138  int low_delay);
139 
140 /**
141  * Print debugging info for the given picture.
142  */
143 void ff_print_debug_info2(AVCodecContext *avctx, AVFrame *pict, uint8_t *mbskip_table,
144  uint32_t *mbtype_table, int8_t *qscale_table, int16_t (*motion_val[2])[2],
145  int mb_width, int mb_height, int mb_stride, int quarter_sample);
146 
147 #endif /* AVCODEC_MPEGUTILS_H */
FMT_MPEG1
@ FMT_MPEG1
Definition: mpegutils.h:123
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:317
ff_print_debug_info2
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 mb_width, int mb_height, int mb_stride, int quarter_sample)
Print debugging info for the given picture.
Definition: mpegutils.c:103
OutputFormat
OutputFormat
Definition: mpegutils.h:122
FMT_H261
@ FMT_H261
Definition: mpegutils.h:124
FMT_MJPEG
@ FMT_MJPEG
Definition: mpegutils.h:126
FMT_SPEEDHQ
@ FMT_SPEEDHQ
Definition: mpegutils.h:127
frame.h
FMT_H263
@ FMT_H263
Definition: mpegutils.h:125
avcodec.h
AVCodecContext
main external API structure.
Definition: avcodec.h:383
ff_draw_horiz_band
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.
Definition: mpegutils.c:51
h
h
Definition: vp9dsp_template.c:2038
first_field
static int first_field(const struct video_data *s)
Definition: v4l2.c:236