mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 22:10:34 +00:00
Fix illegal identifiers, names starting with _ and uppercase are reserved.
Originally committed as revision 11476 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6da7cc8185
commit
4514a1d544
@ -86,7 +86,7 @@ typedef struct {
|
||||
int eval_colors;
|
||||
double x, y;
|
||||
char *fileImage;
|
||||
struct _CachedImage *cache;
|
||||
struct CachedImage *cache;
|
||||
Imlib_Image imageOverlaid;
|
||||
AVEvalExpr *eval_x, *eval_y;
|
||||
char *expr_x, *expr_y;
|
||||
@ -99,8 +99,8 @@ typedef struct {
|
||||
struct SwsContext *fromRGB_convert_ctx;
|
||||
} ContextInfo;
|
||||
|
||||
typedef struct _CachedImage {
|
||||
struct _CachedImage *next;
|
||||
typedef struct CachedImage {
|
||||
struct CachedImage *next;
|
||||
Imlib_Image image;
|
||||
int width;
|
||||
int height;
|
||||
|
Loading…
Reference in New Issue
Block a user