From 161d5c65021c21fff45ad6e8458bdee36c9d61a3 Mon Sep 17 00:00:00 2001 From: ddennedy Date: Wed, 27 Jul 2005 18:55:26 +0000 Subject: [PATCH] Do not break ABI to workaround a problem in swig. git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@788 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/framework/mlt_types.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/framework/mlt_types.h b/src/framework/mlt_types.h index 58aacbb..c5a8e68 100644 --- a/src/framework/mlt_types.h +++ b/src/framework/mlt_types.h @@ -25,7 +25,7 @@ #include "mlt_pool.h" -typedef enum mlt_image_format_enum +typedef enum { mlt_image_none = 0, mlt_image_rgb24, @@ -35,14 +35,14 @@ typedef enum mlt_image_format_enum } mlt_image_format; -typedef enum mlt_audio_format_enum +typedef enum { mlt_audio_none = 0, mlt_audio_pcm } mlt_audio_format; -typedef enum mlt_whence_enum +typedef enum { mlt_whence_relative_start, mlt_whence_relative_current, @@ -50,7 +50,7 @@ typedef enum mlt_whence_enum } mlt_whence; -typedef enum mlt_service_type_enum +typedef enum { invalid_type, unknown_type, -- 1.7.4.4