mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
fftools/ffmpeg: move decoder existence check to a more appropriate place
This commit is contained in:
parent
217b8757db
commit
b2a0a2e6f5
2 changed files with 7 additions and 7 deletions
|
|
@ -866,6 +866,13 @@ static int ist_use(InputStream *ist, int decoding_needed)
|
|||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
if (decoding_needed && !ist->dec) {
|
||||
av_log(ist, AV_LOG_ERROR,
|
||||
"Decoding requested, but no decoder found for: %s\n",
|
||||
avcodec_get_name(ist->par->codec_id));
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
if (ds->sch_idx_stream < 0) {
|
||||
ret = sch_add_demux_stream(d->sch, d->f.index);
|
||||
if (ret < 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue