diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-04-21 03:39:06 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-04-24 05:00:02 +0200 |
commit | cc489e43de3c892a9e262069f889570b4a5ecc3f (patch) | |
tree | f7b40ba54ac33c270fd643eec3ae90e0e5d6624b | |
parent | 9f3d3ff2ecebd8882627ca4c9cb58481252ee9db (diff) | |
download | ffmpeg-cc489e43de3c892a9e262069f889570b4a5ecc3f.tar.gz |
avcodec/vp9_raw_reorder_bsf: Remove unnecessary header
This bsf doesn't have any options, so including libavutil/opt.h is
unnecessary.
Reviewed-by: Peter Ross <pross@xvid.org>
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/vp9_raw_reorder_bsf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/vp9_raw_reorder_bsf.c b/libavcodec/vp9_raw_reorder_bsf.c index e55a358457..2a1bdb9ba7 100644 --- a/libavcodec/vp9_raw_reorder_bsf.c +++ b/libavcodec/vp9_raw_reorder_bsf.c @@ -20,7 +20,6 @@ #include "libavutil/intmath.h" #include "libavutil/log.h" #include "libavutil/mem.h" -#include "libavutil/opt.h" #include "bsf.h" #include "get_bits.h" |