Cleanup license declarations and remove dv1394d references.
[melted] / src / inigo / inigo.c
index cbc680e..95aeb40 100644 (file)
@@ -1,3 +1,23 @@
+/*
+ * inigo.c -- MLT command line utility
+ * Copyright (C) 2002-2003 Ushodaya Enterprises Limited
+ * Author: Charles Yates <charles.yates@pandora.be>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -5,6 +25,10 @@
 
 #include <framework/mlt.h>
 
+#ifdef __DARWIN__
+#include <SDL.h>
+#endif
+
 #include "io.h"
 
 static void transport_action( mlt_producer producer, char *value )
@@ -66,7 +90,7 @@ static void transport_action( mlt_producer producer, char *value )
                                                if ( time == last )
                                                        break;
                                                last = time;
-                                               fprintf( stderr, "%d: %d\n", i, time );
+                                               fprintf( stderr, "%d: %d\n", i, (int)time );
                                        }
                                }
                                break;
@@ -148,6 +172,33 @@ static mlt_consumer create_consumer( char *id, mlt_producer producer )
        return consumer;
 }
 
+#ifdef __DARWIN__
+
+static void event_handling( mlt_producer producer, mlt_consumer consumer )
+{
+       SDL_Event event;
+
+       while ( SDL_PollEvent( &event ) )
+       {
+               switch( event.type )
+               {
+                       case SDL_QUIT:
+                               mlt_properties_set_int( MLT_PRODUCER_PROPERTIES( consumer ), "done", 1 );
+                               break;
+
+                       case SDL_KEYDOWN:
+                               if ( event.key.keysym.unicode < 0x80 && event.key.keysym.unicode > 0 )
+                               {
+                                       char keyboard[ 2 ] = { event.key.keysym.unicode, 0 };
+                                       transport_action( producer, keyboard );
+                               }
+                               break;
+               }
+       }
+}
+
+#endif
+
 static void transport( mlt_producer producer, mlt_consumer consumer )
 {
        mlt_properties properties = MLT_PRODUCER_PROPERTIES( producer );
@@ -177,10 +228,17 @@ static void transport( mlt_producer producer, mlt_consumer consumer )
                        int value = silent ? -1 : term_read( );
 
                        if ( value != -1 )
-                               transport_action( producer, ( char * )&value );
+                       {
+                               char string[ 2 ] = { value, 0 };
+                               transport_action( producer, string );
+                       }
+
+#ifdef __DARWIN__
+                       event_handling( producer, consumer );
+#endif
 
                        if ( !silent && mlt_properties_get_int( properties, "stats_off" ) == 0 )
-                               fprintf( stderr, "Current Position: %10d\r", mlt_producer_position( producer ) );
+                               fprintf( stderr, "Current Position: %10d\r", (int)mlt_producer_position( producer ) );
 
                        if ( silent )
                                nanosleep( &tm, NULL );