change sws_format_name to return const char*, supress many warnings

Originally committed as revision 26183 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
Baptiste Coudurier 2008-03-06 11:32:25 +00:00
parent 4b0c30b79c
commit 8055ede6c7
3 changed files with 3 additions and 3 deletions

View File

@ -276,7 +276,7 @@ static const AVOption options[] = {
static AVClass sws_context_class = { "SWScaler", sws_context_to_name, options };
char *sws_format_name(enum PixelFormat format)
const char *sws_format_name(enum PixelFormat format)
{
switch (format) {
case PIX_FMT_YUV420P:

View File

@ -31,7 +31,7 @@
#define LIBSWSCALE_VERSION_MAJOR 0
#define LIBSWSCALE_VERSION_MINOR 5
#define LIBSWSCALE_VERSION_MICRO 0
#define LIBSWSCALE_VERSION_MICRO 1
#define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \
LIBSWSCALE_VERSION_MINOR, \

View File

@ -193,7 +193,7 @@ void altivec_yuv2packedX (SwsContext *c,
int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize,
uint8_t *dest, int dstW, int dstY);
char *sws_format_name(int format);
const char *sws_format_name(int format);
//FIXME replace this with something faster
#define isPlanarYUV(x) ( \