mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
try to fill in missing bits_per_sample
Originally committed as revision 8043 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5b77a81a8d
commit
a185f52a86
@ -2018,6 +2018,9 @@ int av_find_stream_info(AVFormatContext *ic)
|
||||
st->r_frame_rate.den = st->time_base.num;
|
||||
}
|
||||
}
|
||||
}else if(st->codec->codec_type == CODEC_TYPE_AUDIO) {
|
||||
if(!st->codec->bits_per_sample)
|
||||
st->codec->bits_per_sample= av_get_bits_per_sample(st->codec->codec_id);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user