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

Unified Diff: media/media.gyp

Issue 3044019: This tool demonstrates the use of the Media Foundation H.264 decoder as a sta... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/base/video_frame.h ('k') | media/mf/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/media.gyp
===================================================================
--- media/media.gyp (revision 53631)
+++ media/media.gyp (working copy)
@@ -385,6 +385,30 @@
},
},
},
+ {
+ 'target_name': 'mft_h264_decoder',
+ 'type': 'executable',
+ 'dependencies': [
+ 'media',
+ '../base/base.gyp:base',
+ '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'mf/main.cc',
+ 'mf/mft_h264_decoder.cc',
+ 'mf/mft_h264_decoder.h',
+ 'mf/file_reader_util.cc',
+ 'mf/file_reader_util.h',
+ ],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE
+ },
+ },
+ },
],
}],
['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
« no previous file with comments | « media/base/video_frame.h ('k') | media/mf/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698