diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-04-17 00:35:00 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-04-17 00:35:00 +0200 |
commit | 9802f56684fe1cda5b42b76deb83d6a06a42d07d (patch) | |
tree | ffc03bb990aacb153261f3633d3ed8d2e58742b6 /libavcodec/ass_split.h | |
parent | 92218aad007ffc36bb139fe8bd6d5b1d75721017 (diff) | |
download | ffmpeg-9802f56684fe1cda5b42b76deb83d6a06a42d07d.tar.gz |
ass_split: Do not use the function name as a parameter name in a declaration.
Fixes compilation of srtenc.o with PGC 13.4-0.
Diffstat (limited to 'libavcodec/ass_split.h')
-rw-r--r-- | libavcodec/ass_split.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ass_split.h b/libavcodec/ass_split.h index 7a6a75e030..06c1ce3309 100644 --- a/libavcodec/ass_split.h +++ b/libavcodec/ass_split.h @@ -124,7 +124,7 @@ typedef struct { void (*text)(void *priv, const char *text, int len); void (*new_line)(void *priv, int forced); void (*style)(void *priv, char style, int close); - void (*color)(void *priv, unsigned int color, unsigned int color_id); + void (*color)(void *priv, unsigned int /* color */, unsigned int color_id); void (*alpha)(void *priv, int alpha, int alpha_id); void (*font_name)(void *priv, const char *name); void (*font_size)(void *priv, int size); |