summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2001-10-11 23:28:58 +0000
committerMichael Niedermayer <michaelni@gmx.at>2001-10-11 23:28:58 +0000
commit67b4cf184ae33562d5fcdd4d7adc13f8f392dbc3 (patch)
tree04da846a94d5f30d3a4b66398c714de61d796639 /postproc
parentd5a1a995186c848dac82c2eaf8316d91402d35c4 (diff)
downloadffmpeg-streaming-67b4cf184ae33562d5fcdd4d7adc13f8f392dbc3.zip
ffmpeg-streaming-67b4cf184ae33562d5fcdd4d7adc13f8f392dbc3.tar.gz
final changes to convert to C
Originally committed as revision 2170 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r--postproc/postprocess.c4
-rw-r--r--postproc/postprocess.h18
-rw-r--r--postproc/postprocess_template.c4
3 files changed, 13 insertions, 13 deletions
diff --git a/postproc/postprocess.c b/postproc/postprocess.c
index 34ffbe0..45a9dc8 100644
--- a/postproc/postprocess.c
+++ b/postproc/postprocess.c
@@ -1606,7 +1606,7 @@ FIND_MIN_MAX(%%ebx, %1, 2)
* the mode value is interpreted as a quality value if its negative, its range is then (-1 ... -63)
* -63 is best quality -1 is worst
*/
-extern "C"{
+//extern "C"{
void postprocess(unsigned char * src[], int src_stride,
unsigned char * dst[], int dst_stride,
int horizontal_size, int vertical_size,
@@ -1669,7 +1669,7 @@ int getModeForQuality(int quality){
return modes[ (quality*6) >>6 ];
}
-} // extern "C"
+//} // extern "C"
/**
* Copies a block from src to dst and fixes the blacklevel
diff --git a/postproc/postprocess.h b/postproc/postprocess.h
index 3ae49f0..f838534 100644
--- a/postproc/postprocess.h
+++ b/postproc/postprocess.h
@@ -64,17 +64,17 @@
#define PAVGB(a,b) "pavgusb " #a ", " #b " \n\t"
#endif
-#ifdef __cplusplus
+//#ifdef __cplusplus
//#include <inttypes.h>
void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
QP_STORE_T QPs[], int QPStride, int isColor, int mode);
-#endif
+//#endif
-#ifdef __cplusplus
-extern "C"
-{
-#endif
+//#ifdef __cplusplus
+//extern "C"
+//{
+//#endif
void postprocess(unsigned char * src[], int src_stride,
unsigned char * dst[], int dst_stride,
int horizontal_size, int vertical_size,
@@ -82,9 +82,9 @@ void postprocess(unsigned char * src[], int src_stride,
int mode);
int getModeForQuality(int quality);
-#ifdef __cplusplus
-}
-#endif
+//#ifdef __cplusplus
+//}
+//#endif
#endif
diff --git a/postproc/postprocess_template.c b/postproc/postprocess_template.c
index 34ffbe0..45a9dc8 100644
--- a/postproc/postprocess_template.c
+++ b/postproc/postprocess_template.c
@@ -1606,7 +1606,7 @@ FIND_MIN_MAX(%%ebx, %1, 2)
* the mode value is interpreted as a quality value if its negative, its range is then (-1 ... -63)
* -63 is best quality -1 is worst
*/
-extern "C"{
+//extern "C"{
void postprocess(unsigned char * src[], int src_stride,
unsigned char * dst[], int dst_stride,
int horizontal_size, int vertical_size,
@@ -1669,7 +1669,7 @@ int getModeForQuality(int quality){
return modes[ (quality*6) >>6 ];
}
-} // extern "C"
+//} // extern "C"
/**
* Copies a block from src to dst and fixes the blacklevel
OpenPOWER on IntegriCloud