diff options
-rw-r--r-- | src/combined/ffmpeg/ffmpeg_compat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/combined/ffmpeg/ffmpeg_compat.h b/src/combined/ffmpeg/ffmpeg_compat.h index 32de1fd24..edd01ddba 100644 --- a/src/combined/ffmpeg/ffmpeg_compat.h +++ b/src/combined/ffmpeg/ffmpeg_compat.h @@ -196,6 +196,9 @@ #if LIBAVCODEC_VERSION_INT < AV_INT_VERSION(52,66,0) # define avcodec_get_edge_width() (16) +#elif LIBAVCODEC_VERSION_INT >= AV_INT_VERSION(55,48,102) +/* edges not needed anymore supposedly */ +# define avcodec_get_edge_width() (0) #endif #if LIBAVCODEC_VERSION_INT >= AV_INT_VERSION(55,0,100) |