diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-10-29 18:51:52 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-10-29 18:51:52 +0000 |
commit | 9cb54f431196c09460510abf7c72a094e28ef5e3 (patch) | |
tree | ae3d49023aef00239340fa98e7afc5d87b7c0787 /postproc/postprocess.c | |
parent | ec487e5db84a57d5c3ad49c111bb25c6054919fe (diff) | |
download | ffmpeg-9cb54f431196c09460510abf7c72a094e28ef5e3.tar.gz |
cosmetics ;)
prefixing all functions with pp_ to avoid namespace issues
Originally committed as revision 7962 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/postprocess.c')
-rw-r--r-- | postproc/postprocess.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/postproc/postprocess.c b/postproc/postprocess.c index 599d6064b7..f3914ecdc7 100644 --- a/postproc/postprocess.c +++ b/postproc/postprocess.c @@ -587,7 +587,7 @@ char *postproc_help= * name is the string after "-pp" on the command line * quality is a number from 0 to GET_PP_QUALITY_MAX */ -struct PPMode getPPModeByNameAndQuality(char *name, int quality) +struct PPMode pp_get_mode_by_name_and_quality(char *name, int quality) { char temp[GET_MODE_BUFFER_SIZE]; char *p= temp; @@ -765,7 +765,7 @@ struct PPMode getPPModeByNameAndQuality(char *name, int quality) return ppMode; } -void *getPPContext(int width, int height){ +void *pp_get_context(int width, int height){ PPContext *c= memalign(32, sizeof(PPContext)); int i; int mbWidth = (width+15)>>4; @@ -799,7 +799,7 @@ void *getPPContext(int width, int height){ return c; } -void freePPContext(void *vc){ +void pp_free_context(void *vc){ PPContext *c = (PPContext*)vc; int i; @@ -844,7 +844,7 @@ void revertPPOpt(void *conf, char* opt) } -void postprocess(uint8_t * src[3], int srcStride[3], +void pp_postprocess(uint8_t * src[3], int srcStride[3], uint8_t * dst[3], int dstStride[3], int width, int height, QP_STORE_T *QP_store, int QPStride, |