diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-02 13:38:51 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-02 13:38:51 +0000 |
commit | 1f27b0aceade68e9cc521ab49be177d5af0754cc (patch) | |
tree | 6456a87c50507085716769103ff9a99bba3d0bef /libvo | |
parent | c71f2478a2f5489b457010a0341623a15a4053ef (diff) |
Remove casts that are (no longer) necessary
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25241 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/vosub_vidix.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libvo/vosub_vidix.c b/libvo/vosub_vidix.c index d07241c353..537728406c 100644 --- a/libvo/vosub_vidix.c +++ b/libvo/vosub_vidix.c @@ -82,7 +82,7 @@ void vidix_term( void ) mp_msg(MSGT_VO,MSGL_DBG2, "vosub_vidix: vidix_term() was called\n"); } vidix_stop(); vdlClose(vidix_handler); -// ((vo_functions_t *)vo_server)->control=server_control; +// vo_server->control=server_control; } static uint32_t vidix_draw_slice_420(uint8_t *image[], int stride[], int w,int h,int x,int y) @@ -669,12 +669,12 @@ int vidix_preinit(const char *drvname,vo_functions_t *server) mp_msg(MSGT_VO,MSGL_INFO, MSGTR_LIBVO_SUB_VIDIX_Description, vidix_cap.name); mp_msg(MSGT_VO,MSGL_INFO, MSGTR_LIBVO_SUB_VIDIX_Author, vidix_cap.author); /* we are able to tune up this stuff depend on fourcc format */ - ((vo_functions_t *)server)->draw_slice=vidix_draw_slice; - ((vo_functions_t *)server)->draw_frame=vidix_draw_frame; - ((vo_functions_t *)server)->flip_page=vidix_flip_page; - ((vo_functions_t *)server)->draw_osd=vidix_draw_osd; -// server_control = ((vo_functions_t *)server)->control; -// ((vo_functions_t *)server)->control=vidix_control; + server->draw_slice=vidix_draw_slice; + server->draw_frame=vidix_draw_frame; + server->flip_page=vidix_flip_page; + server->draw_osd=vidix_draw_osd; +// server_control = server->control; +// server->control=vidix_control; vo_server = server; return 0; } |