Browse Source

Remove a pointless/bad "static".

It has no advantage and seems to cause compile issues with
some combinations of compiler/compiler flags/PIC.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
tags/n0.9
Reimar Döffinger 14 years ago
parent
commit
f04d4345da
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/motionpixels_tablegen.h

+ 1
- 1
libavcodec/motionpixels_tablegen.h View File

@@ -30,7 +30,7 @@ typedef struct YuvPixel {
} YuvPixel;

static int mp_yuv_to_rgb(int y, int v, int u, int clip_rgb) {
static const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
const uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
int r, g, b;

r = (1000 * y + 701 * v) / 1000;


Loading…
Cancel
Save