Add VP9 codec to VCM and vie_auto_test.
Include VP9 tests in videoprocessor_integrationtests. Include end-to-end send/receiveVP9 test. Passes trybots. R=kjellander@webrtc.org, mflodman@webrtc.org, stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/29449004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7422 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -39,10 +39,15 @@ inline uint32_t MaskWord64ToUWord32(int64_t w64)
|
||||
#else
|
||||
#define VCM_VP8_IDX VCM_NO_CODEC_IDX
|
||||
#endif
|
||||
#ifdef VIDEOCODEC_H264
|
||||
#define VCM_H264_IDX (VCM_VP8_IDX + 1)
|
||||
#ifdef VIDEOCODEC_VP9
|
||||
#define VCM_VP9_IDX (VCM_VP8_IDX + 1)
|
||||
#else
|
||||
#define VCM_H264_IDX VCM_VP8_IDX
|
||||
#define VCM_VP9_IDX VCM_VP8_IDX
|
||||
#endif
|
||||
#ifdef VIDEOCODEC_H264
|
||||
#define VCM_H264_IDX (VCM_VP9_IDX + 1)
|
||||
#else
|
||||
#define VCM_H264_IDX VCM_VP9_IDX
|
||||
#endif
|
||||
#ifdef VIDEOCODEC_I420
|
||||
#define VCM_I420_IDX (VCM_H264_IDX + 1)
|
||||
|
Reference in New Issue
Block a user