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

Side by Side Diff: media/media.gyp

Issue 2133993002: Parse VP9 compressed header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implement VP9 compressed header parsing Created 4 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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 'filters/source_buffer_stream.cc', 561 'filters/source_buffer_stream.cc',
562 'filters/source_buffer_stream.h', 562 'filters/source_buffer_stream.h',
563 'filters/stream_parser_factory.cc', 563 'filters/stream_parser_factory.cc',
564 'filters/stream_parser_factory.h', 564 'filters/stream_parser_factory.h',
565 'filters/video_cadence_estimator.cc', 565 'filters/video_cadence_estimator.cc',
566 'filters/video_cadence_estimator.h', 566 'filters/video_cadence_estimator.h',
567 'filters/video_renderer_algorithm.cc', 567 'filters/video_renderer_algorithm.cc',
568 'filters/video_renderer_algorithm.h', 568 'filters/video_renderer_algorithm.h',
569 'filters/vp8_bool_decoder.cc', 569 'filters/vp8_bool_decoder.cc',
570 'filters/vp8_bool_decoder.h', 570 'filters/vp8_bool_decoder.h',
571 'filters/vp8_parser.cc', 571 'filters/vp8_parser.cc',
Pawel Osciak 2016/08/04 10:20:20 Should we be adding the other parser files here as
kcwu 2016/08/05 11:38:48 Done.
572 'filters/vp8_parser.h', 572 'filters/vp8_parser.h',
573 'filters/vp9_bool_decoder.cc',
574 'filters/vp9_bool_decoder.h',
573 'filters/vp9_parser.cc', 575 'filters/vp9_parser.cc',
574 'filters/vp9_parser.h', 576 'filters/vp9_parser.h',
575 'filters/vp9_raw_bits_reader.cc', 577 'filters/vp9_raw_bits_reader.cc',
576 'filters/vp9_raw_bits_reader.h', 578 'filters/vp9_raw_bits_reader.h',
577 'filters/vpx_video_decoder.cc', 579 'filters/vpx_video_decoder.cc',
578 'filters/vpx_video_decoder.h', 580 'filters/vpx_video_decoder.h',
579 'filters/webvtt_util.h', 581 'filters/webvtt_util.h',
580 'filters/wsola_internals.cc', 582 'filters/wsola_internals.cc',
581 'filters/wsola_internals.h', 583 'filters/wsola_internals.h',
582 'formats/common/offset_byte_queue.cc', 584 'formats/common/offset_byte_queue.cc',
(...skipping 1723 matching lines...) Expand 10 before | Expand all | Expand 10 after
2306 'dependencies': [ 2308 'dependencies': [
2307 '../build/linux/system.gyp:libdrm', 2309 '../build/linux/system.gyp:libdrm',
2308 ] 2310 ]
2309 }], 2311 }],
2310 ], 2312 ],
2311 } 2313 }
2312 ] 2314 ]
2313 }], 2315 }],
2314 ], 2316 ],
2315 } 2317 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698