Approved by perkj.

Review URL: http://webrtc-codereview.appspot.com/20019

git-svn-id: http://webrtc.googlecode.com/svn/trunk@14 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
hellner@google.com 2011-05-30 14:31:59 +00:00
parent 6621b504ff
commit f2ac99e3cc

View File

@ -115,18 +115,6 @@ WebRtc_Word32 ModuleFileUtility::InitAviWriting(
AVISTREAMHEADER videoStreamHeader;
videoStreamHeader.fccType = AviFile::MakeFourCc('v', 'i', 'd', 's');
#ifdef VIDEOCODEC_H263
if (strncmp(videoCodecInst.plName, "H263", 7) == 0)
{
videoStreamHeader.fccHandler = AviFile::MakeFourCc('H','2','6','3');
}
#endif
#ifdef VIDEOCODEC_MPEG4
if (strncmp(videoCodecInst.plName, "MP4V-ES", 7) == 0)
{
videoStreamHeader.fccHandler = AviFile::MakeFourCc('M','4','S','2');
}
#endif
#ifdef VIDEOCODEC_I420
if (strncmp(videoCodecInst.plName, "I420", 7) == 0)
{