diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-24 21:43:37 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-27 14:14:56 +0200 |
commit | b6a680989c2f2428a25bea322ffd2b546474df75 (patch) | |
tree | c7c94251e966ea7ff5e1826fcac0b4a908be748b /libavcodec/vc1.c | |
parent | 66b691f99f77ebb59d5c192aab4eefec4d200be8 (diff) | |
download | ffmpeg-b6a680989c2f2428a25bea322ffd2b546474df75.tar.gz |
avcodec/internal: Move ff_set_sar() to decode.h
Only used by decoders, as the SAR has to be set by the user
when encoding.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 1070b8ca90..d46f551020 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -30,6 +30,7 @@ #include "libavutil/thread.h" #include "internal.h" #include "avcodec.h" +#include "decode.h" #include "mpegvideo.h" #include "vc1.h" #include "vc1data.h" |