X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fosd%2Fosd_text.c;h=ea2c969ac4d6919b7fffd127fb694d922b227bb5;hb=14dd917d87e75ac1c7284373020ec3982082011b;hp=95ce8bd051cc072ca955564b7806c277823b61d8;hpb=df61d33b06e2b3cbbe746b2f5a9bea5b370c24ff;p=vlc diff --git a/src/osd/osd_text.c b/src/osd/osd_text.c index 95ce8bd051..ea2c969ac4 100644 --- a/src/osd/osd_text.c +++ b/src/osd/osd_text.c @@ -24,7 +24,7 @@ # include "config.h" #endif -#include +#include #include #include #include @@ -79,7 +79,14 @@ int osd_ShowTextAbsolute( spu_t *p_spu_channel, int i_channel, if( !psz_string ) return VLC_EGENERIC; p_spu = spu_CreateSubpicture( p_spu_channel ); - if( !p_spu ) return VLC_EGENERIC; + if( !p_spu ) + return VLC_EGENERIC; + + p_spu->i_channel = i_channel; + p_spu->i_start = i_start; + p_spu->i_stop = i_stop; + p_spu->b_ephemer = true; + p_spu->b_absolute = false; /* Create a new subpicture region */ memset( &fmt, 0, sizeof(video_format_t) ); @@ -97,15 +104,8 @@ int osd_ShowTextAbsolute( spu_t *p_spu_channel, int i_channel, p_spu->p_region->psz_text = strdup( psz_string ); p_spu->p_region->i_align = i_flags & SUBPICTURE_ALIGN_MASK; - p_spu->i_start = i_start; - p_spu->i_stop = i_stop; - p_spu->b_ephemer = true; - p_spu->b_absolute = false; - - p_spu->i_x = i_hmargin; - p_spu->i_y = i_vmargin; - p_spu->i_flags = i_flags & ~SUBPICTURE_ALIGN_MASK; - p_spu->i_channel = i_channel; + p_spu->p_region->i_x = i_hmargin; + p_spu->p_region->i_y = i_vmargin; spu_DisplaySubpicture( p_spu_channel, p_spu ); @@ -123,18 +123,19 @@ int osd_ShowTextAbsolute( spu_t *p_spu_channel, int i_channel, void osd_Message( spu_t *p_spu, int i_channel, char *psz_format, ... ) { - char *psz_string; va_list args; if( p_spu ) { + char *psz_string; va_start( args, psz_format ); - vasprintf( &psz_string, psz_format, args ); - - osd_ShowTextRelative( p_spu, i_channel, psz_string, NULL, - OSD_ALIGN_TOP|OSD_ALIGN_RIGHT, 30,20,1000000 ); + if( vasprintf( &psz_string, psz_format, args ) != -1 ) + { + osd_ShowTextRelative( p_spu, i_channel, psz_string, NULL, + OSD_ALIGN_TOP|OSD_ALIGN_RIGHT, 30,20,1000000 ); - free( psz_string ); + free( psz_string ); + } va_end( args ); } }