HomeSort by relevance Sort by last modified time
    Searched refs:remoteRefcount (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libstagefright/include/media/stagefright/
MediaBuffer.h 105 // sum of localRefcount() and remoteRefcount()
107 return localRefcount() + remoteRefcount();
114 int remoteRefcount() const {
116 int32_t remoteRefcount =
118 // Sanity check so that remoteRefCount() is non-negative.
119 return remoteRefcount >= 0 ? remoteRefcount : 0; // do not allow corrupted data.
  /frameworks/av/media/libstagefright/foundation/
MediaBufferGroup.cpp 87 const int remoteRefcount = buffer->remoteRefcount();
91 "buffer(%p) localRefcount %d != 0, remoteRefcount %d",
92 buffer, localRefcount, remoteRefcount);
99 ALOGE("buffer(%p) has residual remoteRefcount %d",
100 buffer, remoteRefcount);

Completed in 56 milliseconds