Mercurial > mplayer.hg
changeset 1063:269780d31b51
added missing 'using namespace std;' for gcc 3.0
author | arpi_esp |
---|---|
date | Sat, 09 Jun 2001 00:10:50 +0000 |
parents | 936b28a365e6 |
children | be1d5b1abffa |
files | loader/dshow/DS_AudioDec.c loader/dshow/DS_VideoDec.c loader/dshow/outputpin.c |
diffstat | 3 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/loader/dshow/DS_AudioDec.c Sat Jun 09 00:00:57 2001 +0000 +++ b/loader/dshow/DS_AudioDec.c Sat Jun 09 00:10:50 2001 +0000 @@ -14,6 +14,8 @@ #include <except.h> #define __MODULE__ "DirectShow_AudioDecoder" +using namespace std; + #include <errno.h> #ifdef HAVE_MALLOC_H #include <malloc.h>
--- a/loader/dshow/DS_VideoDec.c Sat Jun 09 00:00:57 2001 +0000 +++ b/loader/dshow/DS_VideoDec.c Sat Jun 09 00:10:50 2001 +0000 @@ -14,6 +14,8 @@ #include <except.h> #define __MODULE__ "DirectShow_VideoDecoder" +using namespace std; + #include <errno.h> #ifdef HAVE_MALLOC_H #include <malloc.h>
--- a/loader/dshow/outputpin.c Sat Jun 09 00:00:57 2001 +0000 +++ b/loader/dshow/outputpin.c Sat Jun 09 00:10:50 2001 +0000 @@ -1,6 +1,7 @@ #include <cstdio> -#include <string> +#include <cstring> +//#include <string> #include "outputpin.h" #include "allocator.h" @@ -12,6 +13,8 @@ Returned by COutputPin through call IPin::EnumMediaTypes(). */ +using namespace std; + class CEnumMediaTypes: public IEnumMediaTypes { AM_MEDIA_TYPE type;