win32: changed avi framerate very slightly because it seems to have less audio desync. (old one wasn't so bad, anyway...)

This commit is contained in:
gocha 2009-06-04 15:06:36 +00:00
parent b3a1dde141
commit 20c2734317
1 changed files with 2 additions and 2 deletions

View File

@ -231,8 +231,8 @@ static int avi_open(const char* filename, const BITMAPINFOHEADER* pbmih, const W
memset(&avi_file->avi_video_header, 0, sizeof(AVISTREAMINFO));
avi_file->avi_video_header.fccType = streamtypeVIDEO;
avi_file->avi_video_header.dwScale = 65536*256; // 6*355*263;
avi_file->avi_video_header.dwRate = (int)(59.8261*65536*256); // 33513982;
avi_file->avi_video_header.dwScale = 6*355*263;
avi_file->avi_video_header.dwRate = 33513982;
avi_file->avi_video_header.dwSuggestedBufferSize = avi_file->bitmap_format.biSizeImage;
if(FAILED(AVIFileCreateStream(avi_file->avi_file, &avi_file->streams[VIDEO_STREAM], &avi_file->avi_video_header)))
break;