diff options
author | James Almer <jamrial@gmail.com> | 2022-03-13 15:21:01 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-03-13 15:29:06 -0300 |
commit | d794b36a7788dee8e7354d94637af0eb0d15385f (patch) | |
tree | b35c0af82dee8637feee9014e80e25f4c97e8b39 | |
parent | 50bc87263576c01d711007fdc103cf24bf05c5ce (diff) | |
download | ffmpeg-d794b36a7788dee8e7354d94637af0eb0d15385f.tar.gz |
avcodec/libsvtav1: remove version check macro workaround
The current minimum supported version defines the macro.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/libsvtav1.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c index 27ff882773..b150723b7b 100644 --- a/libavcodec/libsvtav1.c +++ b/libavcodec/libsvtav1.c @@ -37,10 +37,6 @@ #include "avcodec.h" #include "profiles.h" -#ifndef SVT_AV1_CHECK_VERSION -#define SVT_AV1_CHECK_VERSION(major, minor, patch) 0 -#endif - typedef enum eos_status { EOS_NOT_REACHED = 0, EOS_SENT, |