]> git.sesse.net Git - mlt/commitdiff
Add names to enums to make newer versions of swig (noticed on 1.3.24) happy.
authorddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Tue, 26 Jul 2005 17:41:38 +0000 (17:41 +0000)
committerddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Tue, 26 Jul 2005 17:41:38 +0000 (17:41 +0000)
git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@786 d19143bc-622f-0410-bfdd-b5b2a6649095

src/framework/mlt_types.h

index a0e377dad42163b2e253e720d3fc472cee366a28..58aacbb0d5acbdd91ea1d167522311809191d441 100644 (file)
@@ -25,7 +25,7 @@
 
 #include "mlt_pool.h"
 
-typedef enum
+typedef enum mlt_image_format_enum
 {
        mlt_image_none = 0,
        mlt_image_rgb24,
@@ -35,14 +35,14 @@ typedef enum
 }
 mlt_image_format;
 
-typedef enum
+typedef enum mlt_audio_format_enum
 {
        mlt_audio_none = 0,
        mlt_audio_pcm
 }
 mlt_audio_format;
 
-typedef enum
+typedef enum mlt_whence_enum
 {
        mlt_whence_relative_start,
        mlt_whence_relative_current,
@@ -50,7 +50,7 @@ typedef enum
 }
 mlt_whence;
 
-typedef enum 
+typedef enum mlt_service_type_enum
 {
        invalid_type,
        unknown_type,