You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
avfilter/af_silenceremove: cover default case too
This commit is contained in:
@ -511,6 +511,8 @@ static int config_input(AVFilterLink *inlink)
|
||||
break;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
return AVERROR_BUG;
|
||||
}
|
||||
|
||||
return 0;
|
||||
@ -847,6 +849,8 @@ silence_copy_flush:
|
||||
case SILENCE_STOP:
|
||||
silence_stop:
|
||||
break;
|
||||
default:
|
||||
ret = AVERROR_BUG;
|
||||
}
|
||||
|
||||
av_frame_free(&in);
|
||||
|
Reference in New Issue
Block a user