Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/mltframework/mlt
Browse files Browse the repository at this point in the history
  • Loading branch information
j-b-m committed Nov 19, 2012
2 parents 1005675 + 1248276 commit 1c9f536
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion configure
@@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh


export version=0.8.6 export version=0.8.7
export soversion=5 export soversion=5


show_help() show_help()
Expand Down
2 changes: 1 addition & 1 deletion src/framework/mlt_version.h
Expand Up @@ -29,7 +29,7 @@


#define LIBMLT_VERSION_MAJOR 0 #define LIBMLT_VERSION_MAJOR 0
#define LIBMLT_VERSION_MINOR 8 #define LIBMLT_VERSION_MINOR 8
#define LIBMLT_VERSION_REVISION 6 #define LIBMLT_VERSION_REVISION 7
#define LIBMLT_VERSION_INT ((LIBMLT_VERSION_MAJOR<<16)+(LIBMLT_VERSION_MINOR<<8)+LIBMLT_VERSION_REVISION) #define LIBMLT_VERSION_INT ((LIBMLT_VERSION_MAJOR<<16)+(LIBMLT_VERSION_MINOR<<8)+LIBMLT_VERSION_REVISION)
#define LIBMLT_VERSION STRINGIZE(LIBMLT_VERSION_MAJOR.LIBMLT_VERSION_MINOR.LIBMLT_VERSION_REVISION) #define LIBMLT_VERSION STRINGIZE(LIBMLT_VERSION_MAJOR.LIBMLT_VERSION_MINOR.LIBMLT_VERSION_REVISION)


Expand Down
2 changes: 1 addition & 1 deletion src/modules/gtk2/producer_pixbuf.c
Expand Up @@ -212,7 +212,7 @@ static int load_sequence_deprecated( producer_pixbuf self, mlt_properties proper
strncpy( s, start, n ); strncpy( s, start, n );
mlt_properties_set( properties, "begin", s ); mlt_properties_set( properties, "begin", s );
free( s ); free( s );
s = calloc( 1, strlen( filename ) ); s = calloc( 1, strlen( filename ) + 2 );
strncpy( s, filename, start - filename ); strncpy( s, filename, start - filename );
sprintf( s + ( start - filename ), ".%d%s", n, end ); sprintf( s + ( start - filename ), ".%d%s", n, end );
result = load_sequence_sprintf( self, properties, s ); result = load_sequence_sprintf( self, properties, s );
Expand Down
1 change: 0 additions & 1 deletion src/modules/qimage/kdenlivetitle_wrapper.cpp
Expand Up @@ -392,7 +392,6 @@ void drawKdenliveTitle( producer_ktitle self, mlt_frame frame, int width, int he
{ {
mlt_log_panic( MLT_PRODUCER_SERVICE( producer ), "Error, cannot render titles without an X11 environment.\nPlease either run melt from an X session or use a fake X server like xvfb:\nxvfb-run -a melt (...)\n" ); mlt_log_panic( MLT_PRODUCER_SERVICE( producer ), "Error, cannot render titles without an X11 environment.\nPlease either run melt from an X session or use a fake X server like xvfb:\nxvfb-run -a melt (...)\n" );
pthread_mutex_unlock( &self->mutex ); pthread_mutex_unlock( &self->mutex );
exit(1);
return; return;
} }
#endif #endif
Expand Down
2 changes: 1 addition & 1 deletion src/modules/qimage/producer_qimage.c
Expand Up @@ -157,7 +157,7 @@ static int load_sequence_deprecated( producer_qimage self, mlt_properties proper
strncpy( s, start, n ); strncpy( s, start, n );
mlt_properties_set( properties, "begin", s ); mlt_properties_set( properties, "begin", s );
free( s ); free( s );
s = calloc( 1, strlen( filename ) ); s = calloc( 1, strlen( filename ) + 2 );
strncpy( s, filename, start - filename ); strncpy( s, filename, start - filename );
sprintf( s + ( start - filename ), ".%d%s", n, end ); sprintf( s + ( start - filename ), ".%d%s", n, end );
result = load_sequence_sprintf( self, properties, s ); result = load_sequence_sprintf( self, properties, s );
Expand Down
9 changes: 4 additions & 5 deletions src/modules/videostab/stab/klt/error.c
Expand Up @@ -9,7 +9,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdarg.h> #include <stdarg.h>

#include <framework/mlt_log.h>


/********************************************************************* /*********************************************************************
* KLTError * KLTError
Expand All @@ -25,11 +25,10 @@ void KLTError(char *fmt, ...)
va_list args; va_list args;


va_start(args, fmt); va_start(args, fmt);
fprintf(stderr, "KLT Error: "); mlt_log_error(NULL, "KLT Error: ");
vfprintf(stderr, fmt, args); mlt_log_error(NULL, fmt, args);
fprintf(stderr, "\n"); mlt_log_error(NULL, "\n");
va_end(args); va_end(args);
exit(1);
} }




Expand Down

0 comments on commit 1c9f536

Please sign in to comment.