Commit f40faf69 authored by Laurent Aimar's avatar Laurent Aimar

* render: int i;; int j; <-- gcc < 3 doesn't like ';;'

parent abcbbf63
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* by DVD subtitles. * by DVD subtitles.
***************************************************************************** *****************************************************************************
* Copyright (C) 2003, 2004 VideoLAN * Copyright (C) 2003, 2004 VideoLAN
* $Id: render.c,v 1.28 2004/02/01 05:15:22 rocky Exp $ * $Id: render.c,v 1.29 2004/02/02 12:53:20 fenrir Exp $
* *
* Author: Rocky Bernstein <rocky@panix.com> * Author: Rocky Bernstein <rocky@panix.com>
* based on code from: * based on code from:
...@@ -379,7 +379,7 @@ static void BlendYUY2( vout_thread_t *p_vout, picture_t *p_pic, ...@@ -379,7 +379,7 @@ static void BlendYUY2( vout_thread_t *p_vout, picture_t *p_pic,
uint8_t *p_pixel_base; uint8_t *p_pixel_base;
/* This is the where the subtitle pixels come from */ /* This is the where the subtitle pixels come from */
ogt_yuvt_t *p_source = (ogt_yuvt_t *) p_spu->p_sys->p_data;; ogt_yuvt_t *p_source = (ogt_yuvt_t *) p_spu->p_sys->p_data;
ogt_yuvt_t *p_source_end = (ogt_yuvt_t *)p_spu->p_sys->p_data + ogt_yuvt_t *p_source_end = (ogt_yuvt_t *)p_spu->p_sys->p_data +
(p_spu->i_width * p_spu->i_height); (p_spu->i_width * p_spu->i_height);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment