summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-10-27 20:14:22 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-10-27 20:14:22 +0000
commit41951932f92714d71f4c7f896dc40ed6fb869c45 (patch)
tree1d496ede32004b1ec5a363d165a85dcfa6bdf563 /libmpdemux
parenteb0627a45c1b07f785cf0ca36a1531f00affd310 (diff)
downloadmpv-41951932f92714d71f4c7f896dc40ed6fb869c45.tar.bz2
mpv-41951932f92714d71f4c7f896dc40ed6fb869c45.tar.xz
removed silly #if 1
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24878 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/video.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libmpdemux/video.c b/libmpdemux/video.c
index 08ace79a04..16bb322be4 100644
--- a/libmpdemux/video.c
+++ b/libmpdemux/video.c
@@ -455,14 +455,12 @@ int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char**
*start=videobuffer; in_size=videobuf_len;
-#if 1
// get mpeg fps:
if(sh_video->fps!=picture.fps) if(!force_fps && !telecine){
mp_msg(MSGT_CPLAYER,MSGL_WARN,"Warning! FPS changed %5.3f -> %5.3f (%f) [%d] \n",sh_video->fps,picture.fps,sh_video->fps-picture.fps,picture.frame_rate_code);
sh_video->fps=picture.fps;
sh_video->frametime=1.0/picture.fps;
}
-#endif
// fix mpeg2 frametime:
frame_time=(picture.display_time)*0.01f;