mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
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:
parent
eaff5fcb7c
commit
514cf22a0d
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user