diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2002-04-02 19:29:09 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2002-04-02 19:29:09 +0000 |
commit | 69f6ab2b002fe21e719b8e386db39ddec31facbb (patch) | |
tree | d4d89a1c5b4cdbb1a2ae52e86e97464eff5f6bd0 /src/xine-engine/video_out.c | |
parent | 05feff063271ba86613ef88aa16dad8967ec7349 (diff) | |
download | xine-lib-69f6ab2b002fe21e719b8e386db39ddec31facbb.tar.gz xine-lib-69f6ab2b002fe21e719b8e386db39ddec31facbb.tar.bz2 |
- Undo my previous patch, it might (at least in theory) cause problems
when freeing frames after closing the video output driver
- New patch to fix the frame leak in the Xv driver only
CVS patchset: 1667
CVS date: 2002/04/02 19:29:09
Diffstat (limited to 'src/xine-engine/video_out.c')
-rw-r--r-- | src/xine-engine/video_out.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index 2536b8e87..b090cddeb 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.91 2002/04/01 22:19:28 esnel Exp $ + * $Id: video_out.c,v 1.92 2002/04/02 19:29:09 esnel Exp $ * * frame allocation / queuing / scheduling / output functions */ @@ -849,10 +849,10 @@ static void vo_exit (vo_instance_t *this_gen) { pthread_join (this->video_thread, &p); } - this->driver->exit (this->driver); - vo_free_img_buffers (this_gen); + this->driver->exit (this->driver); + #ifdef LOG printf ("video_out: vo_exit... done\n"); #endif |