mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-01 04:13:57 +00:00
lavc/h264: move MB_TYPE defs from h264dec.h to h264_parse
Allows to stop including h264dec.h in h264data.c.
This commit is contained in:
parent
2f1716dcd6
commit
ded77f5654
@ -33,6 +33,9 @@
|
||||
#include "get_bits.h"
|
||||
#include "h264_ps.h"
|
||||
|
||||
#define MB_TYPE_REF0 MB_TYPE_ACPRED // dirty but it fits in 16 bit
|
||||
#define MB_TYPE_8x8DCT 0x01000000
|
||||
|
||||
// This table must be here because scan8[constant] must be known at compiletime
|
||||
static const uint8_t scan8[16 * 3 + 3] = {
|
||||
4 + 1 * 8, 5 + 1 * 8, 4 + 2 * 8, 5 + 2 * 8,
|
||||
|
@ -30,7 +30,7 @@
|
||||
|
||||
#include "libavutil/avutil.h"
|
||||
|
||||
#include "h264dec.h"
|
||||
#include "h264_parse.h"
|
||||
#include "h264data.h"
|
||||
#include "mpegutils.h"
|
||||
|
||||
|
@ -95,8 +95,6 @@
|
||||
#define CHROMA422(h) ((h)->ps.sps->chroma_format_idc == 2)
|
||||
#define CHROMA444(h) ((h)->ps.sps->chroma_format_idc == 3)
|
||||
|
||||
#define MB_TYPE_REF0 MB_TYPE_ACPRED // dirty but it fits in 16 bit
|
||||
#define MB_TYPE_8x8DCT 0x01000000
|
||||
#define IS_REF0(a) ((a) & MB_TYPE_REF0)
|
||||
#define IS_8x8DCT(a) ((a) & MB_TYPE_8x8DCT)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user