Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 215926 | Differences between
and this patch

Collapse All | Expand All

(-)./configure.ac (-1 / +1 lines)
Lines 271-277 Link Here
271
using_ffmpeg=no
271
using_ffmpeg=no
272
if test "$with_ffmpeg" != "no"; then
272
if test "$with_ffmpeg" != "no"; then
273
    using_ffmpeg=yes
273
    using_ffmpeg=yes
274
    AC_CHECK_HEADER(ffmpeg/avformat.h,
274
    AC_CHECK_HEADER(libavformat/avformat.h,
275
        [AC_CHECK_LIB(avformat, av_open_input_file, FFMPEG_LIBS="$FFMPEG_LIBS -lavformat", using_ffmpeg=no)
275
        [AC_CHECK_LIB(avformat, av_open_input_file, FFMPEG_LIBS="$FFMPEG_LIBS -lavformat", using_ffmpeg=no)
276
        AC_CHECK_LIB(avutil, av_rescale_q, FFMPEG_LIBS="$FFMPEG_LIBS -lavutil", using_ffmpeg=no)
276
        AC_CHECK_LIB(avutil, av_rescale_q, FFMPEG_LIBS="$FFMPEG_LIBS -lavutil", using_ffmpeg=no)
277
        AC_CHECK_LIB(avcodec, avcodec_decode_audio2, FFMPEG_LIBS="$FFMPEG_LIBS -lavcodec", using_ffmpeg=no)],
277
        AC_CHECK_LIB(avcodec, avcodec_decode_audio2, FFMPEG_LIBS="$FFMPEG_LIBS -lavcodec", using_ffmpeg=no)],
(-)./src/ffmpeg.c (-1 / +1 lines)
Lines 47-53 Link Here
47
#include <stdio.h>
47
#include <stdio.h>
48
#include <string.h>
48
#include <string.h>
49
#include <ctype.h>
49
#include <ctype.h>
50
#include <ffmpeg/avformat.h>
50
#include <libavformat/avformat.h>
51
51
52
/* Private data for ffmpeg files */
52
/* Private data for ffmpeg files */
53
typedef struct ffmpeg
53
typedef struct ffmpeg

Return to bug 215926