Separates profile 2 into 2 profiles 2 and 3

Separates HBD profile int two profiles (2 and 3) consistent with the
highbitdepth branch. This patch is ported from the original highbitdepth
branch patch: https://gerrit.chromium.org/gerrit/#/c/70460/

Two of the invalid file tests needed to be updated.

Change-Id: I6a4acd2f7a60b1fb4cbcc8e0dad4eab4248431e3
This commit is contained in:
Deb Mukherjee
2014-07-15 01:54:29 -07:00
parent f349b071c6
commit c447a50aea
10 changed files with 145 additions and 89 deletions

View File

@@ -91,10 +91,12 @@ class Decoder {
&decoder_, cb_get, cb_release, user_priv);
}
const char* GetDecoderName() {
const char* GetDecoderName() const {
return vpx_codec_iface_name(CodecInterface());
}
bool IsVP8() const;
protected:
virtual vpx_codec_iface_t* CodecInterface() const = 0;
@@ -138,6 +140,11 @@ class DecoderTest {
virtual void DecompressedFrameHook(const vpx_image_t& img,
const unsigned int frame_number) {}
// Hook to be called on peek result
virtual void HandlePeekResult(Decoder* const decoder,
CompressedVideoSource *video,
const vpx_codec_err_t res_peek);
protected:
explicit DecoderTest(const CodecFactory *codec) : codec_(codec) {}