Commit b35477a2 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Use av_get_bits_per_sample() for mBitsPerChannel in caf.

parent 7747a091
...@@ -139,7 +139,7 @@ static int caf_write_header(AVFormatContext *s) ...@@ -139,7 +139,7 @@ static int caf_write_header(AVFormatContext *s)
avio_wb32(pb, enc->block_align); //< mBytesPerPacket avio_wb32(pb, enc->block_align); //< mBytesPerPacket
avio_wb32(pb, samples_per_packet(enc->codec_id, enc->channels)); //< mFramesPerPacket avio_wb32(pb, samples_per_packet(enc->codec_id, enc->channels)); //< mFramesPerPacket
avio_wb32(pb, enc->channels); //< mChannelsPerFrame avio_wb32(pb, enc->channels); //< mChannelsPerFrame
avio_wb32(pb, enc->bits_per_coded_sample); //< mBitsPerChannel avio_wb32(pb, av_get_bits_per_sample(enc->codec_id)); //< mBitsPerChannel
if (enc->channel_layout) { if (enc->channel_layout) {
ffio_wfourcc(pb, "chan"); ffio_wfourcc(pb, "chan");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment