From b76b6f1e50864e9a6ed239e0b4e1577d58fc24be Mon Sep 17 00:00:00 2001 From: ddennedy Date: Tue, 26 Jul 2005 17:41:38 +0000 Subject: [PATCH] Add names to enums to make newer versions of swig (noticed on 1.3.24) happy. git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@786 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 a0e377d..58aacbb 100644 --- a/src/framework/mlt_types.h +++ b/src/framework/mlt_types.h @@ -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, -- 1.7.4.4