Commit 8e885efb authored by michael's avatar michael

Merge declaration and initialization.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11701 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d937abf6
......@@ -96,9 +96,7 @@ extern const uint8_t ff_log2_tab[256];
static inline int av_log2(unsigned int v)
{
int n;
n = 0;
int n = 0;
if (v & 0xffff0000) {
v >>= 16;
n += 16;
......@@ -114,9 +112,7 @@ static inline int av_log2(unsigned int v)
static inline int av_log2_16bit(unsigned int v)
{
int n;
n = 0;
int n = 0;
if (v & 0xff00) {
v >>= 8;
n += 8;
......
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