diff options
author | phintuka <phintuka> | 2009-09-09 11:58:40 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-09-09 11:58:40 +0000 |
commit | 24f6609714add9a1a582bd4a4cef8d01cdba607f (patch) | |
tree | 158fc5f0672c72c098141eb8ab09a2a78949b860 /tools | |
parent | 2141cef58939e749757cf4fb09283917d745c970 (diff) | |
download | xineliboutput-24f6609714add9a1a582bd4a4cef8d01cdba607f.tar.gz xineliboutput-24f6609714add9a1a582bd4a4cef8d01cdba607f.tar.bz2 |
Fixed AC3 audio
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ts.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: ts.c,v 1.13 2009-09-09 11:58:16 phintuka Exp $ + * $Id: ts.c,v 1.14 2009-09-09 11:58:40 phintuka Exp $ * */ @@ -384,7 +384,7 @@ int ts_parse_pmt (pmt_data_t *pmt, uint program_no, const uint8_t *pkt) if (find_audio_track(pmt, pid) < 0) { LOGPMT("parse_pmt: AC3 audio pid 0x%.4x type %2.2x", pid, stream[0]); pmt->audio_tracks[pmt->audio_tracks_count].pid = pid; - pmt->audio_tracks[pmt->audio_tracks_count].type = (ts_stream_type)stream[0]; + pmt->audio_tracks[pmt->audio_tracks_count].type = STREAM_AUDIO_AC3; /* demux_ts_get_lang_desc(pmt->audio_tracks[pmt->audio_tracks_count].lang, */ /* stream + 5, stream_info_length); */ pmt->audio_tracks_count++; |