Browse Source

Mark constant structure member as const to avoid some warnings.

patch by Laurent Desnogues, laurent.desnogues gmail com

Originally committed as revision 13942 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Laurent Desnogues Diego Biurrun 17 years ago
parent
commit
f5b6778184
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dct-test.c

+ 1
- 1
libavcodec/dct-test.c View File

@@ -68,7 +68,7 @@ extern void fdct_altivec (DCTELEM *block);


struct algo {
char *name;
const char *name;
enum { FDCT, IDCT } is_idct;
void (* func) (DCTELEM *block);
void (* ref) (DCTELEM *block);


Loading…
Cancel
Save