[vlc-devel] commit: There is a typo in the error message displayed when VLC is unable to ( Etienne Membrives )
git version control
git at videolan.org
Tue Jul 14 12:48:07 CEST 2009
vlc | branch: master | Etienne Membrives <etienne at membrives.fr> | Tue Jul 14 12:47:08 2009 +0200| [30c40ee9104856948b8b801ce362d1aeddf3faae] | committer: JP Dinger
There is a typo in the error message displayed when VLC is unable to
find a correct blending module given input and output chromas. Instead
of displaying the input chroma and the output chroma in the error
message, it displays two times the output chroma.
This patch corrects the typo.
Signed-off-by: JP Dinger <jpd at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=30c40ee9104856948b8b801ce362d1aeddf3faae
---
src/video_output/vout_subpictures.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/video_output/vout_subpictures.c b/src/video_output/vout_subpictures.c
index ccceb13..4b4afd1 100644
--- a/src/video_output/vout_subpictures.c
+++ b/src/video_output/vout_subpictures.c
@@ -1581,7 +1581,7 @@ static void SpuRenderRegion( spu_t *p_spu,
p_region_picture, SpuRegionAlpha( p_subpic, p_region ) ) )
{
msg_Err( p_spu, "blending %4.4s to %4.4s failed",
- (char *)&p_sys->p_blend->fmt_out.video.i_chroma,
+ (char *)&p_sys->p_blend->fmt_in.video.i_chroma,
(char *)&p_sys->p_blend->fmt_out.video.i_chroma );
}
More information about the vlc-devel
mailing list