diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2007-10-08 17:46:45 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2007-10-08 17:46:45 +0000 |
commit | 1fe4050c0a299016b82bfdb70dd46d414a53a082 (patch) | |
tree | add3d2b8eac11170e06f70ef172f9f6bb066bf29 /gst/real/gstrealvideodec.c | |
parent | 4865b3bf146fe7392aed1a9e2df2efcb63d19ead (diff) | |
download | gst-plugins-bad-1fe4050c0a299016b82bfdb70dd46d414a53a082.tar.gz gst-plugins-bad-1fe4050c0a299016b82bfdb70dd46d414a53a082.tar.bz2 gst-plugins-bad-1fe4050c0a299016b82bfdb70dd46d414a53a082.zip |
gst/: Fix compiler warnings shown by Forte.
Original commit message from CVS:
* gst/librfb/rfbbuffer.c: (rfb_buffer_new_and_alloc):
* gst/librfb/rfbbuffer.h:
* gst/librfb/rfbdecoder.c: (rfb_socket_get_buffer):
* gst/mpegvideoparse/mpegvideoparse.c: (gst_mpegvideoparse_chain):
* gst/nsf/nes6502.c: (nes6502_execute):
* gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps):
* gst/real/gstrealvideodec.c: (open_library):
* gst/real/gstrealvideodec.h:
* gst/rtpmanager/gstrtpsession.c: (create_recv_rtp_sink),
(create_recv_rtcp_sink), (create_send_rtp_sink):
Fix compiler warnings shown by Forte.
Diffstat (limited to 'gst/real/gstrealvideodec.c')
-rw-r--r-- | gst/real/gstrealvideodec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/real/gstrealvideodec.c b/gst/real/gstrealvideodec.c index 75bc6bc1..be6292f1 100644 --- a/gst/real/gstrealvideodec.c +++ b/gst/real/gstrealvideodec.c @@ -461,10 +461,10 @@ codec_search_done: goto could_not_load; } - hooks->init = rv_init; - hooks->free = rv_free; - hooks->transform = rv_transform; - hooks->custom_message = rv_custom_msg; + hooks->init = (GstRealVideoDecInitFunc) rv_init; + hooks->free = (GstRealVideoDecFreeFunc) rv_free; + hooks->transform = (GstRealVideoDecTransformFunc) rv_transform; + hooks->custom_message = (GstRealVideoDecMessageFunc) rv_custom_msg; hooks->module = module; dec->error_count = 0; |