Commit 9d10d3a4 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avformat/aptxdec: Don't set AVCodecParameters.frame_size

This field was misunderstood: It gives the number of samples
in a packet, not the number of bytes. Its usage was wrong for APTX HD.
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent c0d483ce
......@@ -58,7 +58,6 @@ static int aptx_read_header(AVFormatContext *s)
st->codecpar->codec_id = AV_CODEC_ID_APTX;
st->codecpar->bits_per_coded_sample = 4;
st->codecpar->block_align = APTX_BLOCK_SIZE;
st->codecpar->frame_size = APTX_PACKET_SIZE;
return 0;
}
......@@ -70,7 +69,6 @@ static int aptx_hd_read_header(AVFormatContext *s)
st->codecpar->codec_id = AV_CODEC_ID_APTX_HD;
st->codecpar->bits_per_coded_sample = 6;
st->codecpar->block_align = APTX_HD_BLOCK_SIZE;
st->codecpar->frame_size = APTX_HD_PACKET_SIZE;
return 0;
}
......
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