Adds a test to make sure encoder parms get to decoder.

This is meant as a framework for testing that encode parms make it
through to the decoder.

Change-Id: Idb86ee3668b45b4e73c23c6e4daef94b0650b786
This commit is contained in:
Jim Bankoski
2014-12-11 17:34:32 -08:00
parent be7a285820
commit a0d9a9dd51
4 changed files with 200 additions and 0 deletions

View File

@@ -97,6 +97,10 @@ class Decoder {
bool IsVP8() const;
vpx_codec_ctx_t * GetDecoder() {
return &decoder_;
}
protected:
virtual vpx_codec_iface_t* CodecInterface() const = 0;