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

Side by Side Diff: source/ffmpeg.gyp

Issue 3832001: ffmpeg add neon assembly to gyp and fix offsets with simple values... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: Created 10 years, 2 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 # There's a couple key GYP variables that control how FFmpeg is built: 5 # There's a couple key GYP variables that control how FFmpeg is built:
6 # ffmpeg_branding 6 # ffmpeg_branding
7 # Controls whether we build the Chromium or Google Chrome version of 7 # Controls whether we build the Chromium or Google Chrome version of
8 # FFmpeg. The Google Chrome version contains additional codecs. 8 # FFmpeg. The Google Chrome version contains additional codecs.
9 # Typical values are Chromium, Chrome, ChromiumOS, and ChromeOS. 9 # Typical values are Chromium, Chrome, ChromiumOS, and ChromeOS.
10 # use_system_ffmpeg 10 # use_system_ffmpeg
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 'sources!': [ 345 'sources!': [
346 'patched-ffmpeg-mt/libavcodec/libvpxdec.c', 346 'patched-ffmpeg-mt/libavcodec/libvpxdec.c',
347 ], 347 ],
348 'conditions': [ 348 'conditions': [
349 ['arm_neon==1', { 349 ['arm_neon==1', {
350 'sources': [ 350 'sources': [
351 'patched-ffmpeg-mt/libavcodec/arm/dsputil_init_neon.c', 351 'patched-ffmpeg-mt/libavcodec/arm/dsputil_init_neon.c',
352 'patched-ffmpeg-mt/libavcodec/arm/dsputil_neon.S', 352 'patched-ffmpeg-mt/libavcodec/arm/dsputil_neon.S',
353 'patched-ffmpeg-mt/libavcodec/arm/fft_neon.S', 353 'patched-ffmpeg-mt/libavcodec/arm/fft_neon.S',
354 'patched-ffmpeg-mt/libavcodec/arm/int_neon.S', 354 'patched-ffmpeg-mt/libavcodec/arm/int_neon.S',
355 'patched-ffmpeg-mt/libavcodec/arm/mdct_neon.S',
356 'patched-ffmpeg-mt/libavcodec/arm/mpegvideo_neon.S', # oct 1 0
355 'patched-ffmpeg-mt/libavcodec/arm/rdft_neon.S', 357 'patched-ffmpeg-mt/libavcodec/arm/rdft_neon.S',
356 'patched-ffmpeg-mt/libavcodec/arm/simple_idct_neon.S', 358 'patched-ffmpeg-mt/libavcodec/arm/simple_idct_neon.S',
357 'patched-ffmpeg-mt/libavcodec/arm/vp3dsp_neon.S', 359 'patched-ffmpeg-mt/libavcodec/arm/vp3dsp_neon.S',
358 'patched-ffmpeg-mt/libavcodec/arm/mdct_neon.S',
359 ], 360 ],
360 }], 361 }],
361 ], 362 ],
362 }], # target_arch=="arm" 363 }], # target_arch=="arm"
363 ['target_arch=="arm" and (ffmpeg_branding=="Chrome" or ffmpeg_brandi ng=="ChromeOS")', { 364 ['target_arch=="arm" and (ffmpeg_branding=="Chrome" or ffmpeg_brandi ng=="ChromeOS")', {
364 'sources': [ 365 'sources': [
365 'patched-ffmpeg-mt/libavcodec/arm/h264dsp_init_arm.c', 366 'patched-ffmpeg-mt/libavcodec/arm/h264dsp_init_arm.c',
366 'patched-ffmpeg-mt/libavcodec/arm/h264pred_init_arm.c', 367 'patched-ffmpeg-mt/libavcodec/arm/h264pred_init_arm.c',
367 'patched-ffmpeg-mt/libavcodec/arm/mpegvideo_arm.c', 368 'patched-ffmpeg-mt/libavcodec/arm/mpegvideo_arm.c',
368 'patched-ffmpeg-mt/libavcodec/arm/mpegvideo_armv5te.c', 369 'patched-ffmpeg-mt/libavcodec/arm/mpegvideo_armv5te.c',
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
906 ], # conditions 907 ], # conditions
907 }, 908 },
908 ], # targets 909 ], # targets
909 } 910 }
910 911
911 # Local Variables: 912 # Local Variables:
912 # tab-width:2 913 # tab-width:2
913 # indent-tabs-mode:nil 914 # indent-tabs-mode:nil
914 # End: 915 # End:
915 # vim: set expandtab tabstop=2 shiftwidth=2: 916 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « patches/to_upstream/16_neon_offsets.patch ('k') | source/patched-ffmpeg-mt/libavcodec/arm/asm-offsets.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698