]> git.sesse.net Git - vlc/blobdiff - modules/codec/svcdsub.c
* modules/codec/ffmpeg.c: add X264 to the list of supported fourcc's
[vlc] / modules / codec / svcdsub.c
index d97d04c23d07dd59f77f1fceaaebeba457323f22..20f009da6ca86fb6d2f88a6adbd92f19e553ce57 100644 (file)
@@ -40,12 +40,12 @@ static int  PacketizerOpen( vlc_object_t * );
 static void DecoderClose  ( vlc_object_t * );
 
 #define DEBUG_TEXT \
-     "If nonzero, this gives additional debug information." \
+     "Enable debug"
 
-#define DEBUG_LONGTEXT \
+#define DEBUG_LONGTEXT N_( \
     "This integer when viewed in binary is a debugging mask\n" \
     "calls                 1\n" \
-    "packet assembly info  2\n"
+    "packet assembly info  2\n")
 
 vlc_module_begin();
     set_description( _("Philips OGT (SVCD subtitle) decoder") );
@@ -466,6 +466,8 @@ static subpicture_t *DecodePacket( decoder_t *p_dec, block_t *p_data )
     p_spu = p_dec->pf_spu_buffer_new( p_dec );
     if( !p_spu ) return NULL;
 
+    p_spu->b_pausable = VLC_TRUE;
+
     p_spu->i_x = p_sys->i_x_start;
     p_spu->i_y = p_sys->i_y_start;
     p_spu->i_start = p_data->i_pts;