From f6ec236298fae162aab7cf24a8c6ce5d84bd098b Mon Sep 17 00:00:00 2001 From: Ralph Giles Date: Fri, 19 Sep 2014 15:01:00 -0700 Subject: [PATCH] Bug 1067377 - Use VPX_ prefixed defines in WebMReader. r=kinetik --- content/media/webm/WebMReader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/media/webm/WebMReader.cpp b/content/media/webm/WebMReader.cpp index b5ef14f0a162..8d7c40948057 100644 --- a/content/media/webm/WebMReader.cpp +++ b/content/media/webm/WebMReader.cpp @@ -925,7 +925,7 @@ bool WebMReader::DecodeVideoFrame(bool &aKeyframeSkip, vpx_image_t *img; while ((img = vpx_codec_get_frame(&mVPX, &iter))) { - NS_ASSERTION(img->fmt == IMG_FMT_I420, "WebM image format is not I420"); + NS_ASSERTION(img->fmt == VPX_IMG_FMT_I420, "WebM image format is not I420"); // Chroma shifts are rounded down as per the decoding examples in the VP8 SDK VideoData::YCbCrBuffer b;