Bug 1043808: remove assertions that video is an even number of pixels r=pkerr

This commit is contained in:
Randell Jesup 2014-07-30 17:35:12 -04:00
Родитель eafd2c4f9e
Коммит 03e5a05262
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -1071,10 +1071,6 @@ WebrtcVideoConduit::SendVideoFrame(unsigned char* video_frame,
return kMediaConduitSessionNotInited;
}
// enforce even width/height (paranoia)
MOZ_ASSERT(!(width & 1));
MOZ_ASSERT(!(height & 1));
if (!SelectSendResolution(width, height))
{
return kMediaConduitCaptureError;