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

Side by Side Diff: media/media.gyp

Issue 1636083003: H264 HW encode using VideoToolbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: jfroy@ comments. Created 4 years, 9 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 'base/loopback_audio_converter.h', 339 'base/loopback_audio_converter.h',
340 'base/mac/avfoundation_glue.h', 340 'base/mac/avfoundation_glue.h',
341 'base/mac/avfoundation_glue.mm', 341 'base/mac/avfoundation_glue.mm',
342 'base/mac/coremedia_glue.h', 342 'base/mac/coremedia_glue.h',
343 'base/mac/coremedia_glue.mm', 343 'base/mac/coremedia_glue.mm',
344 'base/mac/corevideo_glue.h', 344 'base/mac/corevideo_glue.h',
345 'base/mac/video_frame_mac.cc', 345 'base/mac/video_frame_mac.cc',
346 'base/mac/video_frame_mac.h', 346 'base/mac/video_frame_mac.h',
347 'base/mac/videotoolbox_glue.h', 347 'base/mac/videotoolbox_glue.h',
348 'base/mac/videotoolbox_glue.mm', 348 'base/mac/videotoolbox_glue.mm',
349 'base/mac/videotoolbox_helpers.cc',
350 'base/mac/videotoolbox_helpers.h',
349 'base/media.cc', 351 'base/media.cc',
350 'base/media.h', 352 'base/media.h',
351 'base/media_client.cc', 353 'base/media_client.cc',
352 'base/media_client.h', 354 'base/media_client.h',
353 'base/media_file_checker.cc', 355 'base/media_file_checker.cc',
354 'base/media_file_checker.h', 356 'base/media_file_checker.h',
355 'base/media_keys.cc', 357 'base/media_keys.cc',
356 'base/media_keys.h', 358 'base/media_keys.h',
357 'base/media_log.cc', 359 'base/media_log.cc',
358 'base/media_log.h', 360 'base/media_log.h',
(...skipping 1662 matching lines...) Expand 10 before | Expand all | Expand 10 after
2021 '..', 2023 '..',
2022 ], 2024 ],
2023 'sources': [ 2025 'sources': [
2024 'base/mac/coremedia_glue.h', 2026 'base/mac/coremedia_glue.h',
2025 'base/mac/coremedia_glue.mm', 2027 'base/mac/coremedia_glue.mm',
2026 'base/mac/corevideo_glue.h', 2028 'base/mac/corevideo_glue.h',
2027 'base/mac/video_frame_mac.cc', 2029 'base/mac/video_frame_mac.cc',
2028 'base/mac/video_frame_mac.h', 2030 'base/mac/video_frame_mac.h',
2029 'base/mac/videotoolbox_glue.h', 2031 'base/mac/videotoolbox_glue.h',
2030 'base/mac/videotoolbox_glue.mm', 2032 'base/mac/videotoolbox_glue.mm',
2033 'base/mac/videotoolbox_helpers.cc',
2034 'base/mac/videotoolbox_helpers.h',
2031 'base/simd/convert_rgb_to_yuv.h', 2035 'base/simd/convert_rgb_to_yuv.h',
2032 'base/simd/convert_rgb_to_yuv_c.cc', 2036 'base/simd/convert_rgb_to_yuv_c.cc',
2033 'base/simd/convert_yuv_to_rgb.h', 2037 'base/simd/convert_yuv_to_rgb.h',
2034 'base/simd/convert_yuv_to_rgb_c.cc', 2038 'base/simd/convert_yuv_to_rgb_c.cc',
2035 'base/simd/filter_yuv.h', 2039 'base/simd/filter_yuv.h',
2036 'base/simd/filter_yuv_c.cc', 2040 'base/simd/filter_yuv_c.cc',
2037 'base/video_frame.cc', 2041 'base/video_frame.cc',
2038 'base/video_frame.h', 2042 'base/video_frame.h',
2039 'base/video_frame_metadata.cc', 2043 'base/video_frame_metadata.cc',
2040 'base/video_frame_metadata.h', 2044 'base/video_frame_metadata.h',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
2107 'dependencies': [ 2111 'dependencies': [
2108 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2112 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2109 ], 2113 ],
2110 }], 2114 }],
2111 ], 2115 ],
2112 }, 2116 },
2113 ], 2117 ],
2114 }], 2118 }],
2115 ], 2119 ],
2116 } 2120 }
OLDNEW
« media/base/mac/videotoolbox_helpers.cc ('K') | « media/cast/sender/video_encoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698