From d650147f1ce9b4bb7fd141c1841eb342d1048a5f Mon Sep 17 00:00:00 2001 From: Laurent Aimar <fenrir@videolan.org> Date: Tue, 10 Jan 2012 20:50:42 +0100 Subject: [PATCH] Fixed the format used for subtitles blending when transcoding. With [447719222b4a2496482571f1725aaf36b3d2d19e], it closes #5755 and #5756. --- modules/stream_out/transcode/video.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/modules/stream_out/transcode/video.c b/modules/stream_out/transcode/video.c index 130f64b90c26..d1aa9c4aaa13 100644 --- a/modules/stream_out/transcode/video.c +++ b/modules/stream_out/transcode/video.c @@ -680,11 +680,14 @@ int transcode_video_process( sout_stream_t *p_stream, sout_stream_id_t *id, /* Check if we have a subpicture to overlay */ if( p_sys->p_spu ) { - video_format_t fmt; - if( filter_chain_GetLength( id->p_f_chain ) > 0 ) - fmt = filter_chain_GetFmtOut( id->p_f_chain )->video; - else - fmt = id->p_decoder->fmt_out.video; + video_format_t fmt = id->p_encoder->fmt_in.video; + if( fmt.i_visible_width <= 0 || fmt.i_visible_height <= 0 ) + { + fmt.i_visible_width = fmt.i_width; + fmt.i_visible_height = fmt.i_height; + fmt.i_x_offset = 0; + fmt.i_y_offset = 0; + } subpicture_t *p_subpic = spu_Render( p_sys->p_spu, NULL, &fmt, &fmt, p_pic->date, p_pic->date, false ); -- GitLab