Commit 3e486162 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '9a60b1fa'

* commit '9a60b1fa':
  libswscale: fix compiler warnings enumerated type mixed with another type

Conflicts:
	libswscale/swscale_unscaled.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 4f3f5ee1 9a60b1fa
...@@ -742,7 +742,7 @@ SwsFunc ff_getSwsFunc(SwsContext *c) ...@@ -742,7 +742,7 @@ SwsFunc ff_getSwsFunc(SwsContext *c)
return swscale; return swscale;
} }
static void reset_ptr(const uint8_t *src[], int format) static void reset_ptr(const uint8_t *src[], enum AVPixelFormat format)
{ {
if (!isALPHA(format)) if (!isALPHA(format))
src[3] = NULL; src[3] = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment