[Ffmpeg-cvslog] r8195 - trunk/ffplay.c
gpoirier
subversion
Fri Mar 2 14:26:42 CET 2007
Author: gpoirier
Date: Fri Mar 2 14:26:42 2007
New Revision: 8195
Modified:
trunk/ffplay.c
Log:
Fix A/V sync error in ffplay with wmv3/wmav2 medias
patch by Ryan Martell %rdm4 A martellventures P com%
Original thread:
Date: Feb 28, 2007 10:28 PM
Subject: [Ffmpeg-devel] [Patch] Fix A/V sync error in ffplay....
Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c (original)
+++ trunk/ffplay.c Fri Mar 2 14:26:42 2007
@@ -1617,7 +1617,7 @@ static int audio_decode_frame(VideoState
cannot have a precise information */
static int audio_write_get_buf_size(VideoState *is)
{
- return is->audio_hw_buf_size - is->audio_buf_index;
+ return is->audio_buf_size - is->audio_buf_index;
}
More information about the ffmpeg-cvslog
mailing list