[vlc-commits] transcode: return VLC_SUCCESS on overlay case also

Ilkka Ollakka git at videolan.org
Wed Feb 26 09:59:06 CET 2014


vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Wed Feb 26 10:55:05 2014 +0200| [795c018ba4a6065c9999eafbb9adb13f3ebcae71] | committer: Ilkka Ollakka

transcode: return VLC_SUCCESS on overlay case also

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=795c018ba4a6065c9999eafbb9adb13f3ebcae71
---

 modules/stream_out/transcode/spu.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/stream_out/transcode/spu.c b/modules/stream_out/transcode/spu.c
index f54465a..ece8394 100644
--- a/modules/stream_out/transcode/spu.c
+++ b/modules/stream_out/transcode/spu.c
@@ -140,6 +140,7 @@ int transcode_spu_process( sout_stream_t *p_stream,
     if( p_sys->b_soverlay )
     {
         spu_PutSubpicture( p_sys->p_spu, p_subpic );
+        return VLC_SUCCESS;
     }
     else
     {



More information about the vlc-commits mailing list