ffmpeg | branch: master | Marton Balint <[email protected]> | Sat Aug 8 13:23:14 2015 +0200| [8628b06b317ee53c09a062c5357343f73a5ea08e] | committer: Marton Balint
ffplay: increase MIN_FRAMES to 25 FFplay was using a 5 frame packet buffer, this is not much (e.g. 200 ms for 25fps video), when HLS is requesting a new segment via HTTP, it may take longer for the request to complete. Should fix ticket #4720. Reviewed-by: Michael Niedermayer <[email protected]> Signed-off-by: Marton Balint <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8628b06b317ee53c09a062c5357343f73a5ea08e --- ffplay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffplay.c b/ffplay.c index 317e273..cde88db 100644 --- a/ffplay.c +++ b/ffplay.c @@ -66,7 +66,7 @@ const char program_name[] = "ffplay"; const int program_birth_year = 2003; #define MAX_QUEUE_SIZE (15 * 1024 * 1024) -#define MIN_FRAMES 5 +#define MIN_FRAMES 25 #define EXTERNAL_CLOCK_MIN_FRAMES 2 #define EXTERNAL_CLOCK_MAX_FRAMES 10 _______________________________________________ ffmpeg-cvslog mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
