diff options
author | Stefan Holst <holstsn@users.sourceforge.net> | 2005-02-14 14:04:55 +0000 |
---|---|---|
committer | Stefan Holst <holstsn@users.sourceforge.net> | 2005-02-14 14:04:55 +0000 |
commit | 1b927327ff96a1d6fa82ff892c6d442cdb57c02c (patch) | |
tree | 36a90db34f73fe5875135bb8ddcd34895a8f68c8 /src | |
parent | 616559cc2402561edd646168a70cd68fb6a93236 (diff) | |
download | xine-lib-1b927327ff96a1d6fa82ff892c6d442cdb57c02c.tar.gz xine-lib-1b927327ff96a1d6fa82ff892c6d442cdb57c02c.tar.bz2 |
don't copy first-frame flag in duplicate_frame
CVS patchset: 7417
CVS date: 2005/02/14 14:04:55
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/video_out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index ed4f41940..7e3ce577c 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out.c,v 1.217 2005/02/13 22:23:41 holstsn Exp $ + * $Id: video_out.c,v 1.218 2005/02/14 14:04:55 holstsn Exp $ * * frame allocation / queuing / scheduling / output functions */ @@ -669,7 +669,7 @@ static vo_frame_t * duplicate_frame( vos_t *this, vo_frame_t *img ) { dupl->proc_called = 0; dupl->duration = img->duration; - dupl->is_first = img->is_first; + dupl->is_first = 0; dupl->stream = NULL; memcpy( dupl->extra_info, img->extra_info, sizeof(extra_info_t) ); |