Commit 6f49f1fc authored by diego's avatar diego

Fix illegal identifiers, names starting with _ and uppercase are reserved.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11476 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 06a7e7c3
...@@ -86,7 +86,7 @@ typedef struct { ...@@ -86,7 +86,7 @@ typedef struct {
int eval_colors; int eval_colors;
double x, y; double x, y;
char *fileImage; char *fileImage;
struct _CachedImage *cache; struct CachedImage *cache;
Imlib_Image imageOverlaid; Imlib_Image imageOverlaid;
AVEvalExpr *eval_x, *eval_y; AVEvalExpr *eval_x, *eval_y;
char *expr_x, *expr_y; char *expr_x, *expr_y;
...@@ -99,8 +99,8 @@ typedef struct { ...@@ -99,8 +99,8 @@ typedef struct {
struct SwsContext *fromRGB_convert_ctx; struct SwsContext *fromRGB_convert_ctx;
} ContextInfo; } ContextInfo;
typedef struct _CachedImage { typedef struct CachedImage {
struct _CachedImage *next; struct CachedImage *next;
Imlib_Image image; Imlib_Image image;
int width; int width;
int height; int height;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment