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

Side by Side Diff: media/media.gyp

Issue 506943003: Support MPEG1 audio in the MPEG2-TS stream parser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename MP3StreamParser to MPEG1AudioStreamParser. 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 | Annotate | Revision Log
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 913 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 'filters/h264_to_annex_b_bitstream_converter.cc', 924 'filters/h264_to_annex_b_bitstream_converter.cc',
925 'filters/h264_to_annex_b_bitstream_converter.h', 925 'filters/h264_to_annex_b_bitstream_converter.h',
926 'formats/mp2t/es_adapter_video.cc', 926 'formats/mp2t/es_adapter_video.cc',
927 'formats/mp2t/es_adapter_video.h', 927 'formats/mp2t/es_adapter_video.h',
928 'formats/mp2t/es_parser.cc', 928 'formats/mp2t/es_parser.cc',
929 'formats/mp2t/es_parser.h', 929 'formats/mp2t/es_parser.h',
930 'formats/mp2t/es_parser_adts.cc', 930 'formats/mp2t/es_parser_adts.cc',
931 'formats/mp2t/es_parser_adts.h', 931 'formats/mp2t/es_parser_adts.h',
932 'formats/mp2t/es_parser_h264.cc', 932 'formats/mp2t/es_parser_h264.cc',
933 'formats/mp2t/es_parser_h264.h', 933 'formats/mp2t/es_parser_h264.h',
934 'formats/mp2t/es_parser_mpeg1audio.cc',
935 'formats/mp2t/es_parser_mpeg1audio.h',
934 'formats/mp2t/mp2t_common.h', 936 'formats/mp2t/mp2t_common.h',
935 'formats/mp2t/mp2t_stream_parser.cc', 937 'formats/mp2t/mp2t_stream_parser.cc',
936 'formats/mp2t/mp2t_stream_parser.h', 938 'formats/mp2t/mp2t_stream_parser.h',
937 'formats/mp2t/ts_packet.cc', 939 'formats/mp2t/ts_packet.cc',
938 'formats/mp2t/ts_packet.h', 940 'formats/mp2t/ts_packet.h',
939 'formats/mp2t/ts_section.h', 941 'formats/mp2t/ts_section.h',
940 'formats/mp2t/ts_section_pat.cc', 942 'formats/mp2t/ts_section_pat.cc',
941 'formats/mp2t/ts_section_pat.h', 943 'formats/mp2t/ts_section_pat.h',
942 'formats/mp2t/ts_section_pes.cc', 944 'formats/mp2t/ts_section_pes.cc',
943 'formats/mp2t/ts_section_pes.h', 945 'formats/mp2t/ts_section_pes.h',
(...skipping 16 matching lines...) Expand all
960 'formats/mp4/mp4_stream_parser.cc', 962 'formats/mp4/mp4_stream_parser.cc',
961 'formats/mp4/mp4_stream_parser.h', 963 'formats/mp4/mp4_stream_parser.h',
962 'formats/mp4/sample_to_group_iterator.cc', 964 'formats/mp4/sample_to_group_iterator.cc',
963 'formats/mp4/sample_to_group_iterator.h', 965 'formats/mp4/sample_to_group_iterator.h',
964 'formats/mp4/track_run_iterator.cc', 966 'formats/mp4/track_run_iterator.cc',
965 'formats/mp4/track_run_iterator.h', 967 'formats/mp4/track_run_iterator.h',
966 'formats/mpeg/adts_constants.cc', 968 'formats/mpeg/adts_constants.cc',
967 'formats/mpeg/adts_constants.h', 969 'formats/mpeg/adts_constants.h',
968 'formats/mpeg/adts_stream_parser.cc', 970 'formats/mpeg/adts_stream_parser.cc',
969 'formats/mpeg/adts_stream_parser.h', 971 'formats/mpeg/adts_stream_parser.h',
970 'formats/mpeg/mp3_stream_parser.cc',
971 'formats/mpeg/mp3_stream_parser.h',
972 'formats/mpeg/mpeg_audio_stream_parser_base.cc', 972 'formats/mpeg/mpeg_audio_stream_parser_base.cc',
973 'formats/mpeg/mpeg_audio_stream_parser_base.h', 973 'formats/mpeg/mpeg_audio_stream_parser_base.h',
974 'formats/mpeg/mpeg1_audio_stream_parser.cc',
975 'formats/mpeg/mpeg1_audio_stream_parser.h',
974 ], 976 ],
975 }], 977 }],
976 ['target_arch=="ia32" or target_arch=="x64"', { 978 ['target_arch=="ia32" or target_arch=="x64"', {
977 'dependencies': [ 979 'dependencies': [
978 'media_asm', 980 'media_asm',
979 'media_sse2', 981 'media_sse2',
980 ], 982 ],
981 'sources': [ 983 'sources': [
982 'base/simd/convert_yuv_to_rgb_x86.cc', 984 'base/simd/convert_yuv_to_rgb_x86.cc',
983 ], 985 ],
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1241 }], 1243 }],
1242 ['proprietary_codecs==1', { 1244 ['proprietary_codecs==1', {
1243 'sources': [ 1245 'sources': [
1244 'filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc', 1246 'filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc',
1245 'filters/h264_to_annex_b_bitstream_converter_unittest.cc', 1247 'filters/h264_to_annex_b_bitstream_converter_unittest.cc',
1246 'formats/common/stream_parser_test_base.cc', 1248 'formats/common/stream_parser_test_base.cc',
1247 'formats/common/stream_parser_test_base.h', 1249 'formats/common/stream_parser_test_base.h',
1248 'formats/mp2t/es_adapter_video_unittest.cc', 1250 'formats/mp2t/es_adapter_video_unittest.cc',
1249 'formats/mp2t/es_parser_adts_unittest.cc', 1251 'formats/mp2t/es_parser_adts_unittest.cc',
1250 'formats/mp2t/es_parser_h264_unittest.cc', 1252 'formats/mp2t/es_parser_h264_unittest.cc',
1253 'formats/mp2t/es_parser_mpeg1audio_unittest.cc',
1251 'formats/mp2t/es_parser_test_base.cc', 1254 'formats/mp2t/es_parser_test_base.cc',
1252 'formats/mp2t/es_parser_test_base.h', 1255 'formats/mp2t/es_parser_test_base.h',
1253 'formats/mp2t/mp2t_stream_parser_unittest.cc', 1256 'formats/mp2t/mp2t_stream_parser_unittest.cc',
1254 'formats/mp4/aac_unittest.cc', 1257 'formats/mp4/aac_unittest.cc',
1255 'formats/mp4/avc_unittest.cc', 1258 'formats/mp4/avc_unittest.cc',
1256 'formats/mp4/box_reader_unittest.cc', 1259 'formats/mp4/box_reader_unittest.cc',
1257 'formats/mp4/es_descriptor_unittest.cc', 1260 'formats/mp4/es_descriptor_unittest.cc',
1258 'formats/mp4/mp4_stream_parser_unittest.cc', 1261 'formats/mp4/mp4_stream_parser_unittest.cc',
1259 'formats/mp4/sample_to_group_iterator_unittest.cc', 1262 'formats/mp4/sample_to_group_iterator_unittest.cc',
1260 'formats/mp4/track_run_iterator_unittest.cc', 1263 'formats/mp4/track_run_iterator_unittest.cc',
1261 'formats/mpeg/adts_stream_parser_unittest.cc', 1264 'formats/mpeg/adts_stream_parser_unittest.cc',
1262 'formats/mpeg/mp3_stream_parser_unittest.cc', 1265 'formats/mpeg/mpeg1_audio_stream_parser_unittest.cc',
1263 ], 1266 ],
1264 }], 1267 }],
1265 # TODO(wolenetz): Fix size_t to int truncations in win64. See 1268 # TODO(wolenetz): Fix size_t to int truncations in win64. See
1266 # http://crbug.com/171009 1269 # http://crbug.com/171009
1267 ['OS=="win" and target_arch=="x64"', { 1270 ['OS=="win" and target_arch=="x64"', {
1268 'msvs_disabled_warnings': [ 4267, ], 1271 'msvs_disabled_warnings': [ 4267, ],
1269 }], 1272 }],
1270 ['OS=="mac"', { 1273 ['OS=="mac"', {
1271 'sources': [ 1274 'sources': [
1272 'video/capture/mac/video_capture_device_factory_mac_unittest.mm', 1275 'video/capture/mac/video_capture_device_factory_mac_unittest.mm',
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
1726 ], 1729 ],
1727 }], 1730 }],
1728 ], 1731 ],
1729 }], 1732 }],
1730 ], 1733 ],
1731 }, 1734 },
1732 ], 1735 ],
1733 }], 1736 }],
1734 ], 1737 ],
1735 } 1738 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698