[MPlayer-dev-eng] Another non-working MEncoder here - logs included

Oded Shimon ods15 at ods15.dyndns.org
Wed Mar 23 23:46:58 CET 2005


On Wed, Mar 23, 2005 at 11:41:21PM +0100, Hans-Carl Oberdalhoff wrote:
> Am Mittwoch, 23. M?rz 2005 22:25 schrieb Guillaume POIRIER:
> > I'd suggest the workaround for now: disable edl support with
> > --disable-edl while running ./configure
>
> This does help. Thanks!

Try this patch please, tell me if it fixes the problem.

- ods15
-------------- next part --------------
Index: mencoder.c
===================================================================
RCS file: /cvsroot/mplayer/main/mencoder.c,v
retrieving revision 1.275
diff -u -r1.275 mencoder.c
--- mencoder.c	19 Mar 2005 20:55:51 -0000	1.275
+++ mencoder.c	23 Mar 2005 22:46:28 -0000
@@ -1330,12 +1330,13 @@
 if (curfile && end_at_type == END_AT_TIME) end_at += mux_v->timer;
 
 #ifdef USE_EDL
+if (edl_records) free_edl(edl_records);
+next_edl_record = edl_records = NULL;
+edl_muted = 0;
+edl_seeking = 1;
+edl_skip = -1;
 if (edl_filename) {
-    if (edl_records) free_edl(edl_records);
     next_edl_record = edl_records = edl_parse_file();
-    edl_muted = 0;
-    edl_seeking = 1;
-    edl_skip = -1;
 }
 #endif
 


More information about the MPlayer-dev-eng mailing list