| Index: media/formats/mp2t/es_parser_adts.cc
|
| diff --git a/media/formats/mp2t/es_parser_adts.cc b/media/formats/mp2t/es_parser_adts.cc
|
| index 6ab784574c168a14dbe81fb4c65a4dc680a30bea..78bb5ffebedf245aaa01f5aac2eff7f305dab80c 100644
|
| --- a/media/formats/mp2t/es_parser_adts.cc
|
| +++ b/media/formats/mp2t/es_parser_adts.cc
|
| @@ -147,11 +147,9 @@ bool EsParserAdts::ParseFromEsQueue() {
|
| // TODO(wolenetz/acolwell): Validate and use a common cross-parser TrackId
|
| // type and allow multiple audio tracks. See https://crbug.com/341581.
|
| scoped_refptr<StreamParserBuffer> stream_parser_buffer =
|
| - StreamParserBuffer::CopyFrom(
|
| - adts_frame.data,
|
| - adts_frame.size,
|
| - is_key_frame,
|
| - DemuxerStream::AUDIO, 0);
|
| + StreamParserBuffer::CopyFrom(adts_frame.data, adts_frame.size,
|
| + is_key_frame, DemuxerStream::AUDIO,
|
| + kMp2tAudioTrackId);
|
| stream_parser_buffer->set_timestamp(current_pts);
|
| stream_parser_buffer->SetDecodeTimestamp(
|
| DecodeTimestamp::FromPresentationTime(current_pts));
|
|
|