[FFmpeg-cvslog] r11476 - trunk/vhook/imlib2.c
diego
subversion
Wed Jan 9 00:07:55 CET 2008
Author: diego
Date: Wed Jan 9 00:07:55 2008
New Revision: 11476
Log:
Fix illegal identifiers, names starting with _ and uppercase are reserved.
Modified:
trunk/vhook/imlib2.c
Modified: trunk/vhook/imlib2.c
==============================================================================
--- trunk/vhook/imlib2.c (original)
+++ trunk/vhook/imlib2.c Wed Jan 9 00:07:55 2008
@@ -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;
More information about the ffmpeg-cvslog
mailing list