summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-10 00:37:18 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-10 00:37:18 +0000
commit682168c5c4263593069f9a7660785bc82250dea5 (patch)
tree5f64410f80b1a13b26dd777a39e1d25998ec59d5 /loader
parent1f398d061f34b6b3e7703d4ce62475c74a03160b (diff)
downloadmpv-682168c5c4263593069f9a7660785bc82250dea5.tar.bz2
mpv-682168c5c4263593069f9a7660785bc82250dea5.tar.xz
The "bad" "using namespace std" was removed :)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1083 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r--loader/dshow/DS_AudioDec.c2
-rw-r--r--loader/dshow/DS_VideoDec.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/loader/dshow/DS_AudioDec.c b/loader/dshow/DS_AudioDec.c
index b013f5a1d5..f3207f023a 100644
--- a/loader/dshow/DS_AudioDec.c
+++ b/loader/dshow/DS_AudioDec.c
@@ -10,6 +10,7 @@
//#include "DS_AudioDecoder.h"
//#include <string.h>
+using namespace std;
#include <stdlib.h>
#include <except.h>
#define __MODULE__ "DirectShow_AudioDecoder"
@@ -50,7 +51,6 @@ const GUID MEDIASUBTYPE_PCM={
0x00000001, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71};
-using namespace std;
extern "C" char* def_path;
static DS_Filter* dsf=0;
diff --git a/loader/dshow/DS_VideoDec.c b/loader/dshow/DS_VideoDec.c
index 645cd1894b..cae96cf5d9 100644
--- a/loader/dshow/DS_VideoDec.c
+++ b/loader/dshow/DS_VideoDec.c
@@ -10,6 +10,7 @@
//#include "DS_VideoDecoder.h"
//#include <string.h>
+using namespace std;
#include <stdlib.h>
#include <except.h>
#define __MODULE__ "DirectShow_VideoDecoder"
@@ -44,7 +45,6 @@
#include "DS_VideoDec.h"
-using namespace std;
extern "C" char* def_path;
static char** m_destptr=0;