diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 19:03:59 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 19:03:59 +0000 |
commit | 19ffd67a4c32136d1d2abc07c97dcbb7ec5af216 (patch) | |
tree | 15ed2566ef839af4e218fc1d96880a9d1dc5ac44 /media/media.gyp | |
parent | 483a075709bb435ddf380aac050dc3b7a586d244 (diff) | |
download | chromium_src-19ffd67a4c32136d1d2abc07c97dcbb7ec5af216.zip chromium_src-19ffd67a4c32136d1d2abc07c97dcbb7ec5af216.tar.gz chromium_src-19ffd67a4c32136d1d2abc07c97dcbb7ec5af216.tar.bz2 |
API to allow strategy class to work on the output buffer of OpenMAX
Added interface of OmxOutputSink to interact with OmxCodec to
perform buffer negotiation and buffer read signaling.
TEST=media_unittests --gtest_filter=Omx*
BUG=32753
BUG=32754
BUG=32870
Review URL: http://codereview.chromium.org/593047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39247 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/media.gyp')
-rw-r--r-- | media/media.gyp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/media/media.gyp b/media/media.gyp index eb5c392..8391bb1 100644 --- a/media/media.gyp +++ b/media/media.gyp @@ -159,6 +159,10 @@ '../testing/gmock.gyp:gmock', '../testing/gtest.gyp:gtest', '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', + '../third_party/openmax/openmax.gyp:il', + ], + 'sources!': [ + '../third_party/openmax/omx_stub.cc', ], 'sources': [ 'audio/audio_util_unittest.cc', @@ -192,6 +196,9 @@ 'filters/file_data_source_unittest.cc', 'filters/video_decoder_impl_unittest.cc', 'filters/video_renderer_base_unittest.cc', + 'omx/mock_omx.cc', + 'omx/mock_omx.h', + 'omx/omx_codec_unittest.cc', 'omx/omx_input_buffer_unittest.cc', ], 'conditions': [ @@ -268,8 +275,8 @@ 'tools/omx_test/color_space_util.h', 'tools/omx_test/file_reader_util.cc', 'tools/omx_test/file_reader_util.h', - 'tools/omx_test/file_writer_util.cc', - 'tools/omx_test/file_writer_util.h', + 'tools/omx_test/file_sink.cc', + 'tools/omx_test/file_sink.h', 'tools/omx_test/omx_test.cc', ], }, |