mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-01 20:32:59 +00:00
Add some const specifiers to function name variables; fixes a bunch of
"initialization discards qualifiers from pointer target type" warnings. Originally committed as revision 27894 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
b09a7c05f6
commit
dcc37c9b6a
@ -75,7 +75,7 @@ int main(int argc, char **argv)
|
||||
struct func_info_s {
|
||||
int src_bpp;
|
||||
int dst_bpp;
|
||||
char *name;
|
||||
const char *name;
|
||||
void (*func)(const uint8_t *src, uint8_t *dst, long src_size);
|
||||
} func_info[] = {
|
||||
FUNC(2, 2, rgb15to16),
|
||||
@ -127,7 +127,7 @@ int main(int argc, char **argv)
|
||||
for(srcOffset=128; srcOffset<196; srcOffset+=4){
|
||||
uint8_t *src= srcBuffer+srcOffset;
|
||||
uint8_t *dst= dstBuffer+dstOffset;
|
||||
char *name=NULL;
|
||||
const char *name=NULL;
|
||||
|
||||
if(failed) break; //don't fill the screen with shit ...
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user