You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +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:
@ -86,11 +86,11 @@ static inline void sub_left_prediction_bgr32(HYuvContext *s, uint8_t *dst,
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int r, g, b, a;
|
int r, g, b, a;
|
||||||
|
int min_width = FFMIN(w, 8);
|
||||||
r = *red;
|
r = *red;
|
||||||
g = *green;
|
g = *green;
|
||||||
b = *blue;
|
b = *blue;
|
||||||
a = *alpha;
|
a = *alpha;
|
||||||
int min_width = FFMIN(w, 8);
|
|
||||||
|
|
||||||
for (i = 0; i < min_width; i++) {
|
for (i = 0; i < min_width; i++) {
|
||||||
const int rt = src[i * 4 + R];
|
const int rt = src[i * 4 + R];
|
||||||
|
Reference in New Issue
Block a user