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

Side by Side Diff: media/media_gpu.gypi

Issue 2058413003: H264 HW encode using MediaFoundation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 { 1 {
2 'variables': { 2 'variables': {
3 'use_v4lplugin%': 0, 3 'use_v4lplugin%': 0,
4 'use_v4l2_codec%': 0, 4 'use_v4l2_codec%': 0,
5 }, 5 },
6 'defines': [ 6 'defines': [
7 'MEDIA_GPU_IMPLEMENTATION' 7 'MEDIA_GPU_IMPLEMENTATION'
8 ], 8 ],
9 'dependencies': [ 9 'dependencies': [
10 '../base/base.gyp:base', 10 '../base/base.gyp:base',
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 ], 317 ],
318 'process_outputs_as_sources': 1, 318 'process_outputs_as_sources': 1,
319 'message': 'Generating libva stubs for dynamic loading', 319 'message': 'Generating libva stubs for dynamic loading',
320 }, 320 },
321 ] 321 ]
322 }], 322 }],
323 ['OS=="win"', { 323 ['OS=="win"', {
324 'dependencies': [ 324 'dependencies': [
325 '../media/media.gyp:media', 325 '../media/media.gyp:media',
326 '../media/media.gyp:mf_initializer', 326 '../media/media.gyp:mf_initializer',
327 '../third_party/libyuv/libyuv.gyp:libyuv',
327 '../ui/gl/gl.gyp:gl', 328 '../ui/gl/gl.gyp:gl',
328 '../ui/gl/init/gl_init.gyp:gl_init', 329 '../ui/gl/init/gl_init.gyp:gl_init',
329 ], 330 ],
330 'link_settings': { 331 'link_settings': {
331 'libraries': [ 332 'libraries': [
332 '-ld3d9.lib', 333 '-ld3d9.lib',
333 '-ld3d11.lib', 334 '-ld3d11.lib',
334 '-ldxva2.lib', 335 '-ldxva2.lib',
335 '-lstrmiids.lib', 336 '-lstrmiids.lib',
336 '-lmf.lib', 337 '-lmf.lib',
(...skipping 10 matching lines...) Expand all
347 'mfplat.dll', 348 'mfplat.dll',
348 ], 349 ],
349 }, 350 },
350 }, 351 },
351 }, 352 },
352 'sources': [ 353 'sources': [
353 'gpu/dxva_picture_buffer_win.cc', 354 'gpu/dxva_picture_buffer_win.cc',
354 'gpu/dxva_picture_buffer_win.h', 355 'gpu/dxva_picture_buffer_win.h',
355 'gpu/dxva_video_decode_accelerator_win.cc', 356 'gpu/dxva_video_decode_accelerator_win.cc',
356 'gpu/dxva_video_decode_accelerator_win.h', 357 'gpu/dxva_video_decode_accelerator_win.h',
358 'gpu/media_foundation_video_encode_accelerator_win.cc',
359 'gpu/media_foundation_video_encode_accelerator_win.h',
357 ], 360 ],
358 'include_dirs': [ 361 'include_dirs': [
359 '<(DEPTH)/third_party/khronos', 362 '<(DEPTH)/third_party/khronos',
360 ], 363 ],
361 }], 364 }],
362 ['OS == "win" and target_arch == "x64"', { 365 ['OS == "win" and target_arch == "x64"', {
363 'msvs_settings': { 366 'msvs_settings': {
364 'VCCLCompilerTool': { 367 'VCCLCompilerTool': {
365 'AdditionalOptions': [ 368 'AdditionalOptions': [
366 '/wd4267', # Conversion from 'size_t' to 'type', possible loss of da ta 369 '/wd4267', # Conversion from 'size_t' to 'type', possible loss of da ta
367 ], 370 ],
368 }, 371 },
369 }, 372 },
370 }], 373 }],
371 ], 374 ],
372 } 375 }
OLDNEW
« media/gpu/media_foundation_video_encode_accelerator_win.cc ('K') | « media/media.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698