Updated libyuv revision to include mjpg and added mjpg to type conversion.

BUG=306
TEST=libyuv_unittests

Review URL: https://webrtc-codereview.appspot.com/407001

git-svn-id: http://webrtc.googlecode.com/svn/trunk@1749 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
mflodman@webrtc.org 2012-02-23 09:47:07 +00:00
parent 4f9e44f5c5
commit cb57f9ba95
2 changed files with 3 additions and 3 deletions

4
DEPS
View File

@ -69,10 +69,8 @@ deps = {
"trunk/third_party/yasm/binaries":
Var("chromium_trunk") + "/deps/third_party/yasm/binaries@74228",
# TODO(andrew): roll to 164 after fixing:
# http://code.google.com/p/webrtc/issues/detail?id=267
"trunk/third_party/libyuv":
(Var("googlecode_url") % "libyuv") + "/trunk@182",
(Var("googlecode_url") % "libyuv") + "/trunk@186",
# Used by tools/quality_tracking/dashboard and tools/python_charts
"trunk/third_party/google-visualization-python":

View File

@ -49,6 +49,8 @@ VideoType RawVideoTypeToCommonVideoVideoType(RawVideoType type) {
return kNV12;
case kVideoBGRA:
return kBGRA;
case kVideoMJPEG:
return kMJPG;
default:
assert(false);
}