am 1a6e6d55: am 6df89fde: Merge "Ignore errors returned from native_window_set_crop." into honeycomb

* commit '1a6e6d55b8dd33b3bd2b52849d39ef96b556b52f':
  Ignore errors returned from native_window_set_crop.
This commit is contained in:
Andreas Huber
2011-01-26 12:12:28 -08:00
committed by Android Git Automerger

View File

@@ -2203,8 +2203,9 @@ void OMXCodec::onEvent(OMX_EVENTTYPE event, OMX_U32 data1, OMX_U32 data2) {
crop.right = right;
crop.bottom = bottom;
CHECK_EQ(0, native_window_set_crop(
mNativeWindow.get(), &crop));
// We'll ignore any errors here, if the surface is
// already invalid, we'll know soon enough.
native_window_set_crop(mNativeWindow.get(), &crop);
}
}
}