Remove some more unneeded version checks

All of these check against things that happened before the latest
supported FFmpeg/Libav release.
This commit is contained in:
wm4
2014-03-16 10:04:46 +01:00
parent 5506c8d0f6
commit 64c01a814c
6 changed files with 8 additions and 68 deletions

View File

@@ -30,11 +30,7 @@
#include "bstr/bstr.h"
#include "sd.h"
#if LIBAVCODEC_VERSION_MICRO >= 100
#define HAVE_AV_WEBVTT (LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55, 13, 100))
#else
#define HAVE_AV_WEBVTT 0
#endif
#define HAVE_AV_WEBVTT (LIBAVCODEC_VERSION_MICRO >= 100)
struct sd_lavc_priv {
AVCodecContext *avctx;