Commit dca61730 authored by Christophe Massiot's avatar Christophe Massiot

* Fixed my A/52 fix.

parent 7a58ef70
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* system.c: helper module for TS, PS and PES management * system.c: helper module for TS, PS and PES management
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2002 VideoLAN * Copyright (C) 1998-2002 VideoLAN
* $Id: system.c,v 1.2 2002/08/30 22:22:24 massiot Exp $ * $Id: system.c,v 1.3 2002/09/26 22:56:14 massiot Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr> * Michel Lespinasse <walken@via.ecp.fr>
...@@ -364,17 +364,20 @@ static void ParsePES( input_thread_t * p_input, es_descriptor_t * p_es ) ...@@ -364,17 +364,20 @@ static void ParsePES( input_thread_t * p_input, es_descriptor_t * p_es )
} }
/* Welcome to the kludge area ! --Meuuh */ /* Welcome to the kludge area ! --Meuuh */
if( p_es->i_fourcc == VLC_FOURCC('a','5','2','b') ) if ( p_es->i_fourcc == VLC_FOURCC('a','5','2',' ')
|| p_es->i_fourcc == VLC_FOURCC('a','5','2','b') )
{ {
/* With A/52 audio, we need to skip the first 4 bytes */ /* With A/52 audio, we need to skip the first 3 bytes */
i_pes_header_size += 4; i_pes_header_size += 3;
} }
else if( p_es->i_fourcc == VLC_FOURCC('l','p','c','b')
|| p_es->i_fourcc == VLC_FOURCC('s','p','u','b') if ( p_es->i_fourcc == VLC_FOURCC('a','5','2','b')
|| p_es->i_fourcc == VLC_FOURCC('d','t','s','b') || p_es->i_fourcc == VLC_FOURCC('l','p','c','b')
|| p_es->i_fourcc == VLC_FOURCC('s','d','d','b') ) || p_es->i_fourcc == VLC_FOURCC('s','p','u','b')
|| p_es->i_fourcc == VLC_FOURCC('d','t','s','b')
|| p_es->i_fourcc == VLC_FOURCC('s','d','d','b') )
{ {
/* With others, we need to skip the first byte */ /* stream_private_id */
i_pes_header_size += 1; i_pes_header_size += 1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment