# HG changeset patch
# User Vittorio Giovara <vittorio.giovara@gmail.com>
# Date 1446650446 -3600
# Node ID 2f812d4513d1b34268df371269331273762c4bcd
# Parent  210650fc7182bdd4e8fc0b3b70f7eeebc3b284b5
Specify the enum type for Pixel and Sample formats

diff -r 210650fc7182 -r 2f812d4513d1 QTfrontend/util/LibavInteraction.cpp
--- a/QTfrontend/util/LibavInteraction.cpp	Wed Nov 04 16:19:33 2015 +0100
+++ b/QTfrontend/util/LibavInteraction.cpp	Wed Nov 04 16:20:46 2015 +0100
@@ -116,7 +116,7 @@
             if (!pCodec->pix_fmts)
                 continue;
             bool yuv420Supported = false;
-            for (const AVPixelFormat* pfmt = pCodec->pix_fmts; *pfmt != -1; pfmt++)
+            for (const enum AVPixelFormat* pfmt = pCodec->pix_fmts; *pfmt != -1; pfmt++)
                 if (*pfmt == AV_PIX_FMT_YUV420P)
                 {
                     yuv420Supported = true;
@@ -131,7 +131,7 @@
             if (!pCodec->sample_fmts)
                 continue;
             bool s16Supported = false;
-            for (const AVSampleFormat* pfmt = pCodec->sample_fmts; *pfmt != -1; pfmt++)
+            for (const enum AVSampleFormat* pfmt = pCodec->sample_fmts; *pfmt != -1; pfmt++)
                 if (*pfmt == AV_SAMPLE_FMT_S16)
                 {
                     s16Supported = true;