Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: source/libvpx/test/vp9_encoder_parms_get_to_decoder.cc

Issue 1302353004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/libvpx/test/vp9_arf_freq_test.cc ('k') | source/libvpx/test/vp9_end_to_end_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/test/vp9_encoder_parms_get_to_decoder.cc
diff --git a/source/libvpx/test/vp9_encoder_parms_get_to_decoder.cc b/source/libvpx/test/vp9_encoder_parms_get_to_decoder.cc
index 2049466a0ce532a36a9d27cf813faf889722be4d..a02070e43a6fb8b32b957da30bd7b5a638287902 100644
--- a/source/libvpx/test/vp9_encoder_parms_get_to_decoder.cc
+++ b/source/libvpx/test/vp9_encoder_parms_get_to_decoder.cc
@@ -86,17 +86,17 @@ int is_extension_y4m(const char *filename) {
return !strcmp(dot, ".y4m");
}
-class Vp9EncoderParmsGetToDecoder
+class VpxEncoderParmsGetToDecoder
: public ::libvpx_test::EncoderTest,
public ::libvpx_test::CodecTestWith2Params<EncodeParameters, \
EncodePerfTestVideo> {
protected:
- Vp9EncoderParmsGetToDecoder()
+ VpxEncoderParmsGetToDecoder()
: EncoderTest(GET_PARAM(0)),
encode_parms(GET_PARAM(1)) {
}
- virtual ~Vp9EncoderParmsGetToDecoder() {}
+ virtual ~VpxEncoderParmsGetToDecoder() {}
virtual void SetUp() {
InitializeConfig();
@@ -166,7 +166,7 @@ class Vp9EncoderParmsGetToDecoder
// TODO(hkuang): This test conflicts with frame parallel decode. So disable it
// for now until fix.
-TEST_P(Vp9EncoderParmsGetToDecoder, DISABLED_BitstreamParms) {
+TEST_P(VpxEncoderParmsGetToDecoder, DISABLED_BitstreamParms) {
init_flags_ = VPX_CODEC_USE_PSNR;
libvpx_test::VideoSource *video;
@@ -187,8 +187,12 @@ TEST_P(Vp9EncoderParmsGetToDecoder, DISABLED_BitstreamParms) {
}
VP9_INSTANTIATE_TEST_CASE(
- Vp9EncoderParmsGetToDecoder,
+ VpxEncoderParmsGetToDecoder,
::testing::ValuesIn(kVP9EncodeParameterSet),
::testing::ValuesIn(kVP9EncodePerfTestVectors));
+VP10_INSTANTIATE_TEST_CASE(
+ VpxEncoderParmsGetToDecoder,
+ ::testing::ValuesIn(kVP9EncodeParameterSet),
+ ::testing::ValuesIn(kVP9EncodePerfTestVectors));
} // namespace
« no previous file with comments | « source/libvpx/test/vp9_arf_freq_test.cc ('k') | source/libvpx/test/vp9_end_to_end_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698