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

Side by Side Diff: media/media.gyp

Issue 1258083004: Add a Vp9Parser implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 5 years, 4 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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 'filters/stream_parser_factory.cc', 553 'filters/stream_parser_factory.cc',
554 'filters/stream_parser_factory.h', 554 'filters/stream_parser_factory.h',
555 'filters/video_cadence_estimator.cc', 555 'filters/video_cadence_estimator.cc',
556 'filters/video_cadence_estimator.h', 556 'filters/video_cadence_estimator.h',
557 'filters/video_renderer_algorithm.cc', 557 'filters/video_renderer_algorithm.cc',
558 'filters/video_renderer_algorithm.h', 558 'filters/video_renderer_algorithm.h',
559 'filters/vp8_bool_decoder.cc', 559 'filters/vp8_bool_decoder.cc',
560 'filters/vp8_bool_decoder.h', 560 'filters/vp8_bool_decoder.h',
561 'filters/vp8_parser.cc', 561 'filters/vp8_parser.cc',
562 'filters/vp8_parser.h', 562 'filters/vp8_parser.h',
563 'filters/vp9_parser.cc',
564 'filters/vp9_parser.h',
563 'filters/vp9_raw_bits_reader.cc', 565 'filters/vp9_raw_bits_reader.cc',
564 'filters/vp9_raw_bits_reader.h', 566 'filters/vp9_raw_bits_reader.h',
565 'filters/vpx_video_decoder.cc', 567 'filters/vpx_video_decoder.cc',
566 'filters/vpx_video_decoder.h', 568 'filters/vpx_video_decoder.h',
567 'filters/webvtt_util.h', 569 'filters/webvtt_util.h',
568 'filters/wsola_internals.cc', 570 'filters/wsola_internals.cc',
569 'filters/wsola_internals.h', 571 'filters/wsola_internals.h',
570 'formats/common/offset_byte_queue.cc', 572 'formats/common/offset_byte_queue.cc',
571 'formats/common/offset_byte_queue.h', 573 'formats/common/offset_byte_queue.h',
572 'formats/webm/webm_audio_client.cc', 574 'formats/webm/webm_audio_client.cc',
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
1259 'filters/in_memory_url_protocol_unittest.cc', 1261 'filters/in_memory_url_protocol_unittest.cc',
1260 'filters/ivf_parser_unittest.cc', 1262 'filters/ivf_parser_unittest.cc',
1261 'filters/jpeg_parser_unittest.cc', 1263 'filters/jpeg_parser_unittest.cc',
1262 'filters/source_buffer_stream_unittest.cc', 1264 'filters/source_buffer_stream_unittest.cc',
1263 'filters/video_cadence_estimator_unittest.cc', 1265 'filters/video_cadence_estimator_unittest.cc',
1264 'filters/video_decoder_selector_unittest.cc', 1266 'filters/video_decoder_selector_unittest.cc',
1265 'filters/video_frame_stream_unittest.cc', 1267 'filters/video_frame_stream_unittest.cc',
1266 'filters/video_renderer_algorithm_unittest.cc', 1268 'filters/video_renderer_algorithm_unittest.cc',
1267 'filters/vp8_bool_decoder_unittest.cc', 1269 'filters/vp8_bool_decoder_unittest.cc',
1268 'filters/vp8_parser_unittest.cc', 1270 'filters/vp8_parser_unittest.cc',
1271 'filters/vp9_parser_unittest.cc',
1269 'filters/vp9_raw_bits_reader_unittest.cc', 1272 'filters/vp9_raw_bits_reader_unittest.cc',
1270 'capture/webm_muxer_unittest.cc', 1273 'capture/webm_muxer_unittest.cc',
1271 'formats/common/offset_byte_queue_unittest.cc', 1274 'formats/common/offset_byte_queue_unittest.cc',
1272 'formats/webm/cluster_builder.cc', 1275 'formats/webm/cluster_builder.cc',
1273 'formats/webm/cluster_builder.h', 1276 'formats/webm/cluster_builder.h',
1274 'formats/webm/opus_packet_builder.cc', 1277 'formats/webm/opus_packet_builder.cc',
1275 'formats/webm/opus_packet_builder.h', 1278 'formats/webm/opus_packet_builder.h',
1276 'formats/webm/tracks_builder.cc', 1279 'formats/webm/tracks_builder.cc',
1277 'formats/webm/tracks_builder.h', 1280 'formats/webm/tracks_builder.h',
1278 'formats/webm/webm_cluster_parser_unittest.cc', 1281 'formats/webm/webm_cluster_parser_unittest.cc',
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
2046 'dependencies': [ 2049 'dependencies': [
2047 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2050 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2048 ], 2051 ],
2049 }], 2052 }],
2050 ], 2053 ],
2051 }, 2054 },
2052 ], 2055 ],
2053 }], 2056 }],
2054 ], 2057 ],
2055 } 2058 }
OLDNEW
« media/filters/vp9_parser_unittest.cc ('K') | « media/filters/vp9_parser_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698