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

Side by Side Diff: media/base/android/ndk_media_codec_bridge.cc

Issue 2114473002: Remove usage of MediaCodec.getName(), use proxy instead. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build. Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "media/base/android/ndk_media_codec_bridge.h" 5 #include "media/base/android/ndk_media_codec_bridge.h"
6 6
7 #include <media/NdkMediaError.h> 7 #include <media/NdkMediaError.h>
8 #include <media/NdkMediaFormat.h> 8 #include <media/NdkMediaFormat.h>
9 9
10 #include <limits> 10 #include <limits>
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 size_t offset, 242 size_t offset,
243 const uint8_t** addr, 243 const uint8_t** addr,
244 size_t* capacity) { 244 size_t* capacity) {
245 const uint8_t* src_data = 245 const uint8_t* src_data =
246 AMediaCodec_getOutputBuffer(media_codec_.get(), index, capacity); 246 AMediaCodec_getOutputBuffer(media_codec_.get(), index, capacity);
247 *addr = src_data + offset; 247 *addr = src_data + offset;
248 *capacity -= offset; 248 *capacity -= offset;
249 return MEDIA_CODEC_OK; 249 return MEDIA_CODEC_OK;
250 } 250 }
251 251
252 bool NdkMediaCodecBridge::IsSoftwareCodec() {
253 // There does not appear to be an AMediaCodec_getName() for us to find the
254 // codec name.
255 return false;
256 }
257
258 } // namespace media 252 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698