mirror of
https://github.com/mpv-player/mpv
synced 2025-01-30 19:52:14 +00:00
added missing 'using namespace std;' for gcc 3.0
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1064 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
47c9dcec30
commit
55e418923b
@ -14,6 +14,8 @@
|
||||
#include <except.h>
|
||||
#define __MODULE__ "DirectShow_AudioDecoder"
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include <errno.h>
|
||||
#ifdef HAVE_MALLOC_H
|
||||
#include <malloc.h>
|
||||
|
@ -14,6 +14,8 @@
|
||||
#include <except.h>
|
||||
#define __MODULE__ "DirectShow_VideoDecoder"
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include <errno.h>
|
||||
#ifdef HAVE_MALLOC_H
|
||||
#include <malloc.h>
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user