ffmpeg_filter: remove redundant null ptr check

Fixes: CID1338331

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2015-11-11 01:51:52 +01:00
parent 1b539fbfe3
commit 8f3a960353
1 changed files with 1 additions and 2 deletions

View File

@ -1053,8 +1053,7 @@ int configure_filtergraph(FilterGraph *fg)
avcodec_get_name(ost->st->codec->codec_id), ost->file_index, ost->index);
return AVERROR(EINVAL);
}
if (ost &&
ost->enc->type == AVMEDIA_TYPE_AUDIO &&
if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
!(ost->enc->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE))
av_buffersink_set_frame_size(ost->filter->filter,
ost->enc_ctx->frame_size);