summaryrefslogtreecommitdiff
Diffstat
-rw-r--r--libavcodec/avcodec.h1
-rw-r--r--libavcodec/h264.h3
-rw-r--r--libavcodec/h264_parser.c9
-rw-r--r--libavcodec/h264dec.c13
-rw-r--r--libavcodec/hevc.h1
-rw-r--r--libavcodec/hevcdec.c16
6 files changed, 41 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 62ea89b..0b78ff8 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -45,7 +45,8 @@ enum {
H264_NAL_SUB_SPS = 15,
H264_NAL_AUXILIARY_SLICE = 19,
H264_NAL_SLC_EXT = 20,
- H264_NAL_264_DV = 0x1c, /*0x7c & 0x1f*/
+ H264_NAL_264_DV_META = 0x1c, /*0x7c & 0x1f*/
+ H264_NAL_264_DV_EL = 0x1e, /*0x7E & 0x1f*/
};
#endif /* AVCODEC_H264_H */