[vlc-devel] commit: aa video output: fix compilation warning. ( Rémi Duraffort )
git version control
git at videolan.org
Wed May 13 18:38:41 CEST 2009
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Wed May 13 18:34:43 2009 +0200| [cb7a32f41931ef71ddd9b98c3c0d6dd9d0372451] | committer: Rémi Duraffort
aa video output: fix compilation warning.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cb7a32f41931ef71ddd9b98c3c0d6dd9d0372451
---
modules/video_output/aa.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/video_output/aa.c b/modules/video_output/aa.c
index 0e25685..9777707 100644
--- a/modules/video_output/aa.c
+++ b/modules/video_output/aa.c
@@ -231,7 +231,7 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic )
static void Display( vout_thread_t *p_vout, picture_t *p_pic )
{
/* No need to do anything, the fake direct buffers stay as they are */
- int i_width, i_height, i_x, i_y;
+ unsigned int i_width, i_height, i_x, i_y;
vout_PlacePicture( p_vout, p_vout->p_sys->i_width, p_vout->p_sys->i_height,
&i_x, &i_y, &i_width, &i_height );
More information about the vlc-devel
mailing list