forked from FFmpeg/FFmpeg
avfilter/af_bs2b: Fix incompatible pointer type warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
89d2fc62db
commit
5fc4c00972
1 changed files with 4 additions and 4 deletions
|
@ -168,16 +168,16 @@ static int config_output(AVFilterLink *outlink)
|
|||
bs2b->filter = bs2b_cross_feed_u8;
|
||||
break;
|
||||
case AV_SAMPLE_FMT_S16:
|
||||
bs2b->filter = bs2b_cross_feed_s16;
|
||||
bs2b->filter = (void*)bs2b_cross_feed_s16;
|
||||
break;
|
||||
case AV_SAMPLE_FMT_S32:
|
||||
bs2b->filter = bs2b_cross_feed_s32;
|
||||
bs2b->filter = (void*)bs2b_cross_feed_s32;
|
||||
break;
|
||||
case AV_SAMPLE_FMT_FLT:
|
||||
bs2b->filter = bs2b_cross_feed_f;
|
||||
bs2b->filter = (void*)bs2b_cross_feed_f;
|
||||
break;
|
||||
case AV_SAMPLE_FMT_DBL:
|
||||
bs2b->filter = bs2b_cross_feed_d;
|
||||
bs2b->filter = (void*)bs2b_cross_feed_d;
|
||||
break;
|
||||
default:
|
||||
return AVERROR_BUG;
|
||||
|
|
Loading…
Add table
Reference in a new issue