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

Side by Side Diff: content/content_common.gypi

Issue 813693006: Add accelerated video decoder interface, VP8 and H.264 implementations and hook up to V4L2SVDA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « content/common/gpu/media/vp8_picture.cc ('k') | media/filters/h264_parser.h » ('j') | 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', 9 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
10 '../net/net.gyp:net', 10 '../net/net.gyp:net',
(...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 'common/gpu/media/v4l2_video_device.h', 824 'common/gpu/media/v4l2_video_device.h',
825 'common/gpu/media/v4l2_video_encode_accelerator.cc', 825 'common/gpu/media/v4l2_video_encode_accelerator.cc',
826 'common/gpu/media/v4l2_video_encode_accelerator.h', 826 'common/gpu/media/v4l2_video_encode_accelerator.h',
827 ], 827 ],
828 'include_dirs': [ 828 'include_dirs': [
829 '<(DEPTH)/third_party/khronos', 829 '<(DEPTH)/third_party/khronos',
830 ], 830 ],
831 'conditions': [ 831 'conditions': [
832 ['target_arch == "arm"', { 832 ['target_arch == "arm"', {
833 'sources': [ 833 'sources': [
834 'common/gpu/media/accelerated_video_decoder.h',
835 'common/gpu/media/h264_decoder.cc',
836 'common/gpu/media/h264_decoder.h',
837 'common/gpu/media/h264_dpb.cc',
838 'common/gpu/media/h264_dpb.h',
834 'common/gpu/media/tegra_v4l2_video_device.cc', 839 'common/gpu/media/tegra_v4l2_video_device.cc',
835 'common/gpu/media/tegra_v4l2_video_device.h', 840 'common/gpu/media/tegra_v4l2_video_device.h',
841 'common/gpu/media/v4l2_slice_video_decode_accelerator.cc',
842 'common/gpu/media/v4l2_slice_video_decode_accelerator.h',
843 'common/gpu/media/vp8_decoder.cc',
844 'common/gpu/media/vp8_decoder.h',
845 'common/gpu/media/vp8_picture.cc',
846 'common/gpu/media/vp8_picture.h',
836 ], 847 ],
837 }], 848 }],
838 ], 849 ],
839 }], 850 }],
840 ['target_arch != "arm" and chromeos == 1', { 851 ['target_arch != "arm" and chromeos == 1', {
841 'dependencies': [ 852 'dependencies': [
842 '../media/media.gyp:media', 853 '../media/media.gyp:media',
843 '../third_party/libyuv/libyuv.gyp:libyuv', 854 '../third_party/libyuv/libyuv.gyp:libyuv',
844 ], 855 ],
845 'sources': [ 856 'sources': [
846 'common/gpu/media/h264_dpb.cc',
847 'common/gpu/media/h264_dpb.h',
848 'common/gpu/media/va_surface.h', 857 'common/gpu/media/va_surface.h',
849 'common/gpu/media/vaapi_h264_decoder.cc', 858 'common/gpu/media/vaapi_h264_decoder.cc',
850 'common/gpu/media/vaapi_h264_decoder.h', 859 'common/gpu/media/vaapi_h264_decoder.h',
860 'common/gpu/media/vaapi_h264_dpb.cc',
861 'common/gpu/media/vaapi_h264_dpb.h',
851 'common/gpu/media/vaapi_picture.cc', 862 'common/gpu/media/vaapi_picture.cc',
852 'common/gpu/media/vaapi_picture.h', 863 'common/gpu/media/vaapi_picture.h',
853 'common/gpu/media/vaapi_video_decode_accelerator.cc', 864 'common/gpu/media/vaapi_video_decode_accelerator.cc',
854 'common/gpu/media/vaapi_video_decode_accelerator.h', 865 'common/gpu/media/vaapi_video_decode_accelerator.h',
855 'common/gpu/media/vaapi_video_encode_accelerator.cc', 866 'common/gpu/media/vaapi_video_encode_accelerator.cc',
856 'common/gpu/media/vaapi_video_encode_accelerator.h', 867 'common/gpu/media/vaapi_video_encode_accelerator.h',
857 'common/gpu/media/vaapi_wrapper.cc', 868 'common/gpu/media/vaapi_wrapper.cc',
858 'common/gpu/media/vaapi_wrapper.h', 869 'common/gpu/media/vaapi_wrapper.h',
859 ], 870 ],
860 'conditions': [ 871 'conditions': [
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1016 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1027 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1017 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', 1028 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc',
1018 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', 1029 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h',
1019 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1030 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1020 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', 1031 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc',
1021 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', 1032 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h',
1022 ], 1033 ],
1023 }], 1034 }],
1024 ], 1035 ],
1025 } 1036 }
OLDNEW
« no previous file with comments | « content/common/gpu/media/vp8_picture.cc ('k') | media/filters/h264_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698