Merge commit '7f549b8338'
* commit '7f549b8338':
riff: don't overwrite bps from WAVEFORMATEX if EXTENSIBLE doesn't contain that data.
Only cosmetics, the change was already present.
Merged-by: Clément Bœsch <cboesch@gopro.com>
This commit is contained in:
commit
f475405237
1 changed files with 3 additions and 2 deletions
|
|
@ -61,10 +61,11 @@ enum AVCodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid)
|
|||
static void parse_waveformatex(AVIOContext *pb, AVCodecParameters *par)
|
||||
{
|
||||
ff_asf_guid subformat;
|
||||
int bps = avio_rl16(pb);
|
||||
int bps;
|
||||
|
||||
bps = avio_rl16(pb);
|
||||
if (bps)
|
||||
par->bits_per_coded_sample = bps;
|
||||
|
||||
par->channel_layout = avio_rl32(pb); /* dwChannelMask */
|
||||
|
||||
ff_get_guid(pb, &subformat);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue