diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2003-08-12 00:43:48 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2003-08-12 00:43:48 +0000 |
commit | 6fa3d8cc7c60e9c117df209fc77df2fcb4e3e299 (patch) | |
tree | ac9d379c9ed8416dd504ee9ab534c49323a729ef | |
parent | 757e8717632a95ac1e1c9d9abbc5404f0260f27f (diff) | |
download | xine-lib-6fa3d8cc7c60e9c117df209fc77df2fcb4e3e299.tar.gz xine-lib-6fa3d8cc7c60e9c117df209fc77df2fcb4e3e299.tar.bz2 |
Mistakenly disabled some code I shouldn't have in the previous revision. Now fixed.
CVS patchset: 5274
CVS date: 2003/08/12 00:43:48
-rw-r--r-- | src/video_out/video_out_pgx64.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/video_out/video_out_pgx64.c b/src/video_out/video_out_pgx64.c index 56b6adef7..a8cd38993 100644 --- a/src/video_out/video_out_pgx64.c +++ b/src/video_out/video_out_pgx64.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_pgx64.c,v 1.32 2003/08/11 22:19:33 komadori Exp $ + * $Id: video_out_pgx64.c,v 1.33 2003/08/12 00:43:48 komadori Exp $ * * video_out_pgx64.c, Sun PGX64/PGX24 output plugin for xine * @@ -360,12 +360,10 @@ static void pgx64_display_frame(pgx64_driver_t *this, pgx64_frame_t *frame) this->buf_num = 1 - this->buf_num; } - /*if ((this->current != NULL) && (this->current != frame)) { + if ((this->current != NULL) && (this->current != frame)) { frame->vo_frame.free(&this->current->vo_frame); } - this->current = frame;*/ - - frame->vo_frame.free(&frame->vo_frame); + this->current = frame; } static void pgx64_overlay_blend(pgx64_driver_t *this, pgx64_frame_t *frame, vo_overlay_t *overlay) |