lavc/huffyuvenc: Move a variable declaration up.

Fixes a warning with gcc-6.3:
libavcodec/huffyuvenc.c:93:5: warning: ISO C90 forbids mixed declarations and code
This commit is contained in:
Carl Eugen Hoyos 2017-12-10 20:46:55 +01:00
parent eaff5fcb7c
commit 514cf22a0d

View File

@ -86,11 +86,11 @@ static inline void sub_left_prediction_bgr32(HYuvContext *s, uint8_t *dst,
{
int i;
int r, g, b, a;
int min_width = FFMIN(w, 8);
r = *red;
g = *green;
b = *blue;
a = *alpha;
int min_width = FFMIN(w, 8);
for (i = 0; i < min_width; i++) {
const int rt = src[i * 4 + R];