Cleanup license declarations and remove dv1394d references.
[melted] / src / modules / westley / consumer_westley.c
index 51f3305..35d4223 100644 (file)
@@ -3,19 +3,19 @@
  * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
  * Author: Dan Dennedy <dan@dennedy.org>
  *
- * 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 library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
  *
- * This program is distributed in the hope that it will be useful,
+ * This library 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.
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser 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.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
 #include "consumer_westley.h"
@@ -404,7 +404,7 @@ static void serialise_playlist( serialise_context context, mlt_service service,
                                        char length[ 20 ];
                                        length[ 19 ] = '\0';
                                        xmlNode *entry = xmlNewChild( child, NULL, "blank", NULL );
-                                       snprintf( length, 19, "%d", info.frame_count );
+                                       snprintf( length, 19, "%d", (int)info.frame_count );
                                        xmlNewProp( entry, "length", length );
                                }
                                else
@@ -413,9 +413,9 @@ static void serialise_playlist( serialise_context context, mlt_service service,
                                        xmlNode *entry = xmlNewChild( child, NULL, "entry", NULL );
                                        id = westley_get_id( context, MLT_SERVICE( producer ), westley_existing );
                                        xmlNewProp( entry, "producer", id );
-                                       sprintf( temp, "%d", info.frame_in );
+                                       sprintf( temp, "%d", (int)info.frame_in );
                                        xmlNewProp( entry, "in", temp );
-                                       sprintf( temp, "%d", info.frame_out );
+                                       sprintf( temp, "%d", (int)info.frame_out );
                                        xmlNewProp( entry, "out", temp );
                                        if ( info.repeat > 1 )
                                        {
@@ -549,7 +549,7 @@ static void serialise_service( serialise_context context, mlt_service service, x
                if ( strcmp( mlt_type, "producer" ) == 0 )
                {
                        char *mlt_service = mlt_properties_get( properties, "mlt_service" );
-                       if ( mlt_properties_get( properties, "westley" ) == NULL && !strcmp( mlt_service, "tractor" ) )
+                       if ( mlt_properties_get( properties, "westley" ) == NULL && ( mlt_service != NULL && !strcmp( mlt_service, "tractor" ) ) )
                        {
                                context->pass = 0;
                                serialise_tractor( context, service, node );