1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-14 10:55:43 +00:00

Make avcodec the default encoder again, thanks Michael

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5545 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
mswitch 2002-04-10 06:55:03 +00:00
parent ee10c93a02
commit 419c9c4ea6

View File

@ -136,10 +136,10 @@ enum MpegCodec {
MPG_CODEC_FAME
};
#if defined(USE_LIBFAME)
static int mpeg_codec = MPG_CODEC_FAME;
#elif defined(USE_LIBAVCODEC)
#if defined(USE_LIBAVCODEC)
static int mpeg_codec = MPG_CODEC_AVCODEC;
#elif defined(USE_LIBFAME)
static int mpeg_codec = MPG_CODEC_FAME;
#else
static int mpeg_codec = MPG_CODEC_NONE;
#endif