]> git.pld-linux.org Git - packages/alsa-plugins.git/blob - alsa-plugins-avcodec-check.patch
- fix avcodec version check
[packages/alsa-plugins.git] / alsa-plugins-avcodec-check.patch
1 diff -up alsa-plugins-1.0.27/a52/pcm_a52.c.orig alsa-plugins-1.0.27/a52/pcm_a52.c
2 --- alsa-plugins-1.0.27/a52/pcm_a52.c.orig      2013-04-12 17:54:16.597201378 -0300
3 +++ alsa-plugins-1.0.27/a52/pcm_a52.c   2013-04-12 18:00:56.281158309 -0300
4 @@ -27,7 +27,7 @@
5  #include <alsa/pcm_plugin.h>
6  #include AVCODEC_HEADER
7  
8 -#if LIBAVCODEC_VERSION_MAJOR >= 53 && LIBAVCODEC_VERSION_MINOR >= 34
9 +#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(53, 34, 0)
10  #include <libavutil/audioconvert.h>
11  #include <libavutil/mem.h>
12  #define USE_AVCODEC_FRAME
This page took 0.082293 seconds and 3 git commands to generate.