summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-08-04 02:14:12 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-08-07 09:21:13 +0200
commit428133a3ed8a623ffe703cb33d79669dd18e28c3 (patch)
treec6ea446ac1fc20237e63165756a18319a2176f67 /libavcodec
parent19ffa2ff2d76d51d0c00304c344cd79591bcfdd2 (diff)
avcodec/qsvenc: Remove unnecessary config_components.h inclusion
While just at it, also improve the other headers a bit. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/qsvenc.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/qsvenc.c b/libavcodec/qsvenc.c
index df63c182b0..7ff9d333a2 100644
--- a/libavcodec/qsvenc.c
+++ b/libavcodec/qsvenc.c
@@ -21,12 +21,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include "config_components.h"
-
#include <string.h>
#include <sys/types.h>
#include <mfxvideo.h>
+#include "libavutil/avassert.h"
#include "libavutil/common.h"
#include "libavutil/hwcontext.h"
#include "libavutil/hwcontext_qsv.h"
@@ -34,7 +33,6 @@
#include "libavutil/log.h"
#include "libavutil/time.h"
#include "libavutil/imgutils.h"
-#include "libavcodec/bytestream.h"
#include "avcodec.h"
#include "internal.h"