diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-05-18 09:40:33 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-06-21 11:13:29 +0200 |
commit | f638b67e5790735f34620bf82025c9b9d6fc7216 (patch) | |
tree | ad69a1e8304a70e74bc6d57f83cd8c28d7cdae77 /libavcodec/h264dec.c | |
parent | 4e2f6212483ae1b2a4043cddf0a1cb001b476abc (diff) | |
download | ffmpeg-f638b67e5790735f34620bf82025c9b9d6fc7216.tar.gz |
h264: move the parameter set definitions to a new header file
The PS parsing code is independent from the decoder, so it makes more
sense for it to have its own separate header.
Diffstat (limited to 'libavcodec/h264dec.c')
-rw-r--r-- | libavcodec/h264dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c index 94229fe85a..b4b78bd48a 100644 --- a/libavcodec/h264dec.c +++ b/libavcodec/h264dec.c @@ -42,6 +42,7 @@ #include "h264data.h" #include "h264chroma.h" #include "h264_mvpred.h" +#include "h264_ps.h" #include "golomb.h" #include "mathops.h" #include "me_cmp.h" |