[vlc-devel] commit: transcode: Fix a typo about scale. (Pierre d'Herbemont )
git version control
git at videolan.org
Sat May 17 10:37:06 CEST 2008
vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Fri May 16 17:42:40 2008 +0200| [34eab2d9c19ad6ce64abefaddd2840f173b4d2f5]
transcode: Fix a typo about scale.
Signed-off-by: Jean-Paul Saman <jpsaman at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=34eab2d9c19ad6ce64abefaddd2840f173b4d2f5
---
modules/stream_out/transcode.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/stream_out/transcode.c b/modules/stream_out/transcode.c
index 7ed39ad..3847bae 100644
--- a/modules/stream_out/transcode.c
+++ b/modules/stream_out/transcode.c
@@ -2268,9 +2268,9 @@ static int transcode_video_process( sout_stream_t *p_stream,
if( ( id->p_decoder->fmt_out.video.i_chroma !=
id->p_encoder->fmt_in.video.i_chroma ) ||
( id->p_decoder->fmt_out.video.i_width !=
- id->p_encoder->fmt_out.video.i_width ) ||
+ id->p_encoder->fmt_in.video.i_width ) ||
( id->p_decoder->fmt_out.video.i_height !=
- id->p_encoder->fmt_out.video.i_height ) )
+ id->p_encoder->fmt_in.video.i_height ) )
{
id->pp_filter[id->i_filter] =
transcode_video_filter_new( p_stream,
More information about the vlc-devel
mailing list