| Index: remoting/codec/video_decoder_vp8_unittest.cc
|
| diff --git a/remoting/codec/video_decoder_vp8_unittest.cc b/remoting/codec/video_decoder_vp8_unittest.cc
|
| index 472dda882c69776d1462604346497a3bc3dcc31a..2553dfa5f13c77dcf601d106c6cacd3ee56316da 100644
|
| --- a/remoting/codec/video_decoder_vp8_unittest.cc
|
| +++ b/remoting/codec/video_decoder_vp8_unittest.cc
|
| @@ -11,10 +11,10 @@
|
|
|
| namespace remoting {
|
|
|
| -class DecoderVp8Test : public testing::Test {
|
| +class VideoDecoderVp8Test : public testing::Test {
|
| protected:
|
| EncoderVp8 encoder_;
|
| - DecoderVp8 decoder_;
|
| + VideoDecoderVp8 decoder_;
|
|
|
| void TestGradient(int screen_width, int screen_height,
|
| int view_width, int view_height,
|
| @@ -26,49 +26,49 @@ class DecoderVp8Test : public testing::Test {
|
| }
|
| };
|
|
|
| -TEST_F(DecoderVp8Test, EncodeAndDecode) {
|
| +TEST_F(VideoDecoderVp8Test, EncodeAndDecode) {
|
| TestEncoderDecoder(&encoder_, &decoder_, false);
|
| }
|
|
|
| // Check that encoding and decoding a particular frame doesn't change the
|
| // frame too much. The frame used is a gradient, which does not contain sharp
|
| // transitions, so encoding lossiness should not be too high.
|
| -TEST_F(DecoderVp8Test, Gradient) {
|
| +TEST_F(VideoDecoderVp8Test, Gradient) {
|
| TestGradient(320, 240, 320, 240, 0.03, 0.01);
|
| }
|
|
|
| -TEST_F(DecoderVp8Test, GradientScaleUpEvenToEven) {
|
| +TEST_F(VideoDecoderVp8Test, GradientScaleUpEvenToEven) {
|
| TestGradient(320, 240, 640, 480, 0.04, 0.02);
|
| }
|
|
|
| -TEST_F(DecoderVp8Test, GradientScaleUpEvenToOdd) {
|
| +TEST_F(VideoDecoderVp8Test, GradientScaleUpEvenToOdd) {
|
| TestGradient(320, 240, 641, 481, 0.04, 0.02);
|
| }
|
|
|
| -TEST_F(DecoderVp8Test, GradientScaleUpOddToEven) {
|
| +TEST_F(VideoDecoderVp8Test, GradientScaleUpOddToEven) {
|
| TestGradient(321, 241, 640, 480, 0.04, 0.02);
|
| }
|
|
|
| -TEST_F(DecoderVp8Test, GradientScaleUpOddToOdd) {
|
| +TEST_F(VideoDecoderVp8Test, GradientScaleUpOddToOdd) {
|
| TestGradient(321, 241, 641, 481, 0.04, 0.02);
|
| }
|
|
|
| -TEST_F(DecoderVp8Test, GradientScaleDownEvenToEven) {
|
| +TEST_F(VideoDecoderVp8Test, GradientScaleDownEvenToEven) {
|
| TestGradient(320, 240, 160, 120, 0.04, 0.02);
|
| }
|
|
|
| -TEST_F(DecoderVp8Test, GradientScaleDownEvenToOdd) {
|
| +TEST_F(VideoDecoderVp8Test, GradientScaleDownEvenToOdd) {
|
| // The maximum error is non-deterministic. The mean error is not too high,
|
| // which suggests that the problem is restricted to a small area of the output
|
| // image. See crbug.com/139437 and crbug.com/139633.
|
| TestGradient(320, 240, 161, 121, 1.0, 0.02);
|
| }
|
|
|
| -TEST_F(DecoderVp8Test, GradientScaleDownOddToEven) {
|
| +TEST_F(VideoDecoderVp8Test, GradientScaleDownOddToEven) {
|
| TestGradient(321, 241, 160, 120, 0.04, 0.02);
|
| }
|
|
|
| -TEST_F(DecoderVp8Test, GradientScaleDownOddToOdd) {
|
| +TEST_F(VideoDecoderVp8Test, GradientScaleDownOddToOdd) {
|
| TestGradient(321, 241, 161, 121, 0.04, 0.02);
|
| }
|
|
|
|
|