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

Side by Side Diff: webrtc/modules/video_coding/codecs/h264/h264.gypi

Issue 1645543003: H264: Improve FFmpeg decoder performance by using I420BufferPool. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: common_video not unnecessarily depending on webrtc_h264, fixed circular dependency Created 4 years, 10 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) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 22 matching lines...) Expand all
33 'conditions': [ 33 'conditions': [
34 ['rtc_initialize_ffmpeg==1', { 34 ['rtc_initialize_ffmpeg==1', {
35 'defines': [ 35 'defines': [
36 'WEBRTC_INITIALIZE_FFMPEG', 36 'WEBRTC_INITIALIZE_FFMPEG',
37 ], 37 ],
38 }], 38 }],
39 ], 39 ],
40 'dependencies': [ 40 'dependencies': [
41 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 41 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
42 '<(DEPTH)/third_party/openh264/openh264.gyp:openh264_encoder', 42 '<(DEPTH)/third_party/openh264/openh264.gyp:openh264_encoder',
43 '<(DEPTH)/webrtc/common_video/common_video.gyp:common_video',
43 ], 44 ],
44 'sources': [ 45 'sources': [
45 'h264_decoder_impl.cc', 46 'h264_decoder_impl.cc',
46 'h264_decoder_impl.h', 47 'h264_decoder_impl.h',
47 'h264_encoder_impl.cc', 48 'h264_encoder_impl.cc',
48 'h264_encoder_impl.h', 49 'h264_encoder_impl.h',
49 ], 50 ],
50 }], 51 }],
51 ], 52 ],
52 'sources': [ 53 'sources': [
(...skipping 27 matching lines...) Expand all
80 'h264_video_toolbox_encoder.cc', 81 'h264_video_toolbox_encoder.cc',
81 'h264_video_toolbox_encoder.h', 82 'h264_video_toolbox_encoder.h',
82 'h264_video_toolbox_nalu.cc', 83 'h264_video_toolbox_nalu.cc',
83 'h264_video_toolbox_nalu.h', 84 'h264_video_toolbox_nalu.h',
84 ], 85 ],
85 }, # webrtc_h264_video_toolbox 86 }, # webrtc_h264_video_toolbox
86 ], # targets 87 ], # targets
87 }], # OS=="ios" 88 }], # OS=="ios"
88 ], # conditions 89 ], # conditions
89 } 90 }
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/BUILD.gn ('k') | webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698