提交 8055ede6 编写于 作者: B Baptiste Coudurier

change sws_format_name to return const char*, supress many warnings

Originally committed as revision 26183 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
上级 4b0c30b7
......@@ -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:
......
......@@ -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, \
......
......@@ -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) ( \
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册