summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authoriive <iive@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-09 13:07:18 +0000
committeriive <iive@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-09 13:07:18 +0000
commite5b4b495c38856a740dd2fcbbc030b87218eb8fc (patch)
tree8b1e96cdd6ca5f0a49ef7488d1eddc9317bfd15e /mencoder.c
parentf218ab594dcb3e0bc28d5e917fbb74dd83115741 (diff)
downloadmpv-e5b4b495c38856a740dd2fcbbc030b87218eb8fc.tar.bz2
mpv-e5b4b495c38856a740dd2fcbbc030b87218eb8fc.tar.xz
add new control message, that is send after end of stream, to flush all remaining frames in the video system
required by xvid4 encoder. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13594 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mencoder.c')
-rw-r--r--mencoder.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/mencoder.c b/mencoder.c
index 5cdc5104fc..d1cde38f53 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -1573,6 +1573,14 @@ if(sh_audio && !demuxer2){
} // while(!at_eof)
+/* Emit the remaining frames in the video system */
+/*TODO emit frmaes delayed by decoder lag*/
+ if(sh_video && sh_video->vfilter){
+ mp_msg(MSGT_FIXME, MSGL_FIXME, "\nFlushing video frames\n");
+ ((vf_instance_t *)sh_video->vfilter)->control(sh_video->vfilter,
+ VFCTRL_FLUSH_FRAMES, 0);
+ }
+
#ifdef HAVE_MP3LAME
// fixup CBR mp3 audio header:
if(sh_audio && mux_a->codec==ACODEC_VBRMP3 && !lame_param_vbr){