diff options
author | jstebbins <[email protected]> | 2010-05-30 17:08:12 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-05-30 17:08:12 +0000 |
commit | e13377c88ac8e220993217b0725d9994344e40ae (patch) | |
tree | 12537540fec58e416d2d725685099b00f94def25 /libhb/hb.c | |
parent | f3d0c2e3986031403ccc52620833039da75920d6 (diff) |
fix compiler warnings in several libhb files
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3335 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.c')
-rw-r--r-- | libhb/hb.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libhb/hb.c b/libhb/hb.c index 2a0fff133..075bb81f1 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -1511,37 +1511,37 @@ hb_filter_object_t * hb_get_filter_object(int filter_id, const char * settings) { if (filter_id == HB_FILTER_ROTATE) { - hb_filter_rotate.settings = settings; + hb_filter_rotate.settings = (char*)settings; return &hb_filter_rotate; } if (filter_id == HB_FILTER_DETELECINE) { - hb_filter_detelecine.settings = settings; + hb_filter_detelecine.settings = (char*)settings; return &hb_filter_detelecine; } if (filter_id == HB_FILTER_DECOMB) { - hb_filter_decomb.settings = settings; + hb_filter_decomb.settings = (char*)settings; return &hb_filter_decomb; } if (filter_id == HB_FILTER_DEINTERLACE) { - hb_filter_deinterlace.settings = settings; + hb_filter_deinterlace.settings = (char*)settings; return &hb_filter_deinterlace; } if (filter_id == HB_FILTER_DEBLOCK) { - hb_filter_deblock.settings = settings; + hb_filter_deblock.settings = (char*)settings; return &hb_filter_deblock; } if (filter_id == HB_FILTER_DENOISE) { - hb_filter_denoise.settings = settings; + hb_filter_denoise.settings = (char*)settings; return &hb_filter_denoise; } return NULL; |