diff options
author | Justin Ruggles | 2011-10-29 19:24:55 -0400 |
---|---|---|
committer | Justin Ruggles | 2011-11-11 14:06:14 -0500 |
commit | ca482ce4204fe198b2df1b41f3d15e883f3f1f0d (patch) | |
tree | a136f40e344149d046d33a66ac4c9ae7b132c755 /libavformat/vqf.c | |
parent | a8a6da4a0e059b2aab66627a96b63c3632c477c2 (diff) |
vqf: do not set bits_per_coded_sample for TwinVQ.
It is a lossy codec with varying quantization, so bits_per_coded_sample is
not applicable.
Diffstat (limited to 'libavformat/vqf.c')
-rw-r--r-- | libavformat/vqf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/vqf.c b/libavformat/vqf.c index 71dc1ae73d..4650a0b500 100644 --- a/libavformat/vqf.c +++ b/libavformat/vqf.c @@ -106,7 +106,6 @@ static int vqf_read_header(AVFormatContext *s, AVFormatParameters *ap) avio_skip(s->pb, len-12); st->codec->bit_rate = read_bitrate*1000; - st->codec->bits_per_coded_sample = 16; break; case MKTAG('N','A','M','E'): add_metadata(s, "title" , len, header_size); |