Commit c0e7e9ec authored by romansh's avatar romansh

Fixing a value returning issue


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17469 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5699198c
......@@ -816,8 +816,9 @@ static av_always_inline int dv_guess_dct_mode(DVVideoContext *s, uint8_t *data,
s->ildct_cmp(NULL, data + linesize, NULL, linesize<<1, 4);
return (ps > is);
}
} else
return 0;
}
return 0;
}
static av_always_inline int dv_init_enc_block(EncBlockInfo* bi, uint8_t *data, int linesize, DVVideoContext *s, int bias)
......
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