Message ID | AM7PR03MB6660916D02B10C07FA3B48D08F5E9@AM7PR03MB6660.eurprd03.prod.outlook.com |
---|---|
State | Accepted |
Commit | c793e05381090b1624e9b81f4a26da3214177afd |
Headers | show |
Series | [FFmpeg-devel,v2,01/18] avcodec/h264dec: Move find_start_code() to its only user | expand |
Context | Check | Description |
---|---|---|
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
andriy/make_ppc | success | Make finished |
andriy/make_fate_ppc | success | Make fate finished |
andriy/make_aarch64_jetson | success | Make finished |
andriy/make_fate_aarch64_jetson | success | Make fate finished |
diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c index ed9a74b0c6..a47caa95e8 100644 --- a/libavcodec/h264dec.c +++ b/libavcodec/h264dec.c @@ -30,6 +30,7 @@ #include "libavutil/avassert.h" #include "libavutil/imgutils.h" #include "libavutil/opt.h" +#include "libavutil/thread.h" #include "libavutil/video_enc_params.h" #include "internal.h" diff --git a/libavcodec/h264dec.h b/libavcodec/h264dec.h index f623d60893..79835e2d09 100644 --- a/libavcodec/h264dec.h +++ b/libavcodec/h264dec.h @@ -31,7 +31,6 @@ #include "libavutil/buffer.h" #include "libavutil/intreadwrite.h" #include "libavutil/mem_internal.h" -#include "libavutil/thread.h" #include "cabac.h" #include "error_resilience.h" @@ -45,8 +44,6 @@ #include "h264qpel.h" #include "h274.h" #include "mpegutils.h" -#include "parser.h" -#include "qpeldsp.h" #include "rectangle.h" #include "videodsp.h"
E.g. the inclusion of parser.h comes from a time when the parser used a H264Context. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> --- libavcodec/h264dec.c | 1 + libavcodec/h264dec.h | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-)