diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-06 19:29:47 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-06 19:29:47 +0000 |
commit | 3c262eb1e94299c6b6997e8647f1a372b644c334 (patch) | |
tree | e8b56e3b28694583cc86758f3bc531d95c306efc /media/omx | |
parent | 1c04bd1673c858b357ff97a98c3cdb3363a20d76 (diff) | |
download | chromium_src-3c262eb1e94299c6b6997e8647f1a372b644c334.zip chromium_src-3c262eb1e94299c6b6997e8647f1a372b644c334.tar.gz chromium_src-3c262eb1e94299c6b6997e8647f1a372b644c334.tar.bz2 |
Fix linux build
Linux 64 bit build complains about printf. Comment out those
problematic lines.
TBR=ajwong
Review URL: http://codereview.chromium.org/524049
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35641 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/omx')
-rw-r--r-- | media/omx/omx_test.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/media/omx/omx_test.cc b/media/omx/omx_test.cc index 1e450e8..74dfe5d 100644 --- a/media/omx/omx_test.cc +++ b/media/omx/omx_test.cc @@ -162,9 +162,10 @@ class TestApp { base::Time stop_time = base::Time::Now(); base::TimeDelta duration = stop_time - start_time_; int64 micro_sec = duration.InMicroseconds(); - printf("\n<<< frame delivered : %lld >>>", frame_count_); - printf("\n<<< time used(us) : %lld >>>", micro_sec); - printf("\n<<< fps : %lld >>>", frame_count_ * 1000000 / micro_sec); + // TODO(hclam): Linux 64bit doesn't like the following lines. + // printf("\n<<< frame delivered : %lld >>>", frame_count_); + // printf("\n<<< time used(us) : %lld >>>", micro_sec); + // printf("\n<<< fps : %lld >>>", frame_count_ * 1000000 / micro_sec); // printf("\n<<< bitrate>>> : %lld\n", bit_count_ * 1000000 / micro_sec); printf("\n"); } |