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

Side by Side Diff: media/media.gyp

Issue 101623006: Created VideoFramePool to avoid unnecessary VideoFrame alloc/free. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change SimpleFormatChange test so it can pass on Android. Created 7 years 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
« no previous file with comments | « media/filters/vpx_video_decoder.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 'base/user_input_monitor.h', 325 'base/user_input_monitor.h',
326 'base/user_input_monitor_linux.cc', 326 'base/user_input_monitor_linux.cc',
327 'base/user_input_monitor_mac.cc', 327 'base/user_input_monitor_mac.cc',
328 'base/user_input_monitor_win.cc', 328 'base/user_input_monitor_win.cc',
329 'base/video_decoder.cc', 329 'base/video_decoder.cc',
330 'base/video_decoder.h', 330 'base/video_decoder.h',
331 'base/video_decoder_config.cc', 331 'base/video_decoder_config.cc',
332 'base/video_decoder_config.h', 332 'base/video_decoder_config.h',
333 'base/video_frame.cc', 333 'base/video_frame.cc',
334 'base/video_frame.h', 334 'base/video_frame.h',
335 'base/video_frame_pool.cc',
336 'base/video_frame_pool.h',
335 'base/video_renderer.cc', 337 'base/video_renderer.cc',
336 'base/video_renderer.h', 338 'base/video_renderer.h',
337 'base/video_util.cc', 339 'base/video_util.cc',
338 'base/video_util.h', 340 'base/video_util.h',
339 'base/yuv_convert.cc', 341 'base/yuv_convert.cc',
340 'base/yuv_convert.h', 342 'base/yuv_convert.h',
341 'cdm/aes_decryptor.cc', 343 'cdm/aes_decryptor.cc',
342 'cdm/aes_decryptor.h', 344 'cdm/aes_decryptor.h',
343 'cdm/json_web_key.cc', 345 'cdm/json_web_key.cc',
344 'cdm/json_web_key.h', 346 'cdm/json_web_key.h',
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
956 'base/serial_runner_unittest.cc', 958 'base/serial_runner_unittest.cc',
957 'base/seekable_buffer_unittest.cc', 959 'base/seekable_buffer_unittest.cc',
958 'base/sinc_resampler_unittest.cc', 960 'base/sinc_resampler_unittest.cc',
959 'base/test_data_util.cc', 961 'base/test_data_util.cc',
960 'base/test_data_util.h', 962 'base/test_data_util.h',
961 'base/text_renderer_unittest.cc', 963 'base/text_renderer_unittest.cc',
962 'base/user_input_monitor_unittest.cc', 964 'base/user_input_monitor_unittest.cc',
963 'base/vector_math_testing.h', 965 'base/vector_math_testing.h',
964 'base/vector_math_unittest.cc', 966 'base/vector_math_unittest.cc',
965 'base/video_frame_unittest.cc', 967 'base/video_frame_unittest.cc',
968 'base/video_frame_pool_unittest.cc',
966 'base/video_util_unittest.cc', 969 'base/video_util_unittest.cc',
967 'base/yuv_convert_unittest.cc', 970 'base/yuv_convert_unittest.cc',
968 'cdm/aes_decryptor_unittest.cc', 971 'cdm/aes_decryptor_unittest.cc',
969 'cdm/json_web_key_unittest.cc', 972 'cdm/json_web_key_unittest.cc',
970 'ffmpeg/ffmpeg_common_unittest.cc', 973 'ffmpeg/ffmpeg_common_unittest.cc',
971 'filters/audio_decoder_selector_unittest.cc', 974 'filters/audio_decoder_selector_unittest.cc',
972 'filters/audio_file_reader_unittest.cc', 975 'filters/audio_file_reader_unittest.cc',
973 'filters/audio_renderer_algorithm_unittest.cc', 976 'filters/audio_renderer_algorithm_unittest.cc',
974 'filters/audio_renderer_impl_unittest.cc', 977 'filters/audio_renderer_impl_unittest.cc',
975 'filters/blocking_url_protocol_unittest.cc', 978 'filters/blocking_url_protocol_unittest.cc',
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
1632 ], 1635 ],
1633 }], 1636 }],
1634 ], 1637 ],
1635 }], 1638 }],
1636 ], 1639 ],
1637 }, 1640 },
1638 ], 1641 ],
1639 }], 1642 }],
1640 ], 1643 ],
1641 } 1644 }
OLDNEW
« no previous file with comments | « media/filters/vpx_video_decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698