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

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: Add PoolImpl destructor to make clang on the bots happy. 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
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 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after
1632 ], 1634 ],
1633 }], 1635 }],
1634 ], 1636 ],
1635 }], 1637 }],
1636 ], 1638 ],
1637 }, 1639 },
1638 ], 1640 ],
1639 }], 1641 }],
1640 ], 1642 ],
1641 } 1643 }
OLDNEW
« media/base/video_frame_pool.cc ('K') | « media/filters/vpx_video_decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698