Merge "remove some TODOs"
This commit is contained in:
commit
664c21dd01
@ -448,10 +448,9 @@ static int FinishRow(VP8Decoder* const dec, VP8Io* const io) {
|
|||||||
if (y_end > io->crop_bottom) {
|
if (y_end > io->crop_bottom) {
|
||||||
y_end = io->crop_bottom; // make sure we don't overflow on last row.
|
y_end = io->crop_bottom; // make sure we don't overflow on last row.
|
||||||
}
|
}
|
||||||
|
// If dec->alpha_data_ is not NULL, we have some alpha plane present.
|
||||||
io->a = NULL;
|
io->a = NULL;
|
||||||
if (dec->alpha_data_ != NULL && y_start < y_end) {
|
if (dec->alpha_data_ != NULL && y_start < y_end) {
|
||||||
// TODO(skal): testing presence of alpha with dec->alpha_data_ is not a
|
|
||||||
// good idea.
|
|
||||||
io->a = VP8DecompressAlphaRows(dec, io, y_start, y_end - y_start);
|
io->a = VP8DecompressAlphaRows(dec, io, y_start, y_end - y_start);
|
||||||
if (io->a == NULL) {
|
if (io->a == NULL) {
|
||||||
return VP8SetError(dec, VP8_STATUS_BITSTREAM_ERROR,
|
return VP8SetError(dec, VP8_STATUS_BITSTREAM_ERROR,
|
||||||
@ -558,7 +557,6 @@ VP8StatusCode VP8EnterCritical(VP8Decoder* const dec, VP8Io* const io) {
|
|||||||
if (io->bypass_filtering) {
|
if (io->bypass_filtering) {
|
||||||
dec->filter_type_ = 0;
|
dec->filter_type_ = 0;
|
||||||
}
|
}
|
||||||
// TODO(skal): filter type / strength / sharpness forcing
|
|
||||||
|
|
||||||
// Define the area where we can skip in-loop filtering, in case of cropping.
|
// Define the area where we can skip in-loop filtering, in case of cropping.
|
||||||
//
|
//
|
||||||
@ -569,8 +567,6 @@ VP8StatusCode VP8EnterCritical(VP8Decoder* const dec, VP8Io* const io) {
|
|||||||
// Means: there's a dependency chain that goes all the way up to the
|
// Means: there's a dependency chain that goes all the way up to the
|
||||||
// top-left corner of the picture (MB #0). We must filter all the previous
|
// top-left corner of the picture (MB #0). We must filter all the previous
|
||||||
// macroblocks.
|
// macroblocks.
|
||||||
// TODO(skal): add an 'approximate_decoding' option, that won't produce
|
|
||||||
// a 1:1 bit-exactness for complex filtering?
|
|
||||||
{
|
{
|
||||||
const int extra_pixels = kFilterExtraRows[dec->filter_type_];
|
const int extra_pixels = kFilterExtraRows[dec->filter_type_];
|
||||||
if (dec->filter_type_ == 2) {
|
if (dec->filter_type_ == 2) {
|
||||||
|
Loading…
Reference in New Issue
Block a user