# HG changeset patch # User arpi # Date 1020689102 0 # Node ID fa5d0ec520319221e5a2b68bfdce73f5b9856a85 # Parent dcc6dde0d1682f0baf6d82001fbb0158f0332325 time to make libavcodec as default diff -r dcc6dde0d168 -r fa5d0ec52031 mencoder.c --- a/mencoder.c Mon May 06 00:37:52 2002 +0000 +++ b/mencoder.c Mon May 06 12:45:02 2002 +0000 @@ -104,17 +104,16 @@ #endif int out_video_codec= +#ifdef USE_LIBAVCODEC + VCODEC_LIBAVCODEC; +#else #ifdef HAVE_DIVX4ENCORE VCODEC_DIVX4; #else -#ifdef USE_LIBAVCODEC - VCODEC_LIBAVCODEC; -#else VCODEC_COPY; #endif #endif - // audio stream skip/resync functions requires only for seeking. // (they should be implemented in the audio codec layer) //void skip_audio_frame(sh_audio_t *sh_audio){} @@ -144,8 +143,6 @@ int force_srate=0; char* out_filename="test.avi"; -char* mp3_filename=NULL; -char* ac3_filename=NULL; char *force_fourcc=NULL;