HomeSort by relevance Sort by last modified time
    Searched refs:findInt32 (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /frameworks/av/media/libstagefright/
Utils.cpp 89 if (meta->findInt32(kKeyBitRate, &avgBitRate)) {
94 if (meta->findInt32(kKeyIsSyncFrame, &isSync) && isSync != 0) {
100 CHECK(meta->findInt32(kKeyWidth, &width));
101 CHECK(meta->findInt32(kKeyHeight, &height));
107 if (meta->findInt32(kKeySARWidth, &sarWidth)
108 && meta->findInt32(kKeySARHeight, &sarHeight)) {
114 if (meta->findInt32(kKeyColorFormat, &colorFormat)) {
128 if (meta->findInt32(kKeyRotation, &rotationDegrees)) {
133 CHECK(meta->findInt32(kKeyChannelCount, &numChannels));
134 CHECK(meta->findInt32(kKeySampleRate, &sampleRate))
    [all...]
ACodec.cpp     [all...]
StagefrightMetadataRetriever.cpp 228 if (buffer->meta_data()->findInt32(kKeyIsUnreadable, &unreadable)
256 CHECK(meta->findInt32(kKeyWidth, &width));
257 CHECK(meta->findInt32(kKeyHeight, &height));
269 if (!trackMeta->findInt32(kKeyRotation, &rotationAngle)) {
283 if (meta->findInt32(kKeyDisplayWidth, &displayWidth)) {
286 if (meta->findInt32(kKeyDisplayHeight, &displayHeight)) {
291 CHECK(meta->findInt32(kKeyColorFormat, &srcFormat));
346 if (fileMeta->findInt32(kKeyIsDRM, &drm) && drm != 0) {
547 if (!trackMeta->findInt32(kKeyBitRate, &audioBitrate)) {
553 CHECK(trackMeta->findInt32(kKeyWidth, &videoWidth))
    [all...]
OMXCodec.cpp 295 if (source->getFormat()->findInt32(
579 CHECK(meta->findInt32(kKeyBitRate, &bitRate));
587 CHECK(meta->findInt32(kKeyChannelCount, &numChannels));
588 CHECK(meta->findInt32(kKeySampleRate, &sampleRate));
590 if (!meta->findInt32(kKeyAACProfile, &aacProfile)) {
595 if (!meta->findInt32(kKeyIsADTS, &isADTS)) {
606 if (meta->findInt32(kKeyChannelCount, &numChannels)
607 && meta->findInt32(kKeySampleRate, &sampleRate)) {
618 CHECK(meta->findInt32(kKeyChannelCount, &numChannels));
619 CHECK(meta->findInt32(kKeySampleRate, &sampleRate))
    [all...]
AACWriter.cpp 103 CHECK(meta->findInt32(kKeyChannelCount, &mChannelCount));
104 CHECK(meta->findInt32(kKeySampleRate, &mSampleRate));
108 if (meta->findInt32(kKeyAACProfile, &mAACProfile)) {
336 if (buffer->meta_data()->findInt32(kKeyIsCodecConfig, &isCodecSpecific) && isCodecSpecific) {
  /frameworks/av/include/media/stagefright/foundation/
ParsedMessage.h 31 bool findInt32(const char *name, int32_t *value) const;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
HTTPLiveSource.cpp 171 CHECK(msg->findInt32("generation", &generation));
209 CHECK(msg->findInt32("what", &what));
219 format->findInt32("width", &width) && format->findInt32("height", &height)) {
245 CHECK(msg->findInt32("err", &err));
254 CHECK(msg->findInt32(
NuPlayer.cpp 338 CHECK(format->findInt32("type", &trackType));
352 CHECK(format->findInt32("auto", &isAuto));
353 CHECK(format->findInt32("default", &isDefault));
354 CHECK(format->findInt32("forced", &isForced));
437 CHECK(msg->findInt32("type", (int32_t*)&type32));
463 CHECK(msg->findInt32("select", &select));
483 && info->findInt32("type", &type)
506 CHECK(msg->findInt32("generation", &generation));
635 && meta->findInt32(kKeyFrameRate, &rate) && rate > 0) {
646 CHECK(msg->findInt32("generation", &generation))
    [all...]
NuPlayerRenderer.cpp 273 CHECK(response->findInt32("offload", &offload));
292 CHECK(msg->findInt32("offload-only", &offloadOnly));
295 CHECK(msg->findInt32("has-video", &hasVideo));
298 CHECK(msg->findInt32("flags", (int32_t *)&flags));
333 CHECK(msg->findInt32("generation", &generation));
367 CHECK(msg->findInt32("generation", &generation));
383 CHECK(msg->findInt32("generation", &generation));
452 CHECK(msg->findInt32("generation", &generation));
899 CHECK(msg->findInt32("audio", &audio));
991 CHECK(msg->findInt32("audio", &audio))
    [all...]
GenericSource.cpp 203 if (meta->findInt32(kKeyRequiresSecureBuffers, &secure)
223 if (totalBitrate >= 0 && meta->findInt32(kKeyBitRate, &bitrate)) {
620 CHECK(msg->findInt32("trackIndex", &trackIndex));
667 CHECK(msg->findInt32("generation", &generation));
731 CHECK(msg->findInt32("generation", &msgGeneration));
765 CHECK(msg->findInt32("generation", &msgGeneration));
809 CHECK(msg->findInt32("audio", &audio));
932 meta->findInt32(kKeyTrackIsAutoselect, &isAutoselect);
933 meta->findInt32(kKeyTrackIsDefault, &isDefault);
934 meta->findInt32(kKeyTrackIsForced, &isForced)
    [all...]
RTSPSource.cpp 335 CHECK(msg->findInt32("generation", &generation));
352 CHECK(msg->findInt32("what", &what));
402 if (accessUnit->meta()->findInt32("damaged", &damaged)
444 CHECK(accessUnit->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
469 CHECK(msg->findInt32("finalResult", &finalResult));
524 CHECK(msg->findInt32("rtpTime", (int32_t *)&rtpTime));
597 CHECK(msg->findInt32("result", &err));
647 CHECK(msg->findInt32("result", &err));
  /frameworks/wilhelm/src/android/
android_AudioSfDecoder.cpp 268 bool hasChannelCount = meta->findInt32(kKeyChannelCount, &channelCount);
270 bool hasSampleRate = meta->findInt32(kKeySampleRate, &sr);
329 CHECK(meta->findInt32(kKeyChannelCount, &channelCount));
333 CHECK(meta->findInt32(kKeySampleRate, &sr));
338 // CHECK(meta->findInt32(kKeyChannelMask, &channelMask));
403 CHECK(msg->findInt32(WHATPARAM_LOOP_LOOPING, &loop));
629 if (msg->findInt32(PLAYEREVENT_PREFETCHSTATUSCHANGE, &val)) {
633 else if (msg->findInt32(PLAYEREVENT_PREFETCHFILLLEVELUPDATE, &val)) {
637 else if (msg->findInt32(PLAYEREVENT_ENDOFSTREAM, &val)) {
764 CHECK(meta->findInt32(kKeyChannelCount, &channelCount))
    [all...]
android_GenericPlayer.cpp 423 if (msg->findInt32(PLAYEREVENT_PREFETCHSTATUSCHANGE, &val1)) {
427 } else if (msg->findInt32(PLAYEREVENT_PREFETCHFILLLEVELUPDATE, &val1)) {
430 } else if (msg->findInt32(PLAYEREVENT_ENDOFSTREAM, &val1)) {
433 } else if (msg->findInt32(PLAYEREVENT_PREPARED, &val1)) {
436 } else if (msg->findInt32(PLAYEREVENT_CHANNEL_COUNT, &val1)) {
442 } else if (msg->findInt32(PLAYEREVENT_PLAY, &val1)) {
445 } else if (msg->findInt32(PLAYEREVENT_ERRORAFTERPREPARE, &val1)) {
507 if (msg->findInt32(WHATPARAM_BUFFERING_UPDATETHRESHOLD_PERCENT, &thresholdPercent)) {
527 if (msg->findInt32(WHATPARAM_SETPLAYEVENTS_FLAGS, &eventFlags) &&
528 msg->findInt32(WHATPARAM_SETPLAYEVENTS_MARKER, &markerPositionMs) &
    [all...]
AacBqToPcmCbRenderer.cpp 185 CHECK(meta->findInt32(kKeyChannelCount, &channelCount));
187 CHECK(meta->findInt32(kKeySampleRate, &sr));
  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.cpp 94 if (mPlaylist->meta() == NULL || !mPlaylist->meta()->findInt32(
134 CHECK(mPlaylist->meta()->findInt32("target-duration", &targetDurationSecs));
425 CHECK(msg->findInt32("generation", &generation));
455 CHECK(msg->findInt32("streamTypeMask", (int32_t *)&streamTypeMask));
463 CHECK(msg->findInt32("startDiscontinuitySeq", &startDiscontinuitySeq));
464 CHECK(msg->findInt32("adaptive", &adaptive));
519 CHECK(msg->findInt32("clear", &clear));
566 && latestMeta->findInt32("discontinuitySeq", &discontinuitySeq)
613 CHECK(mPlaylist->meta()->findInt32("target-duration", &targetDurationSecs));
732 if (mPlaylist->meta() == NULL || !mPlaylist->meta()->findInt32(
    [all...]
LiveSession.cpp 203 CHECK((*accessUnit)->meta()->findInt32("discontinuity", &type));
216 if ((*accessUnit)->meta()->findInt32("swapPacketSource", &swap) && swap) {
218 CHECK((*accessUnit)->meta()->findInt32("switchGeneration", &switchGeneration));
256 (*accessUnit)->meta()->findInt32("discontinuitySeq", &discontinuitySeq);
270 } else if ((*accessUnit)->meta()->findInt32("discard", &discard) && discard) {
294 if ((*accessUnit)->meta()->findInt32("subtitleGeneration", &subtitleGeneration)
397 CHECK(msg->findInt32("what", &what));
451 CHECK(msg->findInt32("err", &err));
523 CHECK(msg->findInt32("switchGeneration", &switchGeneration));
551 CHECK(msg->findInt32("generation", &generation))
    [all...]
  /frameworks/av/media/libstagefright/mpeg2ts/
AnotherPacketSource.cpp 94 if (buffer->meta()->findInt32("discontinuity", &discontinuity)) {
121 if ((*buffer)->meta()->findInt32("discontinuity", &discontinuity)) {
159 if (buffer->meta()->findInt32("discontinuity", &discontinuity)) {
201 if (buffer->meta()->findInt32("damaged", &damaged) && damaged) {
216 if (buffer->meta()->findInt32("discontinuity", &discontinuity)) {
255 if (!oldBuffer->meta()->findInt32(
  /frameworks/av/media/libstagefright/colorconversion/
SoftwareRenderer.cpp 65 CHECK(format->findInt32("color-format", &colorFormatNew));
68 CHECK(format->findInt32("stride", &widthNew));
69 CHECK(format->findInt32("slice-height", &heightNew));
166 if (!format->findInt32("rotation-degrees", &rotationDegrees)) {
  /frameworks/av/media/libstagefright/rtsp/
MyHandler.h 444 CHECK(msg->findInt32("result", &result));
470 if (msg->findInt32("reconnect", &reconnect) && reconnect) {
482 CHECK(msg->findInt32("result", &result));
598 CHECK(msg->findInt32("result", &result));
652 CHECK(msg->findInt32("result", &result));
784 CHECK(msg->findInt32("result", &result));
818 CHECK(msg->findInt32("generation", &generation));
843 CHECK(msg->findInt32("result", &result));
849 CHECK(msg->findInt32("generation", &generation));
900 if (msg->findInt32("reconnect", &reconnect) && reconnect)
    [all...]
rtp_test.cpp 201 CHECK(decoder->getFormat()->findInt32(kKeyWidth, &width));
202 CHECK(decoder->getFormat()->findInt32(kKeyHeight, &height));
  /frameworks/av/media/libstagefright/wifi-display/
MediaSender.cpp 290 CHECK(msg->findInt32("generation", &generation));
306 CHECK(msg->findInt32("what", &what));
314 CHECK(msg->findInt32("err", &err));
331 CHECK(msg->findInt32("err", &err));
419 CHECK(accessUnit->meta()->findInt32("rangeOffset", &rangeOffset));
420 CHECK(accessUnit->meta()->findInt32("rangeLength", &rangeLength));
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.cpp 95 if (response == NULL || !(*response)->findInt32("err", &err)) {
186 CHECK(msg->findInt32("reason", &reason));
192 CHECK(msg->findInt32("sessionID", &sessionID));
195 CHECK(msg->findInt32("err", &err));
220 CHECK(msg->findInt32("sessionID", &sessionID));
242 CHECK(msg->findInt32(
389 CHECK(msg->findInt32("playbackSessionID", &playbackSessionID));
392 CHECK(msg->findInt32("what", &what));
446 CHECK(msg->findInt32("channel", &channel));
455 CHECK(msg->findInt32("sessionID", &sessionID))
    [all...]
MediaPuller.cpp 58 if (!response->findInt32("err", &err)) {
135 CHECK(msg->findInt32("generation", &generation));
  /frameworks/av/cmds/stagefright/
sf2.cpp 212 CHECK(msg->findInt32("what", &what));
300 CHECK(meta->findInt32(kKeyWidth, &width));
301 CHECK(meta->findInt32(kKeyHeight, &height));
309 CHECK(meta->findInt32(kKeyChannelCount, &numChannels));
310 CHECK(meta->findInt32(kKeySampleRate, &sampleRate));
316 if (meta->findInt32(kKeyIsADTS, &isADTS) && isADTS != 0) {
434 if (meta->findInt32(kKeyMaxInputSize, &maxInputSize)) {
519 if (!inBuffer->meta_data()->findInt32(
  /frameworks/base/media/tests/omxjpegdecoder/
omx_jpeg_decoder.cpp 105 meta->findInt32(kKeyWidth, &width);
106 meta->findInt32(kKeyHeight, &height);

Completed in 1635 milliseconds

1 2 3 4