/* * Copyright 1999 Marcus Meissner * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include #include "windef.h" #include "windows.h" #include "mmsystem.h" #include "vfw.h" int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE prev, LPSTR cmdline, int show) { unsigned int n; HRESULT hres; PAVIFILE avif; PAVISTREAM vids,auds; AVIFILEINFO afi; AVISTREAMINFO asi; AVIFileInit(); if (GetFileAttributes(cmdline) == INVALID_FILE_ATTRIBUTES) { fprintf(stderr,"Usage: aviinfo \n"); exit(1); } hres = AVIFileOpen(&avif,cmdline,OF_READ,NULL); if (hres) { fprintf(stderr,"AVIFileOpen: 0x%08lx\n",hres); exit(1); } hres = AVIFileInfo(avif,&afi,sizeof(afi)); if (hres) { fprintf(stderr,"AVIFileInfo: 0x%08lx\n",hres); exit(1); } fprintf(stderr,"AVI File Info:\n"); fprintf(stderr,"\tdwMaxBytesPerSec: %ld\n",afi.dwMaxBytesPerSec); #define FF(x) if (afi.dwFlags & AVIFILEINFO_##x) fprintf(stderr,#x","); fprintf(stderr,"\tdwFlags: 0x%lx (",afi.dwFlags); FF(HASINDEX);FF(MUSTUSEINDEX);FF(ISINTERLEAVED);FF(WASCAPTUREFILE); FF(COPYRIGHTED); fprintf(stderr,")\n"); #undef FF #define FF(x) if (afi.dwCaps & AVIFILECAPS_##x) fprintf(stderr,#x","); fprintf(stderr,"\tdwCaps: 0x%lx (",afi.dwCaps); FF(CANREAD);FF(CANWRITE);FF(ALLKEYFRAMES);FF(NOCOMPRESSION); fprintf(stderr,")\n"); #undef FF fprintf(stderr,"\tdwStreams: %ld\n",afi.dwStreams); fprintf(stderr,"\tdwSuggestedBufferSize: %ld\n",afi.dwSuggestedBufferSize); fprintf(stderr,"\tdwWidth: %ld\n",afi.dwWidth); fprintf(stderr,"\tdwHeight: %ld\n",afi.dwHeight); fprintf(stderr,"\tdwScale: %ld\n",afi.dwScale); fprintf(stderr,"\tdwRate: %ld\n",afi.dwRate); fprintf(stderr,"\tdwLength: %ld\n",afi.dwLength); fprintf(stderr,"\tdwEditCount: %ld\n",afi.dwEditCount); fprintf(stderr,"\tszFileType: %s\n",afi.szFileType); for (n = 0;n