Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Side by Side Diff: media/media.gyp

Issue 539343002: Make the timestamp unroll offset consistent accross PES pids. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix CR comments from patch set #8. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/formats/mp2t/ts_section_pes.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
934 'formats/mp2t/es_parser.h', 934 'formats/mp2t/es_parser.h',
935 'formats/mp2t/es_parser_adts.cc', 935 'formats/mp2t/es_parser_adts.cc',
936 'formats/mp2t/es_parser_adts.h', 936 'formats/mp2t/es_parser_adts.h',
937 'formats/mp2t/es_parser_h264.cc', 937 'formats/mp2t/es_parser_h264.cc',
938 'formats/mp2t/es_parser_h264.h', 938 'formats/mp2t/es_parser_h264.h',
939 'formats/mp2t/es_parser_mpeg1audio.cc', 939 'formats/mp2t/es_parser_mpeg1audio.cc',
940 'formats/mp2t/es_parser_mpeg1audio.h', 940 'formats/mp2t/es_parser_mpeg1audio.h',
941 'formats/mp2t/mp2t_common.h', 941 'formats/mp2t/mp2t_common.h',
942 'formats/mp2t/mp2t_stream_parser.cc', 942 'formats/mp2t/mp2t_stream_parser.cc',
943 'formats/mp2t/mp2t_stream_parser.h', 943 'formats/mp2t/mp2t_stream_parser.h',
944 'formats/mp2t/timestamp_unroller.cc',
945 'formats/mp2t/timestamp_unroller.h',
944 'formats/mp2t/ts_packet.cc', 946 'formats/mp2t/ts_packet.cc',
945 'formats/mp2t/ts_packet.h', 947 'formats/mp2t/ts_packet.h',
946 'formats/mp2t/ts_section.h', 948 'formats/mp2t/ts_section.h',
947 'formats/mp2t/ts_section_pat.cc', 949 'formats/mp2t/ts_section_pat.cc',
948 'formats/mp2t/ts_section_pat.h', 950 'formats/mp2t/ts_section_pat.h',
949 'formats/mp2t/ts_section_pes.cc', 951 'formats/mp2t/ts_section_pes.cc',
950 'formats/mp2t/ts_section_pes.h', 952 'formats/mp2t/ts_section_pes.h',
951 'formats/mp2t/ts_section_pmt.cc', 953 'formats/mp2t/ts_section_pmt.cc',
952 'formats/mp2t/ts_section_pmt.h', 954 'formats/mp2t/ts_section_pmt.h',
953 'formats/mp2t/ts_section_psi.cc', 955 'formats/mp2t/ts_section_psi.cc',
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
1323 'filters/h264_to_annex_b_bitstream_converter_unittest.cc', 1325 'filters/h264_to_annex_b_bitstream_converter_unittest.cc',
1324 'formats/common/stream_parser_test_base.cc', 1326 'formats/common/stream_parser_test_base.cc',
1325 'formats/common/stream_parser_test_base.h', 1327 'formats/common/stream_parser_test_base.h',
1326 'formats/mp2t/es_adapter_video_unittest.cc', 1328 'formats/mp2t/es_adapter_video_unittest.cc',
1327 'formats/mp2t/es_parser_adts_unittest.cc', 1329 'formats/mp2t/es_parser_adts_unittest.cc',
1328 'formats/mp2t/es_parser_h264_unittest.cc', 1330 'formats/mp2t/es_parser_h264_unittest.cc',
1329 'formats/mp2t/es_parser_mpeg1audio_unittest.cc', 1331 'formats/mp2t/es_parser_mpeg1audio_unittest.cc',
1330 'formats/mp2t/es_parser_test_base.cc', 1332 'formats/mp2t/es_parser_test_base.cc',
1331 'formats/mp2t/es_parser_test_base.h', 1333 'formats/mp2t/es_parser_test_base.h',
1332 'formats/mp2t/mp2t_stream_parser_unittest.cc', 1334 'formats/mp2t/mp2t_stream_parser_unittest.cc',
1335 'formats/mp2t/timestamp_unroller_unittest.cc',
1333 'formats/mp4/aac_unittest.cc', 1336 'formats/mp4/aac_unittest.cc',
1334 'formats/mp4/avc_unittest.cc', 1337 'formats/mp4/avc_unittest.cc',
1335 'formats/mp4/box_reader_unittest.cc', 1338 'formats/mp4/box_reader_unittest.cc',
1336 'formats/mp4/es_descriptor_unittest.cc', 1339 'formats/mp4/es_descriptor_unittest.cc',
1337 'formats/mp4/mp4_stream_parser_unittest.cc', 1340 'formats/mp4/mp4_stream_parser_unittest.cc',
1338 'formats/mp4/sample_to_group_iterator_unittest.cc', 1341 'formats/mp4/sample_to_group_iterator_unittest.cc',
1339 'formats/mp4/track_run_iterator_unittest.cc', 1342 'formats/mp4/track_run_iterator_unittest.cc',
1340 'formats/mpeg/adts_stream_parser_unittest.cc', 1343 'formats/mpeg/adts_stream_parser_unittest.cc',
1341 'formats/mpeg/mpeg1_audio_stream_parser_unittest.cc', 1344 'formats/mpeg/mpeg1_audio_stream_parser_unittest.cc',
1342 ], 1345 ],
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
1813 ], 1816 ],
1814 }], 1817 }],
1815 ], 1818 ],
1816 }], 1819 }],
1817 ], 1820 ],
1818 }, 1821 },
1819 ], 1822 ],
1820 }], 1823 }],
1821 ], 1824 ],
1822 } 1825 }
OLDNEW
« no previous file with comments | « media/formats/mp2t/ts_section_pes.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698