[FFmpeg-devel] BFI Demuxer
Mike Melanson
mike
Tue Apr 1 18:30:37 CEST 2008
Ivo wrote:
> On Tuesday 01 April 2008 13:09, Sisir Koppaka wrote:
>>>> + /*Improving colour depth */
>>>> + for (i = 0; i < vstream->codec->extradata_size; i++)
>>>> + ((uint8_t *) vstream->codec->extradata)[i] =
>>>> + ((uint8_t *) vstream->codec->extradata)[i] << 2;
>>> senseless casts, and the comment makes no sense.
>> I've replaced the above comment with this one - is this ok?
>> /* Converts the given 6-bit palette values(0-63) to 8-bit values(0-255)
>> to improve the contrast. */
>
> What Michael said, plus the conversion is not right. For example:
>
> 6-bit max = 0x3f, 8-bit max = 0xff
>
> but with your conversion routine 8-bit max = 0xfc.
>
> v = v<<2 | v>>4
>
> is more accurate.
We should have a general utility function to run through 256 palette
entries and make this adjustment.
--
-Mike Melanson
More information about the ffmpeg-devel
mailing list