diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-10 14:47:53 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-10 18:22:20 +0200 |
commit | 260d7d5a6c18d3ae97ef9245597986299a0df49e (patch) | |
tree | c0454248f0ca5b3f4a650e52b69d3e4959fa153a /libavfilter/avfilter.c | |
parent | f98b6cf543cc41037b18dbf4d9fa72e426383f16 (diff) | |
download | ffmpeg-260d7d5a6c18d3ae97ef9245597986299a0df49e.tar.gz |
avfilter/avfilter: Fix compilation with TRACE defined
av_get_pix_fmt_name() is used in an ff_tlog(), which is only
compiled if TRACE is defined. Fixes a regression caused by
f2b79c5b855b7450c8f3c15b9ec11b439cd2a294.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index a987dfe7b4..965f5d0f63 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -29,6 +29,7 @@ #include "libavutil/hwcontext.h" #include "libavutil/internal.h" #include "libavutil/opt.h" +#include "libavutil/pixdesc.h" #include "libavutil/rational.h" #include "libavutil/samplefmt.h" |