[vlc-devel] commit: MLP packetizer: small fix (Jean-Baptiste Kempf )

git version control git at videolan.org
Sun Jun 14 20:44:01 CEST 2009


vlc | branch: 1.0-bugfix | Jean-Baptiste Kempf <jb at videolan.org> | Sun Jun 14 20:43:31 2009 +0200| [b8e28f8212881d89e44bd04c00646db47ffb12c1] | committer: Jean-Baptiste Kempf 

MLP packetizer: small fix

Fix 88d70be07244c54280dda90ac43acfc25cc28ee0, that was badly cherry-picked.

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

 modules/packetizer/mlp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/packetizer/mlp.c b/modules/packetizer/mlp.c
index 913e4fe..a02ae77 100644
--- a/modules/packetizer/mlp.c
+++ b/modules/packetizer/mlp.c
@@ -138,7 +138,7 @@ static int Open( vlc_object_t *p_this )
 
     /* Set output properties */
     p_dec->fmt_out.i_cat = AUDIO_ES;
-    p_dec->fmt_out.i_codec = VLC_FOURCC('t','r','h','d');
+    p_dec->fmt_out.i_codec = p_dec->fmt_in.i_codec;
     p_dec->fmt_out.audio.i_rate = 0;
 
     /* Set callback */




More information about the vlc-devel mailing list