Commit 6d7b22fb authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Vittorio Giovara

isom: fix C99-style declaration

parent 1481d24c
......@@ -442,11 +442,12 @@ static int mov_rewrite_dvd_sub_extradata(AVStream *st)
char buf[256];
int pal_s_pos = 0;
uint8_t *src = st->codec->extradata;
int i;
if (st->codec->extradata_size != 64)
return 0;
for (int i = 0; i < 16; i++) {
for (i = 0; i < 16; i++) {
uint32_t yuv = AV_RB32(src + i * 4);
uint32_t rgba = yuv_to_rgba(yuv);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment