From: Tim-Philipp Müller Date: Fri, 19 Feb 2016 20:17:02 +0000 (+0000) Subject: win32: update README and remove outdated build cruft X-Git-Tag: 1.10.4~399 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a123dbd329e68f438ad0232a574e43e26277674c;p=platform%2Fupstream%2Fgstreamer.git win32: update README and remove outdated build cruft This hasn't been touched for generations, doesn't work, and is just causing confusion. We also don't want to maintain these files manually. --- diff --git a/win32/MANIFEST b/win32/MANIFEST index f5d7fb9..dd02466 100644 --- a/win32/MANIFEST +++ b/win32/MANIFEST @@ -1,39 +1,11 @@ win32/MANIFEST win32/README.txt win32/common/config.h -win32/common/dirent.c -win32/common/dirent.h win32/common/gstconfig.h win32/common/gstenumtypes.c win32/common/gstenumtypes.h win32/common/gstversion.h -win32/common/gtchar.h win32/common/libgstbase.def win32/common/libgstcontroller.def win32/common/libgstnet.def win32/common/libgstreamer.def -win32/vs6/gstreamer.dsw -win32/vs6/grammar.dsp -win32/vs6/gst_inspect.dsp -win32/vs6/gst_launch.dsp -win32/vs6/libgstbase.dsp -win32/vs6/libgstcontroller.dsp -win32/vs6/libgstcoreelements.dsp -win32/vs6/libgstnet.dsp -win32/vs6/libgstreamer.dsp -win32/vs7/gstreamer.sln -win32/vs7/grammar.vcproj -win32/vs7/gst-inspect.vcproj -win32/vs7/gst-launch.vcproj -win32/vs7/libgstbase.vcproj -win32/vs7/libgstcontroller.vcproj -win32/vs7/libgstcoreelements.vcproj -win32/vs7/libgstreamer.vcproj -win32/vs8/gstreamer.sln -win32/vs8/grammar.vcproj -win32/vs8/gst-inspect.vcproj -win32/vs8/gst-launch.vcproj -win32/vs8/libgstbase.vcproj -win32/vs8/libgstcontroller.vcproj -win32/vs8/libgstcoreelements.vcproj -win32/vs8/libgstreamer.vcproj diff --git a/win32/README.txt b/win32/README.txt index d5afa52..809233f 100644 --- a/win32/README.txt +++ b/win32/README.txt @@ -1,28 +1,30 @@ Building GStreamer on Windows ----------------------------- -Running GStreamer on Windows is currently experimental, but improving. +Running GStreamer on Windows is supported. + +Official Windows binaries for each release can be found at: + + https://gstreamer.freedesktop.org/data/pkg/windows/ + + +Building with MinGW/MSys +------------------------ -Building on MinGW/MSys ----------------------- Should work out of the box from the toplevel directory using the standard Unix build system provided. -This build type is fairly well supported. +This build type is officially supported. -Building with Visual Studio 6 ------------------------------ -The directory vs6/ contains the workspaces needed to build GStreamer from -Visual Studio. +You can build Windows binaries including all required dependencies +using the 'cerbero' build tool: -This build type is fairly well supported. + http://cgit.freedesktop.org/gstreamer/cerbero/ + +This works both natively on Windows or as cross-compile from Linux. -Building with Visual Studio 7 ------------------------------ -vs7/ contains the files needed, but they haven't been updated since the -0.8 series. -This build is currently unsupported. +Building with Visual Studio +--------------------------- -The common/ directory contains support files that can be shared between -these two versions of Visual Studio. +Building with Visual Studio is currently not supported. diff --git a/win32/common/dirent.c b/win32/common/dirent.c deleted file mode 100644 index 85be9cb..0000000 --- a/win32/common/dirent.c +++ /dev/null @@ -1,577 +0,0 @@ -/* - - * dirent.c - - * - - * Derived from DIRLIB.C by Matt J. Weinstein - - * This note appears in the DIRLIB.H - - * DIRLIB.H by M. J. Weinstein Released to public domain 1-Jan-89 - - * - - * Updated by Jeremy Bettis - - * Significantly revised and rewinddir, seekdir and telldir added by Colin - - * Peters - - * - - * Resource leaks fixed by - - * - - * - - * $Revision$ - - * $Author$ - - * $Date$ - - * - - */ - - - -#include - -#include - -#include - -#include - -#include - -#include - -#include - -#define SUFFIX _T("*") - -#define SLASH _T("\\") - - - -#include - - - -#define WIN32_LEAN_AND_MEAN - -#include /* for GetFileAttributes */ - - - -/* - - * opendir - - * - - * Returns a pointer to a DIR structure appropriately filled in to begin - - * searching a directory. - - */ - -_TDIR * -_topendir (const _TCHAR * szPath) -{ - - _TDIR *nd; - - unsigned int rc; - - - _TCHAR szFullPath[MAX_PATH]; - - - errno = 0; - - - if (!szPath) { - - errno = EFAULT; - - return (_TDIR *) 0; - - } - - - if (szPath[0] == _T ('\0')) { - - errno = ENOTDIR; - - return (_TDIR *) 0; - - } - - - - /* Attempt to determine if the given path really is a directory. */ - - rc = GetFileAttributes (szPath); - - if (rc == (unsigned int) -1) { - - - /* call GetLastError for more error info */ - - errno = ENOENT; - - return (_TDIR *) 0; - - } - - if (!(rc & FILE_ATTRIBUTE_DIRECTORY)) { - - - /* Error, entry exists but not a directory. */ - - errno = ENOTDIR; - - return (_TDIR *) 0; - - } - - - - /* Make an absolute pathname. */ - - _tfullpath (szFullPath, szPath, MAX_PATH); - - - - /* Allocate enough space to store DIR structure and the complete - - * directory path given. */ - - nd = (_TDIR *) malloc (sizeof (_TDIR) + (_tcslen (szFullPath) + - _tcslen (SLASH) + _tcslen (SUFFIX) + 1) * sizeof (_TCHAR)); - - - if (!nd) { - - - /* Error, out of memory. */ - - errno = ENOMEM; - - return (_TDIR *) 0; - - } - - - - /* Create the search expression. */ - - _tcscpy (nd->dd_name, szFullPath); - - - - /* Add on a slash if the path does not end with one. */ - - if (nd->dd_name[0] != _T ('\0') - && nd->dd_name[_tcslen (nd->dd_name) - 1] != _T ('/') - && nd->dd_name[_tcslen (nd->dd_name) - 1] != _T ('\\')) { - - _tcscat (nd->dd_name, SLASH); - - } - - - - /* Add on the search pattern */ - - _tcscat (nd->dd_name, SUFFIX); - - - - /* Initialize handle to -1 so that a premature closedir doesn't try - - * to call _findclose on it. */ - - nd->dd_handle = -1; - - - - /* Initialize the status. */ - - nd->dd_stat = 0; - - - - /* Initialize the dirent structure. ino and reclen are invalid under - - * Win32, and name simply points at the appropriate part of the - - * findfirst_t structure. */ - - nd->dd_dir.d_ino = 0; - - nd->dd_dir.d_reclen = 0; - - nd->dd_dir.d_namlen = 0; - - - // Added by jcsston 02/04/2004, memset was writing to a bad pointer - - nd->dd_dir.d_name = malloc (FILENAME_MAX); - - - // End add - - memset (nd->dd_dir.d_name, 0, FILENAME_MAX); - - - return nd; - -} - - - - - -/* - - * readdir - - * - - * Return a pointer to a dirent structure filled with the information on the - - * next entry in the directory. - - */ - -struct _tdirent * -_treaddir (_TDIR * dirp) -{ - - errno = 0; - - - - /* Check for valid DIR struct. */ - - if (!dirp) { - - errno = EFAULT; - - return (struct _tdirent *) 0; - - } - - - if (dirp->dd_stat < 0) { - - - /* We have already returned all files in the directory - - * (or the structure has an invalid dd_stat). */ - - return (struct _tdirent *) 0; - - } else if (dirp->dd_stat == 0) { - - - /* We haven't started the search yet. */ - - /* Start the search */ - - dirp->dd_handle = (long) _tfindfirst (dirp->dd_name, &(dirp->dd_dta)); - - - if (dirp->dd_handle == -1) { - - - /* Whoops! Seems there are no files in that - - * directory. */ - - dirp->dd_stat = -1; - - } else { - - dirp->dd_stat = 1; - - } - - } else { - - - /* Get the next search entry. */ - - if (_tfindnext (dirp->dd_handle, &(dirp->dd_dta))) { - - - /* We are off the end or otherwise error. - - _findnext sets errno to ENOENT if no more file - - Undo this. */ - - DWORD winerr = GetLastError (); - - - if (winerr == ERROR_NO_MORE_FILES) - - errno = 0; - - _findclose (dirp->dd_handle); - - dirp->dd_handle = -1; - - dirp->dd_stat = -1; - - } else { - - - /* Update the status to indicate the correct - - * number. */ - - dirp->dd_stat++; - - } - - } - - - if (dirp->dd_stat > 0) { - - - /* Successfully got an entry. Everything about the file is - - * already appropriately filled in except the length of the - - * file name. */ - - dirp->dd_dir.d_namlen = (unsigned short) _tcslen (dirp->dd_dta.name); - - _tcscpy (dirp->dd_dir.d_name, dirp->dd_dta.name); - - return &dirp->dd_dir; - - } - - - return (struct _tdirent *) 0; - -} - - - - -/* - - * closedir - - * - - * Frees up resources allocated by opendir. - - */ - -int -_tclosedir (_TDIR * dirp) -{ - - int rc; - - - - errno = 0; - - rc = 0; - - - if (!dirp) { - - errno = EFAULT; - - return -1; - - } - - - if (dirp->dd_handle != -1) { - - rc = _findclose (dirp->dd_handle); - - } - - - if (dirp->dd_dir.d_name) - - free (dirp->dd_dir.d_name); - - - - /* Delete the dir structure. */ - - free (dirp); - - - return rc; - -} - - - - -/* - - * rewinddir - - * - - * Return to the beginning of the directory "stream". We simply call findclose - - * and then reset things like an opendir. - - */ - -void -_trewinddir (_TDIR * dirp) -{ - - errno = 0; - - - if (!dirp) { - - errno = EFAULT; - - return; - - } - - - if (dirp->dd_handle != -1) { - - _findclose (dirp->dd_handle); - - } - - - dirp->dd_handle = -1; - - dirp->dd_stat = 0; - -} - - - - -/* - - * telldir - - * - - * Returns the "position" in the "directory stream" which can be used with - - * seekdir to go back to an old entry. We simply return the value in stat. - - */ - -long -_ttelldir (_TDIR * dirp) -{ - - errno = 0; - - - if (!dirp) { - - errno = EFAULT; - - return -1; - - } - - return dirp->dd_stat; - -} - - - - -/* - - * seekdir - - * - - * Seek to an entry previously returned by telldir. We rewind the directory - - * and call readdir repeatedly until either dd_stat is the position number - - * or -1 (off the end). This is not perfect, in that the directory may - - * have changed while we weren't looking. But that is probably the case with - - * any such system. - - */ - -void -_tseekdir (_TDIR * dirp, long lPos) -{ - - errno = 0; - - - if (!dirp) { - - errno = EFAULT; - - return; - - } - - - if (lPos < -1) { - - - /* Seeking to an invalid position. */ - - errno = EINVAL; - - return; - - } else if (lPos == -1) { - - - /* Seek past end. */ - - if (dirp->dd_handle != -1) { - - _findclose (dirp->dd_handle); - - } - - dirp->dd_handle = -1; - - dirp->dd_stat = -1; - - } else { - - - /* Rewind and read forward to the appropriate index. */ - - _trewinddir (dirp); - - - while ((dirp->dd_stat < lPos) && _treaddir (dirp)); - - } - -} diff --git a/win32/common/dirent.h b/win32/common/dirent.h deleted file mode 100644 index 9df2307..0000000 --- a/win32/common/dirent.h +++ /dev/null @@ -1,294 +0,0 @@ -/* - - * DIRENT.H (formerly DIRLIB.H) - - * - - * by M. J. Weinstein Released to public domain 1-Jan-89 - - * - - * Because I have heard that this feature (opendir, readdir, closedir) - - * it so useful for programmers coming from UNIX or attempting to port - - * UNIX code, and because it is reasonably light weight, I have included - - * it in the Mingw32 package. I have also added an implementation of - - * rewinddir, seekdir and telldir. - - * - Colin Peters - - * - - * This code is distributed in the hope that is will be useful but - - * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY - - * DISCLAIMED. This includeds but is not limited to warranties of - - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - * - - * $Revision$ - - * $Author$ - - * $Date$ - - * - - */ - - - -#ifndef __STRICT_ANSI__ - - - -#ifndef _DIRENT_H_ - -#define _DIRENT_H_ - - - -/* All the headers include this file. */ - -/*#include <_mingw.h>*/ - - - -#include - - - -#ifndef RC_INVOKED - - - -#ifdef __cplusplus - -extern "C" { - -#endif - - - -struct dirent - -{ - - long d_ino; /* Always zero. */ - - unsigned short d_reclen; /* Always zero. */ - - unsigned short d_namlen; /* Length of name in d_name. */ - - char* d_name; /* File name. */ - - /* NOTE: The name in the dirent structure points to the name in the - - * finddata_t structure in the DIR. */ - -}; - - - -/* - - * This is an internal data structure. Good programmers will not use it - - * except as an argument to one of the functions below. - - * dd_stat field is now int (was short in older versions). - - */ - -typedef struct - -{ - - /* disk transfer area for this dir */ - - struct _finddata_t dd_dta; - - - - /* dirent struct to return from dir (NOTE: this makes this thread - - * safe as long as only one thread uses a particular DIR struct at - - * a time) */ - - struct dirent dd_dir; - - - - /* _findnext handle */ - - long dd_handle; - - - - /* - - * Status of search: - - * 0 = not started yet (next entry to read is first entry) - - * -1 = off the end - - * positive = 0 based index of next entry - - */ - - int dd_stat; - - - - /* given path for dir with search pattern (struct is extended) */ - - char dd_name[1]; - -} DIR; - - - -DIR* opendir (const char*); - -struct dirent* readdir (DIR*); - -int closedir (DIR*); - -void rewinddir (DIR*); - -long telldir (DIR*); - -void seekdir (DIR*, long); - - - - - -/* wide char versions */ - - - -struct _wdirent - -{ - - long d_ino; /* Always zero. */ - - unsigned short d_reclen; /* Always zero. */ - - unsigned short d_namlen; /* Length of name in d_name. */ - - wchar_t* d_name; /* File name. */ - - /* NOTE: The name in the dirent structure points to the name in the * wfinddata_t structure in the _WDIR. */ - -}; - - - -/* - - * This is an internal data structure. Good programmers will not use it - - * except as an argument to one of the functions below. - - */ - -typedef struct - -{ - - /* disk transfer area for this dir */ - - struct _wfinddata_t dd_dta; - - - - /* dirent struct to return from dir (NOTE: this makes this thread - - * safe as long as only one thread uses a particular DIR struct at - - * a time) */ - - struct _wdirent dd_dir; - - - - /* _findnext handle */ - - long dd_handle; - - - - /* - - * Status of search: - - * 0 = not started yet (next entry to read is first entry) - - * -1 = off the end - - * positive = 0 based index of next entry - - */ - - int dd_stat; - - - - /* given path for dir with search pattern (struct is extended) */ - - wchar_t dd_name[1]; - -} _WDIR; - - - - - - - -_WDIR* _wopendir (const wchar_t*); - -struct _wdirent* _wreaddir (_WDIR*); - -int _wclosedir (_WDIR*); - -void _wrewinddir (_WDIR*); - -long _wtelldir (_WDIR*); - -void _wseekdir (_WDIR*, long); - - - - - -#ifdef __cplusplus - -} - -#endif - - - -#endif /* Not RC_INVOKED */ - - - -#endif /* Not _DIRENT_H_ */ - - - -#endif /* Not __STRICT_ANSI__ */ - - - diff --git a/win32/common/gtchar.h b/win32/common/gtchar.h deleted file mode 100644 index ddaa818..0000000 --- a/win32/common/gtchar.h +++ /dev/null @@ -1,794 +0,0 @@ -/* - - * tchar.h - - * - - * Unicode mapping layer for the standard C library. By including this - - * file and using the 't' names for string functions - - * (eg. _tprintf) you can make code which can be easily adapted to both - - * Unicode and non-unicode environments. In a unicode enabled compile define - - * _UNICODE before including tchar.h, otherwise the standard non-unicode - - * library functions will be used. - - * - - * Note that you still need to include string.h or stdlib.h etc. to define - - * the appropriate functions. Also note that there are several defines - - * included for non-ANSI functions which are commonly available (but using - - * the convention of prepending an underscore to non-ANSI library function - - * names). - - * - - * This file is part of the Mingw32 package. - - * - - * Contributors: - - * Created by Colin Peters - - * - - * THIS SOFTWARE IS NOT COPYRIGHTED - - * - - * This source code is offered for use in the public domain. You may - - * use, modify or distribute it freely. - - * - - * This code is distributed in the hope that it will be useful but - - * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY - - * DISCLAIMED. This includes but is not limited to warranties of - - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - * - - * $Revision$ - - * $Author$ - - * $Date$ - - * - - */ - - - -#ifndef _TCHAR_H_ - -#define _TCHAR_H_ - - - -/* All the headers include this file. */ - -/*#include <_mingw.h>*/ - - - -/* - - * NOTE: This tests _UNICODE, which is different from the UNICODE define - - * used to differentiate Win32 API calls. - - */ - -#ifdef _UNICODE - - - - - -/* - - * Use TCHAR instead of char or wchar_t. It will be appropriately translated - - * if _UNICODE is correctly defined (or not). - - */ - -#ifndef _TCHAR_DEFINED - -#ifndef RC_INVOKED - -typedef wchar_t TCHAR; - -typedef wchar_t _TCHAR; - -#endif /* Not RC_INVOKED */ - -#define _TCHAR_DEFINED - -#endif - - - - - -/* - - * __TEXT is a private macro whose specific use is to force the expansion of a - - * macro passed as an argument to the macros _T or _TEXT. DO NOT use this - - * macro within your programs. It's name and function could change without - - * notice. - - */ - -#define __TEXT(q) L##q - - - -/* for porting from other Windows compilers */ - -#if 0 // no wide startup module - -#define _tmain wmain - -#define _tWinMain wWinMain - -#define _tenviron _wenviron - -#define __targv __wargv - -#endif - - - -/* - - * Unicode functions - - */ - -#define _tprintf wprintf - -#define _ftprintf fwprintf - -#define _stprintf swprintf - -#define _sntprintf _snwprintf - -#define _vtprintf vwprintf - -#define _vftprintf vfwprintf - -#define _vstprintf vswprintf - -#define _vsntprintf _vsnwprintf - -#define _tscanf wscanf - -#define _ftscanf fwscanf - -#define _stscanf swscanf - -#define _fgettc fgetwc - -#define _fgettchar _fgetwchar - -#define _fgetts fgetws - -#define _fputtc fputwc - -#define _fputtchar _fputwchar - -#define _fputts fputws - -#define _gettc getwc - -#define _getts _getws - -#define _puttc putwc - -#define _putts _putws - -#define _ungettc ungetwc - -#define _tcstod wcstod - -#define _tcstol wcstol - -#define _tcstoul wcstoul - -#define _itot _itow - -#define _ltot _ltow - -#define _ultot _ultow - -#define _ttoi _wtoi - -#define _ttol _wtol - -#define _tcscat wcscat - -#define _tcschr wcschr - -#define _tcscmp wcscmp - -#define _tcscpy wcscpy - -#define _tcscspn wcscspn - -#define _tcslen wcslen - -#define _tcsncat wcsncat - -#define _tcsncmp wcsncmp - -#define _tcsncpy wcsncpy - -#define _tcspbrk wcspbrk - -#define _tcsrchr wcsrchr - -#define _tcsspn wcsspn - -#define _tcsstr wcsstr - -#define _tcstok wcstok - -#define _tcsdup _wcsdup - -#define _tcsicmp _wcsicmp - -#define _tcsnicmp _wcsnicmp - -#define _tcsnset _wcsnset - -#define _tcsrev _wcsrev - -#define _tcsset _wcsset - -#define _tcslwr _wcslwr - -#define _tcsupr _wcsupr - -#define _tcsxfrm wcsxfrm - -#define _tcscoll wcscoll - -#define _tcsicoll _wcsicoll - -#define _istalpha iswalpha - -#define _istupper iswupper - -#define _istlower iswlower - -#define _istdigit iswdigit - -#define _istxdigit iswxdigit - -#define _istspace iswspace - -#define _istpunct iswpunct - -#define _istalnum iswalnum - -#define _istprint iswprint - -#define _istgraph iswgraph - -#define _istcntrl iswcntrl - -#define _istascii iswascii - -#define _totupper towupper - -#define _totlower towlower - -#define _tcsftime wcsftime - -/* Macro functions */ - -#define _tcsdec _wcsdec - -#define _tcsinc _wcsinc - -#define _tcsnbcnt _wcsncnt - -#define _tcsnccnt _wcsncnt - -#define _tcsnextc _wcsnextc - -#define _tcsninc _wcsninc - -#define _tcsspnp _wcsspnp - -#define _wcsdec(_wcs1, _wcs2) ((_wcs1)>=(_wcs2) ? NULL : (_wcs2)-1) - -#define _wcsinc(_wcs) ((_wcs)+1) - -#define _wcsnextc(_wcs) ((unsigned int) *(_wcs)) - -#define _wcsninc(_wcs, _inc) (((_wcs)+(_inc))) - -#define _wcsncnt(_wcs, _cnt) ((wcslen(_wcs)>_cnt) ? _count : wcslen(_wcs)) - -#define _wcsspnp(_wcs1, _wcs2) ((*((_wcs1)+wcsspn(_wcs1,_wcs2))) ? ((_wcs1)+wcsspn(_wcs1,_wcs2)) : NULL) - - - -#if 1 /* defined __MSVCRT__ */ - -/* - - * These wide functions not in crtdll.dll. - - * Define macros anyway so that _wfoo rather than _tfoo is undefined - - */ - -#define _ttoi64 _wtoi64 - -#define _i64tot _i64tow - -#define _ui64tot _ui64tow - -#define _tasctime _wasctime - -#define _tctime _wctime - -#define _tstrdate _wstrdate - -#define _tstrtime _wstrtime - -#define _tutime _wutime - -#define _tcsnccoll _wcsncoll - -#define _tcsncoll _wcsncoll - -#define _tcsncicoll _wcsnicoll - -#define _tcsnicoll _wcsnicoll - -#define _taccess _waccess - -#define _tchmod _wchmod - -#define _tcreat _wcreat - -#define _tfindfirst _wfindfirst - -#define _tfindnext _wfindnext - -#define _tfdopen _wfdopen - -#define _tfopen _wfopen - -#define _tgetenv _wgetenv - -#define _tputenv _wputenv - -#define _tsearchenv _wsearchenv - -#define _tmakepath _wmakepath - -#define _tsplitpath _wsplitpath - -#define _tfullpath _wfullpath - -#define _tmktemp _wmktemp - -#define _topen _wopen - -#define _tremove _wremove - -#define _trename _wrename - -#define _tsopen _wsopen - -#define _tsetlocale _wsetlocale - -#define _tunlink _wunlink - -#define _tfinddata_t _wfinddata_t - -#define _tfindfirsti64 _wfindfirsti64 - -#define _tfindnexti64 _wfindnexti64 - -#define _tfinddatai64_t _wfinddatai64_t - -#endif /* __MSVCRT__ */ - - - -/* dirent structures and functions */ - -#define _tdirent _wdirent - -#define _TDIR _WDIR - -#define _topendir _wopendir - -#define _tclosedir _wclosedir - -#define _treaddir _wreaddir - -#define _trewinddir _wrewinddir - -#define _ttelldir _wtelldir - -#define _tseekdir _wseekdir - -#else /* Not _UNICODE */ - - - -/* - - * TCHAR, the type you should use instead of char. - - */ - -#ifndef _TCHAR_DEFINED - -#ifndef RC_INVOKED - -typedef char TCHAR; - -typedef char _TCHAR; - -#endif - -#define _TCHAR_DEFINED - -#endif - - - -/* - - * __TEXT is a private macro whose specific use is to force the expansion of a - - * macro passed as an argument to the macros _T or _TEXT. DO NOT use this - - * macro within your programs. It's name and function could change without - - * notice. - - */ - -#define __TEXT(q) q - - - -/* for porting from other Windows compilers */ - -#define _tmain main - -#define _tWinMain WinMain - -#define _tenviron _environ - -#define __targv __argv - - - -/* - - * Non-unicode (standard) functions - - */ - - - -#define _tprintf printf - -#define _ftprintf fprintf - -#define _stprintf sprintf - -#define _sntprintf _snprintf - -#define _vtprintf vprintf - -#define _vftprintf vfprintf - -#define _vstprintf vsprintf - -#define _vsntprintf _vsnprintf - -#define _tscanf scanf - -#define _ftscanf fscanf - -#define _stscanf sscanf - -#define _fgettc fgetc - -#define _fgettchar _fgetchar - -#define _fgetts fgets - -#define _fputtc fputc - -#define _fputtchar _fputchar - -#define _fputts fputs - -#define _tfdopen _fdopen - -#define _tfopen fopen - -#define _tgetenv getenv - -#define _tputenv _putenv - -#define _tsearchenv _searchenv - -#define _tmakepath _makepath - -#define _tsplitpath _splitpath - -#define _tfullpath _fullpath - -#define _gettc getc - -#define _getts gets - -#define _puttc putc - -#define _putts puts - -#define _ungettc ungetc - -#define _tcstod strtod - -#define _tcstol strtol - -#define _tcstoul strtoul - -#define _itot _itoa - -#define _ltot _ltoa - -#define _ultot _ultoa - -#define _ttoi atoi - -#define _ttol atol - -#define _tcscat strcat - -#define _tcschr strchr - -#define _tcscmp strcmp - -#define _tcscpy strcpy - -#define _tcscspn strcspn - -#define _tcslen strlen - -#define _tcsncat strncat - -#define _tcsncmp strncmp - -#define _tcsncpy strncpy - -#define _tcspbrk strpbrk - -#define _tcsrchr strrchr - -#define _tcsspn strspn - -#define _tcsstr strstr - -#define _tcstok strtok - -#define _tcsdup _strdup - -#define _tcsicmp _stricmp - -#define _tcsnicmp _strnicmp - -#define _tcsnset _strnset - -#define _tcsrev _strrev - -#define _tcsset _strset - -#define _tcslwr _strlwr - -#define _tcsupr _strupr - -#define _tcsxfrm strxfrm - -#define _tcscoll strcoll - -#define _tcsicoll _stricoll - -#define _istalpha isalpha - -#define _istupper isupper - -#define _istlower islower - -#define _istdigit isdigit - -#define _istxdigit isxdigit - -#define _istspace isspace - -#define _istpunct ispunct - -#define _istalnum isalnum - -#define _istprint isprint - -#define _istgraph isgraph - -#define _istcntrl iscntrl - -#define _istascii isascii - -#define _totupper toupper - -#define _totlower tolower - -#define _tasctime asctime - -#define _tctime ctime - -#define _tstrdate _strdate - -#define _tstrtime _strtime - -#define _tutime _utime - -#define _tcsftime strftime - -/* Macro functions */ - -#define _tcsdec _strdec - -#define _tcsinc _strinc - -#define _tcsnbcnt _strncnt - -#define _tcsnccnt _strncnt - -#define _tcsnextc _strnextc - -#define _tcsninc _strninc - -#define _tcsspnp _strspnp - -#define _strdec(_str1, _str2) ((_str1)>=(_str2) ? NULL : (_str2)-1) - -#define _strinc(_str) ((_str)+1) - -#define _strnextc(_str) ((unsigned int) *(_str)) - -#define _strninc(_str, _inc) (((_str)+(_inc))) - -#define _strncnt(_str, _cnt) ((strlen(_str)>_cnt) ? _count : strlen(_str)) - -#define _strspnp(_str1, _str2) ((*((_str1)+strspn(_str1,_str2))) ? ((_str1)+strspn(_str1,_str2)) : NULL) - - - -#define _tchmod _chmod - -#define _tcreat _creat - -#define _tfindfirst _findfirst - -#define _tfindnext _findnext - -#define _tmktemp _mktemp - -#define _topen _open - -#define _taccess _access - -#define _tremove remove - -#define _trename rename - -#define _tsopen _sopen - -#define _tsetlocale setlocale - -#define _tunlink _unlink - -#define _tfinddata_t _finddata_t - - - -#if 1 /* defined __MSVCRT__ */ - -/* Not in crtdll.dll. Define macros anyway? */ - -#define _ttoi64 _atoi64 - -#define _i64tot _i64toa - -#define _ui64tot _ui64toa - -#define _tcsnccoll _strncoll - -#define _tcsncoll _strncoll - -#define _tcsncicoll _strnicoll - -#define _tcsnicoll _strnicoll - -#define _tfindfirsti64 _findfirsti64 - -#define _tfindnexti64 _findnexti64 - -#define _tfinddatai64_t _finddatai64_t - -#endif /* __MSVCRT__ */ - - - -/* dirent structures and functions */ - -#define _tdirent dirent - -#define _TDIR DIR - -#define _topendir opendir - -#define _tclosedir closedir - -#define _treaddir readdir - -#define _trewinddir rewinddir - -#define _ttelldir telldir - -#define _tseekdir seekdir - - - -#endif /* Not _UNICODE */ - - - -/* - - * UNICODE a constant string when _UNICODE is defined else returns the string - - * unmodified. Also defined in w32api/winnt.h. - - */ - -#define _TEXT(x) __TEXT(x) - -#define _T(x) __TEXT(x) - - - -#endif /* Not _TCHAR_H_ */ - - - diff --git a/win32/common/libgstdataprotocol.def b/win32/common/libgstdataprotocol.def deleted file mode 100644 index e098a25..0000000 --- a/win32/common/libgstdataprotocol.def +++ /dev/null @@ -1,15 +0,0 @@ -EXPORTS - gst_dp_buffer_from_header - gst_dp_caps_from_packet - gst_dp_crc - gst_dp_dump_byte_array - gst_dp_event_from_packet - gst_dp_header_payload_length - gst_dp_header_payload_type - gst_dp_init - gst_dp_packetizer_free - gst_dp_packetizer_new - gst_dp_validate_header - gst_dp_validate_packet - gst_dp_validate_payload - gst_dp_version_get_type diff --git a/win32/vs10/Common.props b/win32/vs10/Common.props deleted file mode 100644 index b80b964..0000000 --- a/win32/vs10/Common.props +++ /dev/null @@ -1,100 +0,0 @@ - - - - - ..\..\..\ - $(GstProjectRoot)..\..\vs10\$(PlatformName)\ - $(GstPrefix)bin\flex\data - 0.11 - $(GstPrefix)include\gstreamer-$(GstVersion)\gst\ - $(GstPrefix)lib\ - $(GstPrefix)bin\ - $(GstPrefix)lib\gstreamer-$(GstVersion)\ - glib-2.0.lib;gobject-2.0.lib;gthread-2.0.lib;gmodule-2.0.lib;Ws2_32.lib;intl.lib - glib-genmarshal > NUL 2> NUL -if %errorlevel% == 9009 goto NOGLIBGENMARSHAL -rem resets errorlevel to 0 because it is 1 now: -dir > NUL - -if exist %relativedir%%filename%.c goto HEADER -echo #include "glib-object.h" > %filename%.c.tmp -echo #include "%filename%.h" >> %filename%.c.tmp -glib-genmarshal --body --prefix=%prefix% %relativedir%%filename%.list >> %filename%.c.tmp -move %filename%.c.tmp %relativedir%%filename%.c -:HEADER -if exist %relativedir%%filename%.h goto END -glib-genmarshal --header --prefix=%prefix% %relativedir%%filename%.list >> %filename%.h.tmp -move %filename%.h.tmp %relativedir%%filename%.h -goto END - -:NOGLIBGENMARSHAL -echo ERROR %errorlevel% -echo ### YOU DO NOT HAVE GLIB-GENMARSHAL.EXE IN YOUR PATH. -echo ### INSTALL GLIB-DEV AND/OR MAKE SURE IT IS IN YOUR PATH! - -:END - - C:\\avs-dep\\vs10\\Win32 - - - $(GstPrefix)bin;$(GstPrefix)bin\flex;$(ExecutablePath) - - - $(GstPrefix)include;$(GstPrefix)include\glib-2.0;$(GstPrefix)lib\glib-2.0\include;$(IncludePath) - - - $(GstPrefix)lib;$(LibraryPath) - <_PropertySheetDisplayName>Common - ..\Build\$(ProjectName)-$(Configuration)\ - $(SolutionDir)Build\$(Configuration)\ - - - - - PREFIX="$(PREFIX)";DISABLE_ORC;WIN32;_WINDOWS;HAVE_CONFIG_H;HAVE_WIN32;GST_DISABLE_XML;HAVE_SINH;HAVE_COSH;%(PreprocessorDefinitions) - 4996;4244;4018;4146;4305;%(DisableSpecificWarnings) - $(GstProjectRoot);$(GstProjectRoot)libs;$(GstProjectRoot)win32\common\;%(AdditionalIncludeDirectories) - - - $(GstCommonDeps);%(AdditionalDependencies) - - - - - $(GstProjectRoot) - - - $(GstPrefix) - true - - - $(BISON_PKGDATADIR) - true - - - $(GstVersion) - - - $(GstDestInclude) - - - $(GstDestLib) - - - $(GstDestBin) - - - $(GstDestPlugins) - true - - - $(GstCommonDeps) - - - $(GstGenMarshal) - - - $(PREFIX) - - - diff --git a/win32/vs10/Library.props b/win32/vs10/Library.props deleted file mode 100644 index 974aad6..0000000 --- a/win32/vs10/Library.props +++ /dev/null @@ -1,34 +0,0 @@ - - - - - libs\ - - - gst$(ProjectName)-$(GstVersion) - - - - mkdir $(GstDestLib) -copy /y $(OutDir)$(TargetName).lib $(GstDestLib)$(TargetName).lib - -mkdir $(GstDestBin) -copy /y $(TargetPath) $(GstDestBin)$(TargetFileName) - -mkdir $(GstDestInclude)$(ProjectName)\ -copy /y $(GstProjectRoot)$(GstLibraryFolder)gst\$(ProjectName)\*.h $(GstDestInclude)$(ProjectName)\ -del $(GstDestInclude)$(ProjectName)\*-docs.h -del $(GstDestInclude)$(ProjectName)\*-marshal.h -del $(GstDestInclude)$(ProjectName)\*private.h -del $(GstDestInclude)$(ProjectName)\*kiss_fft*.h - - - $(GstProjectRoot)win32\common\libgst$(ProjectName).def - - - - - $(GstLibraryFolder) - - - \ No newline at end of file diff --git a/win32/vs10/Plugin.props b/win32/vs10/Plugin.props deleted file mode 100644 index 1afab80..0000000 --- a/win32/vs10/Plugin.props +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - $(ProjectName) - - - - mkdir $(GstDestPlugins) -copy /y $(TargetPath) $(GstDestPlugins)$(TargetFileName) - - - - \ No newline at end of file diff --git a/win32/vs10/ReadMe.txt b/win32/vs10/ReadMe.txt deleted file mode 100644 index 7a93fe9..0000000 --- a/win32/vs10/ReadMe.txt +++ /dev/null @@ -1,82 +0,0 @@ -GStreamer build for Visual Studio 10 - -Dependencies -============ - -GLib -Flex/Bison for Windows ( http://sourceforge.net/projects/winflexbison/ ) - -Sample Directory layout -======================= - - - build (contains source for each project) - glib - gstreamer - gst-plugins-base - gst-plugins-good - gst-plugins-ugly - gst-plugins-bad - gst-ffmpeg - vs10 (contains built products) - Win32 - bin - flex - include - lib - -GLib and its dependencies need to be installed in \vs10\Win32 folder, -which is default behavior when you put the source to \build\glib and -build it. - -The gstreamer projects follow similar pattern. After build the result files -will be placed in \vs10\Win32\bin, include, and lib folders. - -The entire flex distribution (including data folder) needs to be placed in the -\vs10\Win32\bin folder. If you put the data folder elsewhere you will need -to modify BISON_PKGDATADIR variable in Common.props (see the next seciton) - -Modifying Build Settings -======================== - -This build makes use of Visual Studio Property sheets. All projects include the -Common.props property sheet preset in gstreamer\win32\vs10 - -IMPORTANT: -You will need to modify at least one property - GstAbsPluginPath. This property -should contains escaped path to default GStreamer plugin folder, i.e. -C:\\gstreamer\\vs10\\Win32\\lib\\gstreamer-1.0 when your is C:\\gstreamer - -All projects include common property files from the gstreamer project so it must -be present when building gst-plugins-base,good,ugly,bad and gst-ffmpeg. - -Creating Project for New Library or Plugin -========================================== - -1. Create empty project in the Solution. Note that project name is improtant. - - For plugin the project name should be in form of "gstmypluigin" and the resulting - plugin dll will have same name as the project (i.e. "gstmyplugin.dll") - - For library the project name should be same as the library folder. I.e. for - gst-libs\gst\pbutils library in gst-plugins-base the project name is "pbutils" - -2. Add gstreamer\win32\vs10\Common.props and either gstreamer\win32\vs10\Library.props - or gstreamer\Win32\vs10\Plugin.props depending on whether the project is for library - or plugin. - -3. Set the project type to Shared Library in project preferences - -4. If the project contains any generated gst-enums or needs to generate marshallers add - the appropriate entries to solution "generate" project. See the generate project in - gst-plugins-base solution for example - -5. Add source files to project - -6. If necessary modify the project settings. Usually the only modification necessary - should be adding dependency libraries in linker input settings or specfying project - dependencies if the new project depends on another project within the solution - -7. If the project is a library it must have a def file in win32\common with name - libgst.def . I.e. pbutils project needs to have libgstpbutils.def - file in gst-plugins-base\win32\common diff --git a/win32/vs10/Tool.props b/win32/vs10/Tool.props deleted file mode 100644 index df4143e..0000000 --- a/win32/vs10/Tool.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - $(ProjectName)-$(GstVersion) - - - - mkdir $(GstDestBin) -copy /y $(TargetPath) $(GstDestBin)$(TargetFileName) - - - Console - - - - \ No newline at end of file diff --git a/win32/vs10/base/base.vcxproj b/win32/vs10/base/base.vcxproj deleted file mode 100644 index 56dc6a0..0000000 --- a/win32/vs10/base/base.vcxproj +++ /dev/null @@ -1,103 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {A7371D9A-55A5-4C58-A400-C7C27EAD739A} - base - - - - DynamicLibrary - true - MultiByte - - - DynamicLibrary - false - true - MultiByte - - - - - - - - - - - - - - - - - - - Level3 - Disabled - - - true - - - - - Level3 - MaxSpeed - true - true - - - true - true - true - - - - - {62ba9f04-14b5-47d3-b467-ac12ce125dd3} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/win32/vs10/base/base.vcxproj.filters b/win32/vs10/base/base.vcxproj.filters deleted file mode 100644 index ee3f779..0000000 --- a/win32/vs10/base/base.vcxproj.filters +++ /dev/null @@ -1,102 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/win32/vs10/controller/controller.vcxproj b/win32/vs10/controller/controller.vcxproj deleted file mode 100644 index 9388f74..0000000 --- a/win32/vs10/controller/controller.vcxproj +++ /dev/null @@ -1,86 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {8A0478DD-4E77-440D-B840-1AEB10C1831F} - controller - - - - DynamicLibrary - true - MultiByte - - - DynamicLibrary - false - true - MultiByte - - - - - - - - - - - - - - - - - - - Level3 - Disabled - - - true - - - - - Level3 - MaxSpeed - true - true - - - true - true - true - - - - - {62ba9f04-14b5-47d3-b467-ac12ce125dd3} - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/win32/vs10/controller/controller.vcxproj.filters b/win32/vs10/controller/controller.vcxproj.filters deleted file mode 100644 index 14416fd..0000000 --- a/win32/vs10/controller/controller.vcxproj.filters +++ /dev/null @@ -1,45 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/win32/vs10/generated/generated.vcxproj b/win32/vs10/generated/generated.vcxproj deleted file mode 100644 index a29a3b0..0000000 --- a/win32/vs10/generated/generated.vcxproj +++ /dev/null @@ -1,123 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - - Document - set prefix=gst_marshal -set relativedir=%(RelativeDir) -set filename=%(Filename) - -$(GstGenMarshal) - %(RelativeDir)%(Filename).c;%(RelativeDir)%(Filename).h - set prefix=gst_marshal -set relativedir=%(RelativeDir) -set filename=%(Filename) - -$(GstGenMarshal) - %(RelativeDir)%(Filename).c;%(RelativeDir)%(Filename).h - - - Document - bison -d -v -ppriv_gst_parse_yy $(GstProjectRoot)gst\parse\grammar.y -o $(GstProjectRoot)gst\parse\grammar.tab.c -flex -Ppriv_gst_parse_yy -o$(GstProjectRoot)gst\parse\lex.priv_gst_parse_yy.c $(GstProjectRoot)gst\parse\parse.l - - bison -d -v -ppriv_gst_parse_yy $(GstProjectRoot)gst\parse\grammar.y -o $(GstProjectRoot)gst\parse\grammar.tab.c -flex -Ppriv_gst_parse_yy -o$(GstProjectRoot)gst\parse\lex.priv_gst_parse_yy.c $(GstProjectRoot)gst\parse\parse.l - - $(GstProjectRoot)gst\parse\lex.priv_gst_parse_yy.c;$(GstProjectRoot)gst\parse\grammar.tab.c;$(GstProjectRoot)gst\parse\grammar.tab.h;%(Outputs) - $(GstProjectRoot)gst\parse\lex.priv_gst_parse_yy.c;$(GstProjectRoot)gst\parse\grammar.tab.c;$(GstProjectRoot)gst\parse\grammar.tab.h;%(Outputs) - - - - - copy /y %(Identity) $(GstProjectRoot)gst - copy /y %(Identity) $(GstProjectRoot)gst - $(GstProjectRoot)gst\%(Filename).%(Extension) - $(GstProjectRoot)gst\%(Filename).%(Extension) - - - copy /y %(Identity) $(GstProjectRoot)gst - copy /y %(Identity) $(GstProjectRoot)gst - $(GstProjectRoot)gst\%(Filename).%(Extension) - $(GstProjectRoot)gst\%(Filename).%(Extension) - - - copy /y %(Identity) $(GstProjectRoot)gst - copy /y %(Identity) $(GstProjectRoot)gst - $(GstProjectRoot)gst\%(Filename).%(Extension) - $(GstProjectRoot)gst\%(Filename).%(Extension) - - - - - copy /y %(Identity) $(GstProjectRoot)gst - copy /y %(Identity) $(GstProjectRoot)gst - $(GstProjectRoot)gst\%(Filename).%(Extension) - $(GstProjectRoot)gst\%(Filename).%(Extension) - - - - {F0025B10-A2E9-44EE-8668-4AE3AE1A2F9B} - generated - - - - Utility - true - MultiByte - - - Utility - false - true - MultiByte - - - - - - - - - - - - - - - - - Level3 - Disabled - - - true - - - - - Level3 - MaxSpeed - true - true - - - true - true - true - - - - - - \ No newline at end of file diff --git a/win32/vs10/generated/generated.vcxproj.filters b/win32/vs10/generated/generated.vcxproj.filters deleted file mode 100644 index e3fab6b..0000000 --- a/win32/vs10/generated/generated.vcxproj.filters +++ /dev/null @@ -1,24 +0,0 @@ - - - - - {10c317a8-1473-489a-b1a9-28ddcd61505f} - - - - - - - Copy - - - Copy - - - Copy - - - Copy - - - \ No newline at end of file diff --git a/win32/vs10/gst-inspect/gst-inspect.vcxproj b/win32/vs10/gst-inspect/gst-inspect.vcxproj deleted file mode 100644 index ae55919..0000000 --- a/win32/vs10/gst-inspect/gst-inspect.vcxproj +++ /dev/null @@ -1,80 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {B30E6FEB-EFE3-4FF8-921B-A272B9B41CD9} - gstinspect - - - - Application - true - MultiByte - - - Application - false - true - MultiByte - - - - - - - - - - - - - - - - - - - Level3 - Disabled - - - true - - - - - Level3 - MaxSpeed - true - true - - - true - true - true - - - - - {a7371d9a-55a5-4c58-a400-c7c27ead739a} - - - {62ba9f04-14b5-47d3-b467-ac12ce125dd3} - - - - - - - - - \ No newline at end of file diff --git a/win32/vs10/gst-inspect/gst-inspect.vcxproj.filters b/win32/vs10/gst-inspect/gst-inspect.vcxproj.filters deleted file mode 100644 index 314d80c..0000000 --- a/win32/vs10/gst-inspect/gst-inspect.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - \ No newline at end of file diff --git a/win32/vs10/gst-launch/gst-launch.vcxproj b/win32/vs10/gst-launch/gst-launch.vcxproj deleted file mode 100644 index 90cb82e..0000000 --- a/win32/vs10/gst-launch/gst-launch.vcxproj +++ /dev/null @@ -1,80 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {32C55424-4044-4D7B-A6A2-5D6DDA5491FB} - gstlaunch - - - - Application - true - MultiByte - - - Application - false - true - MultiByte - - - - - - - - - - - - - - - - - - - Level3 - Disabled - - - true - - - - - Level3 - MaxSpeed - true - true - - - true - true - true - - - - - {a7371d9a-55a5-4c58-a400-c7c27ead739a} - - - {62ba9f04-14b5-47d3-b467-ac12ce125dd3} - - - - - - - - - \ No newline at end of file diff --git a/win32/vs10/gst-launch/gst-launch.vcxproj.filters b/win32/vs10/gst-launch/gst-launch.vcxproj.filters deleted file mode 100644 index 97118e4..0000000 --- a/win32/vs10/gst-launch/gst-launch.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - \ No newline at end of file diff --git a/win32/vs10/gst-typefind/gst-typefind.vcxproj b/win32/vs10/gst-typefind/gst-typefind.vcxproj deleted file mode 100644 index ee2211c..0000000 --- a/win32/vs10/gst-typefind/gst-typefind.vcxproj +++ /dev/null @@ -1,80 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {454AAAC8-835A-4F24-9003-6BE9012F99A8} - gsttypefind - - - - Application - true - MultiByte - - - Application - false - true - MultiByte - - - - - - - - - - - - - - - - - - - Level3 - Disabled - - - true - - - - - Level3 - MaxSpeed - true - true - - - true - true - true - - - - - - - - {a7371d9a-55a5-4c58-a400-c7c27ead739a} - - - {62ba9f04-14b5-47d3-b467-ac12ce125dd3} - - - - - - \ No newline at end of file diff --git a/win32/vs10/gst-typefind/gst-typefind.vcxproj.filters b/win32/vs10/gst-typefind/gst-typefind.vcxproj.filters deleted file mode 100644 index ff9f93e..0000000 --- a/win32/vs10/gst-typefind/gst-typefind.vcxproj.filters +++ /dev/null @@ -1,22 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - \ No newline at end of file diff --git a/win32/vs10/gstcoreelements/gstcoreelements.vcxproj b/win32/vs10/gstcoreelements/gstcoreelements.vcxproj deleted file mode 100644 index ca13023..0000000 --- a/win32/vs10/gstcoreelements/gstcoreelements.vcxproj +++ /dev/null @@ -1,118 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {95322960-1596-4999-979D-5EFED0B9AF59} - gstcoreelements - - - - DynamicLibrary - true - MultiByte - - - DynamicLibrary - false - true - MultiByte - - - - - - - - - - - - - - - - - - - Level3 - Disabled - - - true - - - - - Level3 - MaxSpeed - true - true - - - true - true - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {a7371d9a-55a5-4c58-a400-c7c27ead739a} - - - {62ba9f04-14b5-47d3-b467-ac12ce125dd3} - - - - - - \ No newline at end of file diff --git a/win32/vs10/gstcoreelements/gstcoreelements.vcxproj.filters b/win32/vs10/gstcoreelements/gstcoreelements.vcxproj.filters deleted file mode 100644 index 62d1859..0000000 --- a/win32/vs10/gstcoreelements/gstcoreelements.vcxproj.filters +++ /dev/null @@ -1,132 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/win32/vs10/gstreamer.sln b/win32/vs10/gstreamer.sln deleted file mode 100644 index b0f612e..0000000 --- a/win32/vs10/gstreamer.sln +++ /dev/null @@ -1,68 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gstreamer", "gstreamer\gstreamer.vcxproj", "{62BA9F04-14B5-47D3-B467-AC12CE125DD3}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "generated", "generated\generated.vcxproj", "{F0025B10-A2E9-44EE-8668-4AE3AE1A2F9B}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "base", "base\base.vcxproj", "{A7371D9A-55A5-4C58-A400-C7C27EAD739A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "controller", "controller\controller.vcxproj", "{8A0478DD-4E77-440D-B840-1AEB10C1831F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "net", "net\net.vcxproj", "{7E02E21D-A170-466F-B383-2D58E70E4367}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gst-inspect", "gst-inspect\gst-inspect.vcxproj", "{B30E6FEB-EFE3-4FF8-921B-A272B9B41CD9}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gst-launch", "gst-launch\gst-launch.vcxproj", "{32C55424-4044-4D7B-A6A2-5D6DDA5491FB}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gst-typefind", "gst-typefind\gst-typefind.vcxproj", "{454AAAC8-835A-4F24-9003-6BE9012F99A8}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gstcoreelements", "gstcoreelements\gstcoreelements.vcxproj", "{95322960-1596-4999-979D-5EFED0B9AF59}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {62BA9F04-14B5-47D3-B467-AC12CE125DD3}.Debug|Win32.ActiveCfg = Debug|Win32 - {62BA9F04-14B5-47D3-B467-AC12CE125DD3}.Debug|Win32.Build.0 = Debug|Win32 - {62BA9F04-14B5-47D3-B467-AC12CE125DD3}.Release|Win32.ActiveCfg = Release|Win32 - {62BA9F04-14B5-47D3-B467-AC12CE125DD3}.Release|Win32.Build.0 = Release|Win32 - {F0025B10-A2E9-44EE-8668-4AE3AE1A2F9B}.Debug|Win32.ActiveCfg = Debug|Win32 - {F0025B10-A2E9-44EE-8668-4AE3AE1A2F9B}.Debug|Win32.Build.0 = Debug|Win32 - {F0025B10-A2E9-44EE-8668-4AE3AE1A2F9B}.Release|Win32.ActiveCfg = Release|Win32 - {F0025B10-A2E9-44EE-8668-4AE3AE1A2F9B}.Release|Win32.Build.0 = Release|Win32 - {A7371D9A-55A5-4C58-A400-C7C27EAD739A}.Debug|Win32.ActiveCfg = Debug|Win32 - {A7371D9A-55A5-4C58-A400-C7C27EAD739A}.Debug|Win32.Build.0 = Debug|Win32 - {A7371D9A-55A5-4C58-A400-C7C27EAD739A}.Release|Win32.ActiveCfg = Release|Win32 - {A7371D9A-55A5-4C58-A400-C7C27EAD739A}.Release|Win32.Build.0 = Release|Win32 - {8A0478DD-4E77-440D-B840-1AEB10C1831F}.Debug|Win32.ActiveCfg = Debug|Win32 - {8A0478DD-4E77-440D-B840-1AEB10C1831F}.Debug|Win32.Build.0 = Debug|Win32 - {8A0478DD-4E77-440D-B840-1AEB10C1831F}.Release|Win32.ActiveCfg = Release|Win32 - {8A0478DD-4E77-440D-B840-1AEB10C1831F}.Release|Win32.Build.0 = Release|Win32 - {7E02E21D-A170-466F-B383-2D58E70E4367}.Debug|Win32.ActiveCfg = Debug|Win32 - {7E02E21D-A170-466F-B383-2D58E70E4367}.Debug|Win32.Build.0 = Debug|Win32 - {7E02E21D-A170-466F-B383-2D58E70E4367}.Release|Win32.ActiveCfg = Release|Win32 - {7E02E21D-A170-466F-B383-2D58E70E4367}.Release|Win32.Build.0 = Release|Win32 - {B30E6FEB-EFE3-4FF8-921B-A272B9B41CD9}.Debug|Win32.ActiveCfg = Debug|Win32 - {B30E6FEB-EFE3-4FF8-921B-A272B9B41CD9}.Debug|Win32.Build.0 = Debug|Win32 - {B30E6FEB-EFE3-4FF8-921B-A272B9B41CD9}.Release|Win32.ActiveCfg = Release|Win32 - {B30E6FEB-EFE3-4FF8-921B-A272B9B41CD9}.Release|Win32.Build.0 = Release|Win32 - {32C55424-4044-4D7B-A6A2-5D6DDA5491FB}.Debug|Win32.ActiveCfg = Debug|Win32 - {32C55424-4044-4D7B-A6A2-5D6DDA5491FB}.Debug|Win32.Build.0 = Debug|Win32 - {32C55424-4044-4D7B-A6A2-5D6DDA5491FB}.Release|Win32.ActiveCfg = Release|Win32 - {32C55424-4044-4D7B-A6A2-5D6DDA5491FB}.Release|Win32.Build.0 = Release|Win32 - {454AAAC8-835A-4F24-9003-6BE9012F99A8}.Debug|Win32.ActiveCfg = Debug|Win32 - {454AAAC8-835A-4F24-9003-6BE9012F99A8}.Debug|Win32.Build.0 = Debug|Win32 - {454AAAC8-835A-4F24-9003-6BE9012F99A8}.Release|Win32.ActiveCfg = Release|Win32 - {454AAAC8-835A-4F24-9003-6BE9012F99A8}.Release|Win32.Build.0 = Release|Win32 - {95322960-1596-4999-979D-5EFED0B9AF59}.Debug|Win32.ActiveCfg = Debug|Win32 - {95322960-1596-4999-979D-5EFED0B9AF59}.Debug|Win32.Build.0 = Debug|Win32 - {95322960-1596-4999-979D-5EFED0B9AF59}.Release|Win32.ActiveCfg = Release|Win32 - {95322960-1596-4999-979D-5EFED0B9AF59}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vs10/gstreamer/gstreamer.vcxproj b/win32/vs10/gstreamer/gstreamer.vcxproj deleted file mode 100644 index 6dd255d..0000000 --- a/win32/vs10/gstreamer/gstreamer.vcxproj +++ /dev/null @@ -1,263 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {62BA9F04-14B5-47D3-B467-AC12CE125DD3} - gstreamer - - - - DynamicLibrary - true - MultiByte - - - DynamicLibrary - false - true - MultiByte - - - - - - - - - - - - - - - - - $(ProjectName)-$(GstVersion) - - - $(ProjectName)-$(GstVersion) - - - - Level3 - Disabled - PREFIX="$(PREFIX)";GST_EXPORTS;YY_NO_UNISTD_H;%(PreprocessorDefinitions) - - - true - $(GstProjectRoot)win32\common\lib$(ProjectName).def - - - mkdir $(GstDestLib) -copy /y $(OutDir)$(TargetName).lib $(GstDestLib)$(TargetName).lib - -mkdir $(GstDestBin) -copy /y $(TargetPath) $(GstDestBin)$(TargetFileName) - -mkdir $(GstDestInclude) -copy /y ..\..\..\gst\*.h $(GstDestInclude) -del $(GstDestInclude)gstregistrychunks.h -del $(GstDestInclude)gstregistrybinary.h -del $(GstDestInclude)gstquark.h -del $(GstDestInclude)gstpluginloader.h -del $(GstDestInclude)gst-i18n-lib.h -del $(GstDestInclude)gst-i18n-app.h -del $(GstDestInclude)gst_private.h -del $(GstDestInclude)glib-compat-private.h -del $(GstDestInclude)gettext.h - - - - - - Level3 - MaxSpeed - true - true - PREFIX="$(PREFIX)";GST_EXPORTS;YY_NO_UNISTD_H;%(PreprocessorDefinitions) - - - true - true - true - $(GstProjectRoot)win32\common\lib$(ProjectName).def - - - mkdir $(GstDestLib) -copy /y $(OutDir)$(TargetName).lib $(GstDestLib)$(TargetName).lib - -mkdir $(GstDestBin) -copy /y $(TargetPath) $(GstDestBin)$(TargetFileName) - -mkdir $(GstDestInclude) -copy /y ..\..\..\gst\*.h $(GstDestInclude) -del $(GstDestInclude)gstregistrychunks.h -del $(GstDestInclude)gstregistrybinary.h -del $(GstDestInclude)gstquark.h -del $(GstDestInclude)gstpluginloader.h -del $(GstDestInclude)gst-i18n-lib.h -del $(GstDestInclude)gst-i18n-app.h -del $(GstDestInclude)gst_private.h -rem gst-plugins-base app lib needs gst-compat-private.h -rem del $(GstDestInclude)glib-compat-private.h -del $(GstDestInclude)gettext.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {f0025b10-a2e9-44ee-8668-4ae3ae1a2f9b} - - - - - - \ No newline at end of file diff --git a/win32/vs10/gstreamer/gstreamer.vcxproj.filters b/win32/vs10/gstreamer/gstreamer.vcxproj.filters deleted file mode 100644 index 4fb6dcb..0000000 --- a/win32/vs10/gstreamer/gstreamer.vcxproj.filters +++ /dev/null @@ -1,426 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/win32/vs10/net/net.vcxproj b/win32/vs10/net/net.vcxproj deleted file mode 100644 index 03fc82c..0000000 --- a/win32/vs10/net/net.vcxproj +++ /dev/null @@ -1,87 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {7E02E21D-A170-466F-B383-2D58E70E4367} - net - - - - DynamicLibrary - true - MultiByte - - - DynamicLibrary - false - true - MultiByte - - - - - - - - - - - - - - - - - - - Level3 - Disabled - - - true - - - - - Level3 - MaxSpeed - true - true - - - true - true - true - - - - - {62ba9f04-14b5-47d3-b467-ac12ce125dd3} - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/win32/vs10/net/net.vcxproj.filters b/win32/vs10/net/net.vcxproj.filters deleted file mode 100644 index 7587dec..0000000 --- a/win32/vs10/net/net.vcxproj.filters +++ /dev/null @@ -1,48 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/win32/vs6/grammar.dsp b/win32/vs6/grammar.dsp deleted file mode 100644 index b863377..0000000 --- a/win32/vs6/grammar.dsp +++ /dev/null @@ -1,263 +0,0 @@ -# Microsoft Developer Studio Project File - Name="grammar" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Generic Project" 0x010a - -CFG=grammar - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "grammar.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "grammar.mak" CFG="grammar - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "grammar - Win32 Release" (based on "Win32 (x86) Generic Project") -!MESSAGE "grammar - Win32 Debug" (based on "Win32 (x86) Generic Project") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -MTL=midl.exe - -!IF "$(CFG)" == "grammar - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "grammar - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Target_Dir "" - -!ENDIF - -# Begin Target - -# Name "grammar - Win32 Release" -# Name "grammar - Win32 Debug" -# Begin Source File - -SOURCE=..\..\gst\parse\grammar.y - -!IF "$(CFG)" == "grammar - Win32 Release" - -# Begin Custom Build -InputPath=..\..\gst\parse\grammar.y - -BuildCmds= \ - copy /y ..\..\gst\parse\grammar.tab.pre.c ..\..\gst\parse\grammar.tab.c \ - copy /y ..\..\gst\parse\grammar.tab.pre.h ..\..\gst\parse\grammar.tab.h \ - copy /y ..\..\gst\parse\lex._gst_parse_yy.pre.c ..\..\gst\parse\lex._gst_parse_yy.c \ - - -"..\..\gst\parse\lex._gst_parse_yy.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) - -"..\..\gst\parse\grammar.tab.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) - -"..\..\gst\parse\grammar.tab.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) -# End Custom Build - -!ELSEIF "$(CFG)" == "grammar - Win32 Debug" - -# Begin Custom Build -InputPath=..\..\gst\parse\grammar.y - -BuildCmds= \ - copy /y ..\..\gst\parse\grammar.tab.pre.c ..\..\gst\parse\grammar.tab.c \ - copy /y ..\..\gst\parse\grammar.tab.pre.h ..\..\gst\parse\grammar.tab.h \ - copy /y ..\..\gst\parse\lex._gst_parse_yy.pre.c ..\..\gst\parse\lex._gst_parse_yy.c \ - - -"..\..\gst\parse\lex._gst_parse_yy.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) - -"..\..\gst\parse\grammar.tab.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) - -"..\..\gst\parse\grammar.tab.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) -# End Custom Build - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gst.h -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=..\common\gstconfig.h - -!IF "$(CFG)" == "grammar - Win32 Release" - -# Begin Custom Build -InputPath=..\common\gstconfig.h - -"..\..\gstconfig.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - copy /y ..\common\gstconfig.h ..\..\gst - -# End Custom Build - -!ELSEIF "$(CFG)" == "grammar - Win32 Debug" - -# Begin Custom Build -InputPath=..\common\gstconfig.h - -"..\..\gstconfig.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - copy /y ..\common\gstconfig.h ..\..\gst - -# End Custom Build - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\common\gstenumtypes.c - -!IF "$(CFG)" == "grammar - Win32 Release" - -# Begin Custom Build -InputPath=..\common\gstenumtypes.c - -BuildCmds= \ - copy /y ..\common\gstenumtypes.c ..\..\gst\gstenumtypes.c \ - copy /y ..\common\gstenumtypes.h ..\..\gst\gstenumtypes.h \ - - -"..\..\gst\gstenumtypes.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) - -"..\..\gst\gstenumtypes.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) -# End Custom Build - -!ELSEIF "$(CFG)" == "grammar - Win32 Debug" - -# Begin Custom Build -InputPath=..\common\gstenumtypes.c - -BuildCmds= \ - copy /y ..\common\gstenumtypes.c ..\..\gst\gstenumtypes.c \ - copy /y ..\common\gstenumtypes.h ..\..\gst\gstenumtypes.h \ - - -"..\..\gst\gstenumtypes.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) - -"..\..\gst\gstenumtypes.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) -# End Custom Build - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmarshal.list - -!IF "$(CFG)" == "grammar - Win32 Release" - -# Begin Custom Build -InputPath=..\..\gst\gstmarshal.list - -BuildCmds= \ - echo #include "glib-object.h" > gstmarshal.c.tmp \ - echo #include "gstmarshal.h" >> gstmarshal.c.tmp \ - glib-genmarshal --body --prefix=gst_marshal ..\..\gst\gstmarshal.list >> gstmarshal.c.tmp \ - move gstmarshal.c.tmp ..\..\gst\gstmarshal.c \ - echo #include "gst/gstconfig.h" > gstmarshal.h.tmp \ - glib-genmarshal --header --prefix=gst_marshal ..\..\gst\gstmarshal.list >> gstmarshal.h.tmp \ - move gstmarshal.h.tmp ..\..\gst\gstmarshal.h \ - - -"..\..\gst\gstmarshal.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) - -"..\..\gst\gstmarshal.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) -# End Custom Build - -!ELSEIF "$(CFG)" == "grammar - Win32 Debug" - -# Begin Custom Build -InputPath=..\..\gst\gstmarshal.list - -BuildCmds= \ - echo #include "glib-object.h" > gstmarshal.c.tmp \ - echo #include "gstmarshal.h" >> gstmarshal.c.tmp \ - glib-genmarshal --body --prefix=gst_marshal ..\..\gst\gstmarshal.list >> gstmarshal.c.tmp \ - move gstmarshal.c.tmp ..\..\gst\gstmarshal.c \ - echo #include "gst/gstconfig.h" > gstmarshal.h.tmp \ - glib-genmarshal --header --prefix=gst_marshal ..\..\gst\gstmarshal.list >> gstmarshal.h.tmp \ - move gstmarshal.h.tmp ..\..\gst\gstmarshal.h \ - - -"..\..\gst\gstmarshal.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) - -"..\..\gst\gstmarshal.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - $(BuildCmds) -# End Custom Build - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\common\gstversion.h - -!IF "$(CFG)" == "grammar - Win32 Release" - -# Begin Custom Build -InputPath=..\common\gstversion.h - -"..\..\gst\gstversion.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - copy /y ..\common\gstversion.h ..\..\gst - -# End Custom Build - -!ELSEIF "$(CFG)" == "grammar - Win32 Debug" - -# Begin Custom Build -InputPath=..\common\gstversion.h - -"..\..\gst\gstversion.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - copy /y ..\common\gstversion.h ..\..\gst - -# End Custom Build - -!ENDIF - -# End Source File -# End Target -# End Project diff --git a/win32/vs6/gst_inspect.dsp b/win32/vs6/gst_inspect.dsp deleted file mode 100644 index 0608b43..0000000 --- a/win32/vs6/gst_inspect.dsp +++ /dev/null @@ -1,114 +0,0 @@ -# Microsoft Developer Studio Project File - Name="gst_inspect" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=gst_inspect - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "gst_inspect.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "gst_inspect.mak" CFG="gst_inspect - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "gst_inspect - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "gst_inspect - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "gst_inspect - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /I "../.." /I "../../libs" /I "../common" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /FD /c -# SUBTRACT CPP /YX -# ADD BASE RSC /l 0xc0a /d "NDEBUG" -# ADD RSC /l 0xc0a /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib intl.lib /nologo /subsystem:console /machine:I386 /out:"Release/gst-inspect-0.10.exe" -# Begin Special Build Tool -TargetPath=.\Release\gst-inspect-0.10.exe -SOURCE="$(InputPath)" -PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\bin -# End Special Build Tool - -!ELSEIF "$(CFG)" == "gst_inspect - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "../.." /I "../../libs" /I "../common" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /FD /GZ /c -# SUBTRACT CPP /YX -# ADD BASE RSC /l 0xc0a /d "_DEBUG" -# ADD RSC /l 0xc0a /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib intl.lib /nologo /subsystem:console /debug /machine:I386 /out:"Debug/gst-inspect-0.10.exe" /pdbtype:sept -# Begin Special Build Tool -TargetPath=.\Debug\gst-inspect-0.10.exe -SOURCE="$(InputPath)" -PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\debug\bin -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "gst_inspect - Win32 Release" -# Name "gst_inspect - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE="..\..\tools\gst-inspect.c" -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vs6/gst_launch.dsp b/win32/vs6/gst_launch.dsp deleted file mode 100644 index cc9083c..0000000 --- a/win32/vs6/gst_launch.dsp +++ /dev/null @@ -1,114 +0,0 @@ -# Microsoft Developer Studio Project File - Name="gst_launch" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=gst_launch - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "gst_launch.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "gst_launch.mak" CFG="gst_launch - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "gst_launch - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "gst_launch - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "gst_launch - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /I "../.." /I "../../libs" /I "../common" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /FD /c -# SUBTRACT CPP /YX -# ADD BASE RSC /l 0xc0a /d "NDEBUG" -# ADD RSC /l 0xc0a /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib /nologo /subsystem:console /machine:I386 /out:"Release/gst-launch-0.10.exe" -# Begin Special Build Tool -TargetPath=.\Release\gst-launch-0.10.exe -SOURCE="$(InputPath)" -PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\bin -# End Special Build Tool - -!ELSEIF "$(CFG)" == "gst_launch - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "../.." /I "../../libs" /I "../common" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /FD /GZ /c -# SUBTRACT CPP /YX -# ADD BASE RSC /l 0xc0a /d "_DEBUG" -# ADD RSC /l 0xc0a /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib /nologo /subsystem:console /debug /machine:I386 /out:"Debug/gst-launch-0.10.exe" /pdbtype:sept -# Begin Special Build Tool -TargetPath=.\Debug\gst-launch-0.10.exe -SOURCE="$(InputPath)" -PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\debug\bin -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "gst_launch - Win32 Release" -# Name "gst_launch - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE="..\..\tools\gst-launch.c" -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vs6/gstreamer.dsw b/win32/vs6/gstreamer.dsw deleted file mode 100644 index ae40f73..0000000 --- a/win32/vs6/gstreamer.dsw +++ /dev/null @@ -1,137 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "grammar"=".\grammar.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "gst_inspect"=".\gst_inspect.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libgstreamer - End Project Dependency -}}} - -############################################################################### - -Project: "gst_launch"=".\gst_launch.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libgstreamer - End Project Dependency -}}} - -############################################################################### - -Project: "libgstbase"=".\libgstbase.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libgstreamer - End Project Dependency -}}} - -############################################################################### - -Project: "libgstcontroller"=".\libgstcontroller.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libgstreamer - End Project Dependency -}}} - -############################################################################### - -Project: "libgstcoreelements"=".\libgstcoreelements.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libgstreamer - End Project Dependency - Begin Project Dependency - Project_Dep_Name libgstbase - End Project Dependency -}}} - -############################################################################### - -Project: "libgstnet"=".\libgstnet.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libgstreamer - End Project Dependency -}}} - -############################################################################### - -Project: "libgstreamer"=".\libgstreamer.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name grammar - End Project Dependency -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/win32/vs6/libgstbase.dsp b/win32/vs6/libgstbase.dsp deleted file mode 100644 index 6243aef..0000000 --- a/win32/vs6/libgstbase.dsp +++ /dev/null @@ -1,151 +0,0 @@ -# Microsoft Developer Studio Project File - Name="libgstbase" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=libgstbase - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "libgstbase.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "libgstbase.mak" CFG="libgstbase - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "libgstbase - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "libgstbase - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "libgstbase - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTBASE_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../.." /I "../../libs" /I "../common" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTBASE_EXPORTS" /D "HAVE_CONFIG_H" /FD /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc0a /d "NDEBUG" -# ADD RSC /l 0xc0a /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib /nologo /dll /machine:I386 /out:"Release/libgstbase-0.10.dll" -# Begin Special Build Tool -TargetPath=.\Release\libgstbase-0.10.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\bin -# End Special Build Tool - -!ELSEIF "$(CFG)" == "libgstbase - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTBASE_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../.." /I "../../libs" /I "../common" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTBASE_EXPORTS" /D "HAVE_CONFIG_H" /FR /FD /GZ /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc0a /d "_DEBUG" -# ADD RSC /l 0xc0a /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib /nologo /dll /debug /machine:I386 /out:"Debug/libgstbase-0.10.dll" /pdbtype:sept -# Begin Special Build Tool -TargetPath=.\Debug\libgstbase-0.10.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\debug\bin -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "libgstbase - Win32 Release" -# Name "libgstbase - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\libs\gst\base\gstadapter.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\base\gstbasesink.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\base\gstbasesrc.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\base\gstbasetransform.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\base\gstcollectpads.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\base\gstdataqueue.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\base\gstpushsrc.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\base\gsttypefindhelper.c -# End Source File -# Begin Source File - -SOURCE=..\common\libgstbase.def -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vs6/libgstcontroller.dsp b/win32/vs6/libgstcontroller.dsp deleted file mode 100644 index 59d2a12..0000000 --- a/win32/vs6/libgstcontroller.dsp +++ /dev/null @@ -1,155 +0,0 @@ -# Microsoft Developer Studio Project File - Name="libgstcontroller" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=libgstcontroller - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "libgstcontroller.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "libgstcontroller.mak" CFG="libgstcontroller - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "libgstcontroller - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "libgstcontroller - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "libgstcontroller - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTCONTROLLER_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../.." /I "../../libs" /I "../common" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTCONTROLLER_EXPORTS" /D "HAVE_CONFIG_H" /FD /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib /nologo /dll /machine:I386 /out:"Release/libgstcontroller-0.10.dll" -# Begin Special Build Tool -TargetPath=.\Release\libgstcontroller-0.10.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\bin -# End Special Build Tool - -!ELSEIF "$(CFG)" == "libgstcontroller - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTCONTROLLER_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../.." /I "../../libs" /I "../common" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTCONTROLLER_EXPORTS" /D "HAVE_CONFIG_H" /FD /GZ /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib /nologo /dll /debug /machine:I386 /out:"Debug/libgstcontroller-0.10.dll" /pdbtype:sept -# Begin Special Build Tool -TargetPath=.\Debug\libgstcontroller-0.10.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\debug\bin -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "libgstcontroller - Win32 Release" -# Name "libgstcontroller - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\libs\gst\controller\gstcontroller.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\controller\gstcontroller.h -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\controller\gstcontrolsource.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\controller\gsthelper.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\controller\gstinterpolation.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\controller\gstinterpolationcontrolsource.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\controller\gstlfocontrolsource.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\controller\lib.c -# End Source File -# Begin Source File - -SOURCE=..\common\libgstcontroller.def -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\..\libs\gst\controller\gstcontroller.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vs6/libgstcoreelements.dsp b/win32/vs6/libgstcoreelements.dsp deleted file mode 100644 index 08a5681..0000000 --- a/win32/vs6/libgstcoreelements.dsp +++ /dev/null @@ -1,163 +0,0 @@ -# Microsoft Developer Studio Project File - Name="libgstcoreelements" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=libgstcoreelements - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "libgstcoreelements.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "libgstcoreelements.mak" CFG="libgstcoreelements - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "libgstcoreelements - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "libgstcoreelements - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "libgstcoreelements - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTELEMENTS_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../.." /I "../../libs" /I "../common" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTELEMENTS_EXPORTS" /D "HAVE_CONFIG_H" /FD /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc0a /d "NDEBUG" -# ADD RSC /l 0xc0a /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib /nologo /dll /machine:I386 -# Begin Special Build Tool -TargetPath=.\Release\libgstcoreelements.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=mkdir c:\gstreamer\lib mkdir c:\gstreamer\lib\gstreamer-0.10 copy /Y $(TargetPath) c:\gstreamer\lib\gstreamer-0.10 -# End Special Build Tool - -!ELSEIF "$(CFG)" == "libgstcoreelements - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTELEMENTS_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../.." /I "../../libs" /I "../common" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTELEMENTS_EXPORTS" /D "HAVE_CONFIG_H" /FD /GZ /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0xc0a /d "_DEBUG" -# ADD RSC /l 0xc0a /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# Begin Special Build Tool -TargetPath=.\Debug\libgstcoreelements.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=mkdir c:\gstreamer\debug\lib mkdir c:\gstreamer\debug\lib\gstreamer-0.10 copy /Y $(TargetPath) c:\gstreamer\debug\lib\gstreamer-0.10 -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "libgstcoreelements - Win32 Release" -# Name "libgstcoreelements - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\plugins\elements\gstbufferstore.c -# End Source File -# Begin Source File - -SOURCE=..\..\plugins\elements\gstcapsfilter.c -# End Source File -# Begin Source File - -SOURCE=..\..\plugins\elements\gstelements.c -# End Source File -# Begin Source File - -SOURCE=..\..\plugins\elements\gstfakesink.c -# End Source File -# Begin Source File - -SOURCE=..\..\plugins\elements\gstfakesrc.c -# End Source File -# Begin Source File - -SOURCE=..\..\plugins\elements\gstfilesink.c -# End Source File -# Begin Source File - -SOURCE=..\..\plugins\elements\gstfilesrc.c -# End Source File -# Begin Source File - -SOURCE=..\..\plugins\elements\gstidentity.c -# End Source File -# Begin Source File - -SOURCE=..\..\plugins\elements\gstmultiqueue.c -# End Source File -# Begin Source File - -SOURCE=..\..\plugins\elements\gstqueue.c -# End Source File -# Begin Source File - -SOURCE=..\..\plugins\elements\gsttee.c -# End Source File -# Begin Source File - -SOURCE=..\..\plugins\elements\gsttypefindelement.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vs6/libgstnet.dsp b/win32/vs6/libgstnet.dsp deleted file mode 100644 index 7951948..0000000 --- a/win32/vs6/libgstnet.dsp +++ /dev/null @@ -1,147 +0,0 @@ -# Microsoft Developer Studio Project File - Name="libgstnet" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=libgstnet - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "libgstnet.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "libgstnet.mak" CFG="libgstnet - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "libgstnet - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "libgstnet - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "libgstnet - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTNET_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../.." /I "../../libs" /I "../common" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTNET_EXPORTS" /D "HAVE_CONFIG_H" /FD /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib Ws2_32.lib /nologo /dll /machine:I386 /out:"Release/libgstnet-0.10.dll" -# Begin Special Build Tool -TargetPath=.\Release\libgstnet-0.10.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\bin -# End Special Build Tool - -!ELSEIF "$(CFG)" == "libgstnet - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTNET_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../.." /I "../../libs" /I "../common" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTNET_EXPORTS" /D "HAVE_CONFIG_H" /FD /GZ /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib Ws2_32.lib /nologo /dll /debug /machine:I386 /out:"Debug/libgstnet-0.10.dll" /pdbtype:sept -# Begin Special Build Tool -TargetPath=.\Debug\libgstnet-0.10.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=copy /Y $(TargetPath) c:\gstreamer\debug\bin -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "libgstnet - Win32 Release" -# Name "libgstnet - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\libs\gst\net\gstnetclientclock.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\net\gstnettimepacket.c -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\net\gstnettimeprovider.c -# End Source File -# Begin Source File - -SOURCE=..\common\libgstnet.def -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\libs\gst\net\gstnet.h -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\net\gstnetclientclock.h -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\net\gstnettimepacket.h -# End Source File -# Begin Source File - -SOURCE=..\..\libs\gst\net\gstnettimeprovider.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vs6/libgstreamer.dsp b/win32/vs6/libgstreamer.dsp deleted file mode 100644 index 9de8877..0000000 --- a/win32/vs6/libgstreamer.dsp +++ /dev/null @@ -1,555 +0,0 @@ -# Microsoft Developer Studio Project File - Name="libgstreamer" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=libgstreamer - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "libgstreamer.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "libgstreamer.mak" CFG="libgstreamer - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "libgstreamer - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "libgstreamer - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "libgstreamer - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /O2 /I "." /I "../.." /I "../common" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /D "HAVE_CONFIG_H" /D "HAVE_WIN32" /FD /c -# SUBTRACT CPP /YX /Yc /Yu -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x40c /d "NDEBUG" -# ADD RSC /l 0x40c /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 glib-2.0.lib gobject-2.0.lib gthread-2.0.lib gmodule-2.0.lib libxml2.lib /nologo /dll /machine:I386 /out:"Release/libgstreamer-0.10.dll" -# Begin Special Build Tool -TargetPath=.\Release\libgstreamer-0.10.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=mkdir c:\gstreamer mkdir c:\gstreamer\bin copy /Y $(TargetPath) c:\gstreamer\bin -# End Special Build Tool - -!ELSEIF "$(CFG)" == "libgstreamer - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /I "." /I "../.." /I "../common" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBGSTREAMER_EXPORTS" /D "HAVE_CONFIG_H" /D "HAVE_WIN32" /FR /FD /GZ /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x40c /d "_DEBUG" -# ADD RSC /l 0x40c /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib gthread-2.0D.lib gmodule-2.0D.lib libxml2D.lib /nologo /dll /debug /machine:I386 /out:"Debug/libgstreamer-0.10.dll" /pdbtype:sept -# Begin Special Build Tool -TargetPath=.\Debug\libgstreamer-0.10.dll -SOURCE="$(InputPath)" -PostBuild_Cmds=mkdir c:\gstreamer\debug mkdir c:\gstreamer\debug\bin copy /Y $(TargetPath) c:\gstreamer\debug\bin -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "libgstreamer - Win32 Release" -# Name "libgstreamer - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\common\dirent.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\parse\grammar.tab.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gst.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbin.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbuffer.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbus.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstcaps.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstchildproxy.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstclock.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstdebugutils.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstelement.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstelementfactory.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstenumtypes.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsterror.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstevent.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstfilter.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstformat.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstghostpad.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstindex.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstindexfactory.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstinfo.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstinterface.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstiterator.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmarshal.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmessage.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstminiobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstobject.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpad.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpadtemplate.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstparamspecs.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstparse.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpipeline.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstplugin.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpluginfeature.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstquark.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstquery.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstregistry.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstregistryxml.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstsegment.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gststructure.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstsystemclock.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttaglist.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttagsetter.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttask.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttrace.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttypefind.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttypefindfactory.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsturi.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstutils.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstvalue.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstxml.c -# End Source File -# Begin Source File - -SOURCE=..\..\gst\parse\lex._gst_parse_yy.c -# End Source File -# Begin Source File - -SOURCE=..\common\libgstreamer.def -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\gst\gettext.h -# End Source File -# Begin Source File - -SOURCE="..\..\gst\glib-compat.h" -# End Source File -# Begin Source File - -SOURCE="..\..\gst\gst-i18n-app.h" -# End Source File -# Begin Source File - -SOURCE="..\..\gst\gst-i18n-lib.h" -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gst.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gst_private.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbin.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbuffer.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstbus.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstcaps.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstchildproxy.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstclock.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstcompat.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstconfig.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstconfig.h.in -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstelement.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstelementfactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstenumtypes.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsterror.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstevent.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstfilter.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstformat.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstghostpad.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstindex.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstindexfactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstinfo.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstinterface.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstiterator.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmacros.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmarshal.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmemchunk.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstmessage.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstminiobject.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstobject.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpad.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpadtemplate.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstparse.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpipeline.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstplugin.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstpluginfeature.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstquery.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstregistry.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstsegment.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gststructure.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstsystemclock.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttaglist.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttagsetter.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttask.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttrace.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttrashstack.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttypefind.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsttypefindfactory.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gsturi.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstutils.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstvalue.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstversion.h -# End Source File -# Begin Source File - -SOURCE=..\..\gst\gstxml.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/win32/vs7/grammar.vcproj b/win32/vs7/grammar.vcproj deleted file mode 100644 index acffa66..0000000 --- a/win32/vs7/grammar.vcproj +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs7/gst-inspect.vcproj b/win32/vs7/gst-inspect.vcproj deleted file mode 100644 index 0155051..0000000 --- a/win32/vs7/gst-inspect.vcproj +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs7/gst-launch.vcproj b/win32/vs7/gst-launch.vcproj deleted file mode 100644 index 6797cf7..0000000 --- a/win32/vs7/gst-launch.vcproj +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs7/gstreamer.sln b/win32/vs7/gstreamer.sln deleted file mode 100644 index 2552243..0000000 --- a/win32/vs7/gstreamer.sln +++ /dev/null @@ -1,76 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grammar", "grammar.vcproj", "{6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gst-inspect", "gst-inspect.vcproj", "{8064BB40-20BE-4EDE-A555-C57D314B7CE9}" - ProjectSection(ProjectDependencies) = postProject - {F987873B-2B88-4B1B-B627-F70DF4F91E49} = {F987873B-2B88-4B1B-B627-F70DF4F91E49} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gst-launch", "gst-launch.vcproj", "{5E59E796-C097-4FB7-A944-9063CF9BD300}" - ProjectSection(ProjectDependencies) = postProject - {F987873B-2B88-4B1B-B627-F70DF4F91E49} = {F987873B-2B88-4B1B-B627-F70DF4F91E49} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgstbase", "libgstbase.vcproj", "{4D7BC403-583B-4725-BD87-A4A2B7FD8156}" - ProjectSection(ProjectDependencies) = postProject - {F987873B-2B88-4B1B-B627-F70DF4F91E49} = {F987873B-2B88-4B1B-B627-F70DF4F91E49} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgstcontroller", "libgstcontroller.vcproj", "{5B28E515-C92B-4CF2-9963-AC6EFB8B2A5C}" - ProjectSection(ProjectDependencies) = postProject - {F987873B-2B88-4B1B-B627-F70DF4F91E49} = {F987873B-2B88-4B1B-B627-F70DF4F91E49} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgstcoreelements", "libgstcoreelements.vcproj", "{62D7358C-6880-40EA-93FF-21B69376C7F0}" - ProjectSection(ProjectDependencies) = postProject - {4D7BC403-583B-4725-BD87-A4A2B7FD8156} = {4D7BC403-583B-4725-BD87-A4A2B7FD8156} - {F987873B-2B88-4B1B-B627-F70DF4F91E49} = {F987873B-2B88-4B1B-B627-F70DF4F91E49} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgstreamer", "libgstreamer.vcproj", "{F987873B-2B88-4B1B-B627-F70DF4F91E49}" - ProjectSection(ProjectDependencies) = postProject - {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7} = {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7}.Debug.ActiveCfg = Debug|Win32 - {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7}.Debug.Build.0 = Debug|Win32 - {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7}.Release.ActiveCfg = Release|Win32 - {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7}.Release.Build.0 = Release|Win32 - {8064BB40-20BE-4EDE-A555-C57D314B7CE9}.Debug.ActiveCfg = Debug|Win32 - {8064BB40-20BE-4EDE-A555-C57D314B7CE9}.Debug.Build.0 = Debug|Win32 - {8064BB40-20BE-4EDE-A555-C57D314B7CE9}.Release.ActiveCfg = Release|Win32 - {8064BB40-20BE-4EDE-A555-C57D314B7CE9}.Release.Build.0 = Release|Win32 - {5E59E796-C097-4FB7-A944-9063CF9BD300}.Debug.ActiveCfg = Debug|Win32 - {5E59E796-C097-4FB7-A944-9063CF9BD300}.Debug.Build.0 = Debug|Win32 - {5E59E796-C097-4FB7-A944-9063CF9BD300}.Release.ActiveCfg = Release|Win32 - {5E59E796-C097-4FB7-A944-9063CF9BD300}.Release.Build.0 = Release|Win32 - {4D7BC403-583B-4725-BD87-A4A2B7FD8156}.Debug.ActiveCfg = Debug|Win32 - {4D7BC403-583B-4725-BD87-A4A2B7FD8156}.Debug.Build.0 = Debug|Win32 - {4D7BC403-583B-4725-BD87-A4A2B7FD8156}.Release.ActiveCfg = Release|Win32 - {4D7BC403-583B-4725-BD87-A4A2B7FD8156}.Release.Build.0 = Release|Win32 - {5B28E515-C92B-4CF2-9963-AC6EFB8B2A5C}.Debug.ActiveCfg = Debug|Win32 - {5B28E515-C92B-4CF2-9963-AC6EFB8B2A5C}.Debug.Build.0 = Debug|Win32 - {5B28E515-C92B-4CF2-9963-AC6EFB8B2A5C}.Release.ActiveCfg = Release|Win32 - {5B28E515-C92B-4CF2-9963-AC6EFB8B2A5C}.Release.Build.0 = Release|Win32 - {62D7358C-6880-40EA-93FF-21B69376C7F0}.Debug.ActiveCfg = Debug|Win32 - {62D7358C-6880-40EA-93FF-21B69376C7F0}.Debug.Build.0 = Debug|Win32 - {62D7358C-6880-40EA-93FF-21B69376C7F0}.Release.ActiveCfg = Release|Win32 - {62D7358C-6880-40EA-93FF-21B69376C7F0}.Release.Build.0 = Release|Win32 - {F987873B-2B88-4B1B-B627-F70DF4F91E49}.Debug.ActiveCfg = Debug|Win32 - {F987873B-2B88-4B1B-B627-F70DF4F91E49}.Debug.Build.0 = Debug|Win32 - {F987873B-2B88-4B1B-B627-F70DF4F91E49}.Release.ActiveCfg = Release|Win32 - {F987873B-2B88-4B1B-B627-F70DF4F91E49}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/win32/vs7/libgstbase.vcproj b/win32/vs7/libgstbase.vcproj deleted file mode 100644 index 54787bd..0000000 --- a/win32/vs7/libgstbase.vcproj +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs7/libgstcontroller.vcproj b/win32/vs7/libgstcontroller.vcproj deleted file mode 100644 index e756be3..0000000 --- a/win32/vs7/libgstcontroller.vcproj +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs7/libgstcoreelements.vcproj b/win32/vs7/libgstcoreelements.vcproj deleted file mode 100644 index 6dffc03..0000000 --- a/win32/vs7/libgstcoreelements.vcproj +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs7/libgstreamer.vcproj b/win32/vs7/libgstreamer.vcproj deleted file mode 100644 index 1bd2a6f..0000000 --- a/win32/vs7/libgstreamer.vcproj +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs8/grammar.vcproj b/win32/vs8/grammar.vcproj deleted file mode 100644 index 0a292c0..0000000 --- a/win32/vs8/grammar.vcproj +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs8/gst-inspect.vcproj b/win32/vs8/gst-inspect.vcproj deleted file mode 100644 index 6b6e054..0000000 --- a/win32/vs8/gst-inspect.vcproj +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs8/gst-launch.vcproj b/win32/vs8/gst-launch.vcproj deleted file mode 100644 index f178e6b..0000000 --- a/win32/vs8/gst-launch.vcproj +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs8/gstreamer.sln b/win32/vs8/gstreamer.sln deleted file mode 100644 index 83803ad..0000000 --- a/win32/vs8/gstreamer.sln +++ /dev/null @@ -1,75 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grammar", "grammar.vcproj", "{6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gst-inspect", "gst-inspect.vcproj", "{8064BB40-20BE-4EDE-A555-C57D314B7CE9}" - ProjectSection(ProjectDependencies) = postProject - {F987873B-2B88-4B1B-B627-F70DF4F91E49} = {F987873B-2B88-4B1B-B627-F70DF4F91E49} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gst-launch", "gst-launch.vcproj", "{5E59E796-C097-4FB7-A944-9063CF9BD300}" - ProjectSection(ProjectDependencies) = postProject - {F987873B-2B88-4B1B-B627-F70DF4F91E49} = {F987873B-2B88-4B1B-B627-F70DF4F91E49} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgstbase", "libgstbase.vcproj", "{4D7BC403-583B-4725-BD87-A4A2B7FD8156}" - ProjectSection(ProjectDependencies) = postProject - {F987873B-2B88-4B1B-B627-F70DF4F91E49} = {F987873B-2B88-4B1B-B627-F70DF4F91E49} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgstcontroller", "libgstcontroller.vcproj", "{5B28E515-C92B-4CF2-9963-AC6EFB8B2A5C}" - ProjectSection(ProjectDependencies) = postProject - {F987873B-2B88-4B1B-B627-F70DF4F91E49} = {F987873B-2B88-4B1B-B627-F70DF4F91E49} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgstcoreelements", "libgstcoreelements.vcproj", "{62D7358C-6880-40EA-93FF-21B69376C7F0}" - ProjectSection(ProjectDependencies) = postProject - {4D7BC403-583B-4725-BD87-A4A2B7FD8156} = {4D7BC403-583B-4725-BD87-A4A2B7FD8156} - {F987873B-2B88-4B1B-B627-F70DF4F91E49} = {F987873B-2B88-4B1B-B627-F70DF4F91E49} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgstreamer", "libgstreamer.vcproj", "{F987873B-2B88-4B1B-B627-F70DF4F91E49}" - ProjectSection(ProjectDependencies) = postProject - {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7} = {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7}.Debug|Win32.ActiveCfg = Debug|Win32 - {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7}.Debug|Win32.Build.0 = Debug|Win32 - {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7}.Release|Win32.ActiveCfg = Release|Win32 - {6D7EB3D4-7E91-4D98-80EA-28A8F2E365F7}.Release|Win32.Build.0 = Release|Win32 - {8064BB40-20BE-4EDE-A555-C57D314B7CE9}.Debug|Win32.ActiveCfg = Debug|Win32 - {8064BB40-20BE-4EDE-A555-C57D314B7CE9}.Debug|Win32.Build.0 = Debug|Win32 - {8064BB40-20BE-4EDE-A555-C57D314B7CE9}.Release|Win32.ActiveCfg = Release|Win32 - {8064BB40-20BE-4EDE-A555-C57D314B7CE9}.Release|Win32.Build.0 = Release|Win32 - {5E59E796-C097-4FB7-A944-9063CF9BD300}.Debug|Win32.ActiveCfg = Debug|Win32 - {5E59E796-C097-4FB7-A944-9063CF9BD300}.Debug|Win32.Build.0 = Debug|Win32 - {5E59E796-C097-4FB7-A944-9063CF9BD300}.Release|Win32.ActiveCfg = Release|Win32 - {5E59E796-C097-4FB7-A944-9063CF9BD300}.Release|Win32.Build.0 = Release|Win32 - {4D7BC403-583B-4725-BD87-A4A2B7FD8156}.Debug|Win32.ActiveCfg = Debug|Win32 - {4D7BC403-583B-4725-BD87-A4A2B7FD8156}.Debug|Win32.Build.0 = Debug|Win32 - {4D7BC403-583B-4725-BD87-A4A2B7FD8156}.Release|Win32.ActiveCfg = Release|Win32 - {4D7BC403-583B-4725-BD87-A4A2B7FD8156}.Release|Win32.Build.0 = Release|Win32 - {5B28E515-C92B-4CF2-9963-AC6EFB8B2A5C}.Debug|Win32.ActiveCfg = Debug|Win32 - {5B28E515-C92B-4CF2-9963-AC6EFB8B2A5C}.Debug|Win32.Build.0 = Debug|Win32 - {5B28E515-C92B-4CF2-9963-AC6EFB8B2A5C}.Release|Win32.ActiveCfg = Release|Win32 - {5B28E515-C92B-4CF2-9963-AC6EFB8B2A5C}.Release|Win32.Build.0 = Release|Win32 - {62D7358C-6880-40EA-93FF-21B69376C7F0}.Debug|Win32.ActiveCfg = Debug|Win32 - {62D7358C-6880-40EA-93FF-21B69376C7F0}.Debug|Win32.Build.0 = Debug|Win32 - {62D7358C-6880-40EA-93FF-21B69376C7F0}.Release|Win32.ActiveCfg = Release|Win32 - {62D7358C-6880-40EA-93FF-21B69376C7F0}.Release|Win32.Build.0 = Release|Win32 - {F987873B-2B88-4B1B-B627-F70DF4F91E49}.Debug|Win32.ActiveCfg = Debug|Win32 - {F987873B-2B88-4B1B-B627-F70DF4F91E49}.Debug|Win32.Build.0 = Debug|Win32 - {F987873B-2B88-4B1B-B627-F70DF4F91E49}.Release|Win32.ActiveCfg = Release|Win32 - {F987873B-2B88-4B1B-B627-F70DF4F91E49}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/win32/vs8/libgstbase.vcproj b/win32/vs8/libgstbase.vcproj deleted file mode 100644 index fd4c847..0000000 --- a/win32/vs8/libgstbase.vcproj +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs8/libgstcontroller.vcproj b/win32/vs8/libgstcontroller.vcproj deleted file mode 100644 index 7d14337..0000000 --- a/win32/vs8/libgstcontroller.vcproj +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs8/libgstcoreelements.vcproj b/win32/vs8/libgstcoreelements.vcproj deleted file mode 100644 index 893cea7..0000000 --- a/win32/vs8/libgstcoreelements.vcproj +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/win32/vs8/libgstreamer.vcproj b/win32/vs8/libgstreamer.vcproj deleted file mode 100644 index 6083780..0000000 --- a/win32/vs8/libgstreamer.vcproj +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -