From 1f15747fc9650e6ee338c1e037f475eadd29c0be Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Mon, 14 Dec 2009 10:52:32 +0000 Subject: [PATCH] Use enum PixelFormat as type for input_pixfmt to avoid one icc warning. Originally committed as revision 20859 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavdevice/x11grab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavdevice/x11grab.c b/libavdevice/x11grab.c index 524bdd15db..ff37d762a6 100644 --- a/libavdevice/x11grab.c +++ b/libavdevice/x11grab.c @@ -85,7 +85,7 @@ x11grab_read_header(AVFormatContext *s1, AVFormatParameters *ap) struct x11_grab *x11grab = s1->priv_data; Display *dpy; AVStream *st = NULL; - int input_pixfmt; + enum PixelFormat input_pixfmt; XImage *image; int x_off = 0; int y_off = 0; -- GitLab