diff options
author | Francois Andriot <francois.andriot@free.fr> | 2013-08-02 12:01:09 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-08-02 12:01:09 +0200 |
commit | b375ac5d2df53aaf5600538d9072a11a68ce1b19 (patch) | |
tree | 161bae40f4605b106f16db4419dc886cf9b6356e | |
parent | 76443cbb9c6f0a76e94eb263cbd6949e44a22274 (diff) | |
download | k9copy-b375ac5d2df53aaf5600538d9072a11a68ce1b19.tar.gz k9copy-b375ac5d2df53aaf5600538d9072a11a68ce1b19.zip |
Fix version check in prior commit
-rw-r--r-- | k9author/k9avidecode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/k9author/k9avidecode.h b/k9author/k9avidecode.h index c4ca599..62b7b23 100644 --- a/k9author/k9avidecode.h +++ b/k9author/k9avidecode.h @@ -43,7 +43,7 @@ typedef int (*avformat_find_stream_info_t)(AVFormatContext *, AVDictionary **); #else typedef int (*av_find_stream_info_t)(AVFormatContext *); #endif -#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(53, 26, 0) +#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(54, 25, 0) typedef AVCodec* (*avcodec_find_decoder_t)(enum AVCodecID); #else typedef AVCodec* (*avcodec_find_decoder_t)(enum CodecID); |