diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-09-13 17:20:50 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-09-13 17:20:50 +0000 |
commit | 422e2c5e8e52c0d17d2852615830ce62d92e64f1 (patch) | |
tree | c4686d6eb690b78905e1da8004ac3721c60c0460 /src | |
parent | ebc75bd43d5643ce0b4e54d00e4c01ce1f16f3b8 (diff) | |
download | xine-lib-422e2c5e8e52c0d17d2852615830ce62d92e64f1.tar.gz xine-lib-422e2c5e8e52c0d17d2852615830ce62d92e64f1.tar.bz2 |
update from Darren Hart
CVS patchset: 5368
CVS date: 2003/09/13 17:20:50
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_stk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_out/video_out_stk.c b/src/video_out/video_out_stk.c index 3d99793f7..96f678dd6 100644 --- a/src/video_out/video_out_stk.c +++ b/src/video_out/video_out_stk.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_stk.c,v 1.2 2003/08/13 13:42:20 miguelfreitas Exp $ + * $Id: video_out_stk.c,v 1.3 2003/09/13 17:20:50 miguelfreitas Exp $ * * video_out_stk.c, Libstk Surface Video Driver * more info on Libstk at http://www.libstk.org @@ -187,14 +187,14 @@ static void stk_update_frame_format (vo_driver_t *this_gen, vo_frame_t *frame_ge printf ("video_out_stk: format YV12\n"); #endif frame->overlay = stk_surface_create_overlay(this->surface, width, height, - STK_YV12_OVERLAY); + STK_FORMAT_YV12); } else if (format == XINE_IMGFMT_YUY2) { #ifdef STK_LOG printf("video_out_stk: format YUY2\n"); #endif frame->overlay = stk_surface_create_overlay(this->surface, width, height, - STK_YUY2_OVERLAY); + STK_FORMAT_YUY2); } if (frame->overlay == NULL) |