Browse Source

cook: Remove senseless maybe_reformat_buffer32() function

tags/n1.1
Diego Biurrun 12 years ago
parent
commit
8a61ba0e81
1 changed files with 1 additions and 7 deletions
  1. +1
    -7
      libavcodec/cook.c

+ 1
- 7
libavcodec/cook.c View File

@@ -241,17 +241,11 @@ static av_cold int init_cook_mlt(COOKContext *q)
return 0;
}

static const float *maybe_reformat_buffer32(COOKContext *q, const float *ptr, int n)
{
if (1)
return ptr;
}

static av_cold void init_cplscales_table(COOKContext *q)
{
int i;
for (i = 0; i < 5; i++)
q->cplscales[i] = maybe_reformat_buffer32(q, cplscales[i], (1 << (i + 2)) - 1);
q->cplscales[i] = cplscales[i];
}

/*************** init functions end ***********/


Loading…
Cancel
Save