This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
ffmpeg: Combine variable declaration and definition
Originally committed as revision 22537 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Alexander Strange
16 years ago
parent
47b229dbab
commit
d55065a29f
1 changed files
with
1 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-2
ffmpeg.c
+ 1
- 2
ffmpeg.c
View File
@@ -916,8 +916,7 @@ static void do_video_out(AVFormatContext *s,
*frame_size = 0;
if(video_sync_method){
double vdelta;
vdelta = sync_ipts - ost->sync_opts;
double vdelta = sync_ipts - ost->sync_opts;
//FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
if (vdelta < -1.1)
nb_frames = 0;
Write
Preview
Loading…
Cancel
Save