summaryrefslogtreecommitdiff
path: root/src/video_out/video_out_raw.c
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-05-03 19:57:27 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-05-03 19:57:27 +0200
commite9950f54d6935dbe60034c5a93686a5d0b45085f (patch)
tree40db396a5782a48e3f9c0ba79aec7fed277e1334 /src/video_out/video_out_raw.c
parentf9c0a01322ba253bbb5aae0ce0c994bcab0d8ee8 (diff)
downloadxine-lib-e9950f54d6935dbe60034c5a93686a5d0b45085f.tar.gz
xine-lib-e9950f54d6935dbe60034c5a93686a5d0b45085f.tar.bz2
Remove unused variables, as reported by GCC 4.3.
Diffstat (limited to 'src/video_out/video_out_raw.c')
-rw-r--r--src/video_out/video_out_raw.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/video_out/video_out_raw.c b/src/video_out/video_out_raw.c
index 17cbc1b4e..29d93d794 100644
--- a/src/video_out/video_out_raw.c
+++ b/src/video_out/video_out_raw.c
@@ -208,7 +208,6 @@ static void raw_overlay_blend (vo_driver_t *this_gen, vo_frame_t *frame_gen, vo_
static void raw_overlay_end (vo_driver_t *this_gen, vo_frame_t *vo_img)
{
raw_driver_t *this = (raw_driver_t *) this_gen;
- int i;
if ( !this->ovl_changed )
return;
@@ -322,7 +321,6 @@ static vo_frame_t *raw_alloc_frame (vo_driver_t *this_gen)
static void raw_update_frame_format (vo_driver_t *this_gen, vo_frame_t *frame_gen,
uint32_t width, uint32_t height, double ratio, int format, int flags)
{
- raw_driver_t *this = (raw_driver_t *) this_gen;
raw_frame_t *frame = (raw_frame_t *) frame_gen;
/* Check frame size and format and reallocate if necessary */
@@ -429,8 +427,6 @@ static void raw_display_frame (vo_driver_t *this_gen, vo_frame_t *frame_gen)
static int raw_get_property (vo_driver_t *this_gen, int property)
{
- raw_driver_t *this = (raw_driver_t *) this_gen;
-
switch (property) {
case VO_PROP_ASPECT_RATIO:
return XINE_VO_ASPECT_AUTO;