author | simon <simon> | 2002-12-11 12:56:46 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-11 12:56:46 (UTC) |
commit | aa9623e53bd86c2645103ebacc81262f372b73d7 (patch) (side-by-side diff) | |
tree | d24f0b4b3a5e5fe2f13bb011fbeff0cd53f1955a | |
parent | 9b8e5d7c225ac2dd399e392d57e3d19348412e1a (diff) | |
download | opie-aa9623e53bd86c2645103ebacc81262f372b73d7.zip opie-aa9623e53bd86c2645103ebacc81262f372b73d7.tar.gz opie-aa9623e53bd86c2645103ebacc81262f372b73d7.tar.bz2 |
- oops, do the right cast in the gamma set method
-rw-r--r-- | noncore/multimedia/opieplayer2/nullvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/nullvideo.c b/noncore/multimedia/opieplayer2/nullvideo.c index 1ebb854..c988854 100644 --- a/noncore/multimedia/opieplayer2/nullvideo.c +++ b/noncore/multimedia/opieplayer2/nullvideo.c @@ -526,25 +526,25 @@ void null_set_show_video( xine_vo_driver_t* self, int show ) { int null_is_fullscreen( xine_vo_driver_t* self ){ return ((null_driver_t*)self->driver)->m_video_fullscreen; } void null_set_fullscreen( xine_vo_driver_t* self, int screen ){ ((null_driver_t*)self->driver)->m_video_fullscreen = screen; } int null_is_scaling( xine_vo_driver_t* self ){ return ((null_driver_t*)self->driver)->m_is_scaling; } void null_set_videoGamma( xine_vo_driver_t* self , int value ) { ((null_driver_t*) self->driver) ->yuv2rgb_gamma = value; - ((null_driver_t*) self->driver) ->yuv2rgb_factory->set_gamma( ((null_driver_t*) self) ->yuv2rgb_factory, value ); + ((null_driver_t*) self->driver) ->yuv2rgb_factory->set_gamma( ((null_driver_t*) self->driver) ->yuv2rgb_factory, value ); } void null_set_scaling( xine_vo_driver_t* self, int scale ) { ((null_driver_t*)self->driver)->m_is_scaling = scale; } void null_set_gui_width( xine_vo_driver_t* self, int width ) { ((null_driver_t*)self->driver)->gui_width = width; } void null_set_gui_height( xine_vo_driver_t* self, int height ) { ((null_driver_t*)self->driver)->gui_height = height; } |