[FFmpeg-cvslog] r10514 - trunk/ffserver.c
lucabe
subversion
Mon Sep 17 09:50:05 CEST 2007
Author: lucabe
Date: Mon Sep 17 09:50:04 2007
New Revision: 10514
Log:
Use AVFMT_FLAG_GENPTS for the input file (the RTP output format needs all the
PTSs to be set)
Modified:
trunk/ffserver.c
Modified: trunk/ffserver.c
==============================================================================
--- trunk/ffserver.c (original)
+++ trunk/ffserver.c Mon Sep 17 09:50:04 2007
@@ -1917,6 +1917,7 @@ static int open_input_stream(HTTPContext
http_log("%s not found", input_filename);
return -1;
}
+ s->flags |= AVFMT_FLAG_GENPTS;
c->fmt_in = s;
av_find_stream_info(c->fmt_in);
More information about the ffmpeg-cvslog
mailing list