Fixes.h
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. // VirtualDub - Video processing and capture application
  2. // Copyright (C) 1998-2001 Avery Lee
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; either version 2 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with this program; if not, write to the Free Software
  16. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. #ifndef f_FIXES_H
  18. #define f_FIXES_H
  19. #include <windows.h>
  20. #include <vfw.h>
  21. // Those stupid idiots at Microsoft forgot to change this structure
  22. // when making the VfW headers for Win32.  The result is that the
  23. // AVIStreamHeader is correct in 16-bit Windows, but the 32-bit
  24. // headers define RECT as LONGs instead of SHORTs.  This creates
  25. // invalid AVI files!!!!
  26. typedef struct {
  27. SHORT left;
  28. SHORT top;
  29. SHORT right;
  30. SHORT bottom;
  31. } RECT16;
  32. typedef struct {
  33.     FOURCC fccType;
  34.     FOURCC fccHandler;
  35.     DWORD dwFlags;
  36.     WORD wPriority;
  37.     WORD wLanguage;
  38.     DWORD dwInitialFrames;
  39.     DWORD dwScale;
  40.     DWORD dwRate;
  41.     DWORD dwStart;
  42.     DWORD dwLength;
  43.     DWORD dwSuggestedBufferSize;
  44.     DWORD dwQuality;
  45.     DWORD dwSampleSize;
  46.     RECT16 rcFrame;
  47. } AVIStreamHeader_fixed;
  48. #endif