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

Side by Side Diff: media/media.gyp

Issue 23566013: Mpeg2 TS stream parser for media source. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improve buffer emission + Cleanup Created 7 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
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 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 'mp4/cenc.cc', 854 'mp4/cenc.cc',
855 'mp4/cenc.h', 855 'mp4/cenc.h',
856 'mp4/es_descriptor.cc', 856 'mp4/es_descriptor.cc',
857 'mp4/es_descriptor.h', 857 'mp4/es_descriptor.h',
858 'mp4/mp4_stream_parser.cc', 858 'mp4/mp4_stream_parser.cc',
859 'mp4/mp4_stream_parser.h', 859 'mp4/mp4_stream_parser.h',
860 'mp4/offset_byte_queue.cc', 860 'mp4/offset_byte_queue.cc',
861 'mp4/offset_byte_queue.h', 861 'mp4/offset_byte_queue.h',
862 'mp4/track_run_iterator.cc', 862 'mp4/track_run_iterator.cc',
863 'mp4/track_run_iterator.h', 863 'mp4/track_run_iterator.h',
864 'mp2t/es_parser.h',
acolwell GONE FROM CHROMIUM 2013/09/18 01:46:05 nit: move these above the mp4 code so that they ar
damienv1 2013/09/18 21:40:17 Done.
865 'mp2t/es_parser_adts.cc',
866 'mp2t/es_parser_adts.h',
867 'mp2t/es_parser_h264.cc',
868 'mp2t/es_parser_h264.h',
869 'mp2t/mp2t_common.h',
870 'mp2t/mp2t_stream_parser.cc',
871 'mp2t/mp2t_stream_parser.h',
872 'mp2t/ts_packet.cc',
873 'mp2t/ts_packet.h',
874 'mp2t/ts_section.h',
875 'mp2t/ts_section_pat.cc',
876 'mp2t/ts_section_pat.h',
877 'mp2t/ts_section_pes.cc',
878 'mp2t/ts_section_pes.h',
879 'mp2t/ts_section_pmt.cc',
880 'mp2t/ts_section_pmt.h',
881 'mp2t/ts_section_psi.cc',
882 'mp2t/ts_section_psi.h',
864 ], 883 ],
865 }], 884 }],
866 ['toolkit_uses_gtk==1', { 885 ['toolkit_uses_gtk==1', {
867 'dependencies': [ 886 'dependencies': [
868 '../build/linux/system.gyp:gtk', 887 '../build/linux/system.gyp:gtk',
869 ], 888 ],
870 }], 889 }],
871 # ios check is necessary due to http://crbug.com/172682. 890 # ios check is necessary due to http://crbug.com/172682.
872 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { 891 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', {
873 'dependencies': [ 892 'dependencies': [
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 }], 1139 }],
1121 ['proprietary_codecs==1 or branding=="Chrome"', { 1140 ['proprietary_codecs==1 or branding=="Chrome"', {
1122 'sources': [ 1141 'sources': [
1123 'mp4/aac_unittest.cc', 1142 'mp4/aac_unittest.cc',
1124 'mp4/avc_unittest.cc', 1143 'mp4/avc_unittest.cc',
1125 'mp4/box_reader_unittest.cc', 1144 'mp4/box_reader_unittest.cc',
1126 'mp4/es_descriptor_unittest.cc', 1145 'mp4/es_descriptor_unittest.cc',
1127 'mp4/mp4_stream_parser_unittest.cc', 1146 'mp4/mp4_stream_parser_unittest.cc',
1128 'mp4/offset_byte_queue_unittest.cc', 1147 'mp4/offset_byte_queue_unittest.cc',
1129 'mp4/track_run_iterator_unittest.cc', 1148 'mp4/track_run_iterator_unittest.cc',
1149 'mp2t/mp2t_stream_parser_unittest.cc',
acolwell GONE FROM CHROMIUM 2013/09/18 01:46:05 ditto
damienv1 2013/09/18 21:40:17 Done.
1130 ], 1150 ],
1131 }], 1151 }],
1132 # TODO(wolenetz): Fix size_t to int truncations in win64. See 1152 # TODO(wolenetz): Fix size_t to int truncations in win64. See
1133 # http://crbug.com/171009 1153 # http://crbug.com/171009
1134 ['OS=="win" and target_arch=="x64"', { 1154 ['OS=="win" and target_arch=="x64"', {
1135 'msvs_disabled_warnings': [ 4267, ], 1155 'msvs_disabled_warnings': [ 4267, ],
1136 }], 1156 }],
1137 ], 1157 ],
1138 }, 1158 },
1139 { 1159 {
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
1590 ], 1610 ],
1591 }], 1611 }],
1592 ], 1612 ],
1593 }], 1613 }],
1594 ], 1614 ],
1595 }, 1615 },
1596 ], 1616 ],
1597 }], 1617 }],
1598 ], 1618 ],
1599 } 1619 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698