small changes for mplayer integration:

- getModeForQuality -> getPpModeForQuality renamed
- #define POSTPROCESS_H -> NEWPOSTPROCESS_H  (to avoid conflicts)

Originally committed as revision 2187 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
This commit is contained in:
Arpi 2001-10-13 15:38:19 +00:00
parent 9a722af7f3
commit 9f3328bc91
1 changed files with 8 additions and 9 deletions

View File

@ -16,9 +16,9 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
// POSTPROCESS_H is defined by opendivx's postprocess.h
#ifndef POSTPROCESS_H #ifndef NEWPOSTPROCESS_H
#define POSTPROCESS_H #define NEWPOSTPROCESS_H
#define BLOCK_SIZE 8 #define BLOCK_SIZE 8
#define TEMP_STRIDE 8 #define TEMP_STRIDE 8
@ -66,8 +66,8 @@
//#ifdef __cplusplus //#ifdef __cplusplus
//#include <inttypes.h> //#include <inttypes.h>
void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height, //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); // QP_STORE_T QPs[], int QPStride, int isColor, int mode);
//#endif //#endif
//#ifdef __cplusplus //#ifdef __cplusplus
@ -77,13 +77,12 @@ void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int
void postprocess(unsigned char * src[], int src_stride, void postprocess(unsigned char * src[], int src_stride,
unsigned char * dst[], int dst_stride, unsigned char * dst[], int dst_stride,
int horizontal_size, int vertical_size, int horizontal_size, int vertical_size,
QP_STORE_T *QP_store, int QP_stride, QP_STORE_T *QP_store, int QP_stride, int mode);
int mode); int getPpModeForQuality(int quality);
int getModeForQuality(int quality);
//#ifdef __cplusplus //#ifdef __cplusplus
//} //}
//#endif //#endif
#define GET_PP_QUALITY_MAX 6
#endif #endif