summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-03 18:33:28 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-03 18:33:28 +0000
commitc68f67e2e06664fd36293cf744b5bf043d68a00e (patch)
treeff2f9a20f90cd32909d73ce9750600c87c092fb2 /libvo
parentc22e181e2c057551a5f6e88c73c80ff67b479bea (diff)
downloadmpv-c68f67e2e06664fd36293cf744b5bf043d68a00e.tar.bz2
mpv-c68f67e2e06664fd36293cf744b5bf043d68a00e.tar.xz
removed obsolete my_profile
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10517 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/osd.c2
-rw-r--r--libvo/osd_template.c6
2 files changed, 0 insertions, 8 deletions
diff --git a/libvo/osd.c b/libvo/osd.c
index da8096ac19..6c45b88c6c 100644
--- a/libvo/osd.c
+++ b/libvo/osd.c
@@ -8,8 +8,6 @@
#include "config.h"
#include "osd.h"
#include "mp_msg.h"
-//#define ENABLE_PROFILE
-#include "../my_profile.h"
#include <inttypes.h>
#include "../cpudetect.h"
#include "../mangle.h"
diff --git a/libvo/osd_template.c b/libvo/osd_template.c
index 65cacea717..a4b2a59693 100644
--- a/libvo/osd_template.c
+++ b/libvo/osd_template.c
@@ -32,7 +32,6 @@ static inline void RENAME(vo_draw_alpha_yv12)(int w,int h, unsigned char* src, u
#if defined(FAST_OSD) && !defined(HAVE_MMX)
w=w>>1;
#endif
-PROFILE_START();
for(y=0;y<h;y++){
register int x;
#ifdef HAVE_MMX
@@ -91,7 +90,6 @@ PROFILE_START();
#ifdef HAVE_MMX
asm volatile(EMMS:::"memory");
#endif
-PROFILE_END("vo_draw_alpha_yv12");
return;
}
@@ -100,7 +98,6 @@ static inline void RENAME(vo_draw_alpha_yuy2)(int w,int h, unsigned char* src, u
#if defined(FAST_OSD) && !defined(HAVE_MMX)
w=w>>1;
#endif
-PROFILE_START();
for(y=0;y<h;y++){
register int x;
#ifdef HAVE_MMX
@@ -160,7 +157,6 @@ PROFILE_START();
#ifdef HAVE_MMX
asm volatile(EMMS:::"memory");
#endif
-PROFILE_END("vo_draw_alpha_yuy2");
return;
}
@@ -268,7 +264,6 @@ static inline void RENAME(vo_draw_alpha_rgb24)(int w,int h, unsigned char* src,
static inline void RENAME(vo_draw_alpha_rgb32)(int w,int h, unsigned char* src, unsigned char *srca, int srcstride, unsigned char* dstbase,int dststride){
int y;
-PROFILE_START();
#ifdef WORDS_BIGENDIAN
dstbase++;
#endif
@@ -420,6 +415,5 @@ PROFILE_START();
#ifdef HAVE_MMX
asm volatile(EMMS:::"memory");
#endif
-PROFILE_END("vo_draw_alpha_rgb32");
return;
}