HomeiOS Developmentandroid - Rewarded Advert is just not loading in listview.builder (card)

android – Rewarded Advert is just not loading in listview.builder (card)


I’m placing rewarded adverts in my flutter app, so individuals can get credit when they’re watching a advert. I first examined it the principle web page of my flutter app (This advert is named by an button contained in the appbar) right here the advert was loading appropriately should you press the button twice, what can also be a bit bizarre. Now i wished the add the advert button inside an different class inside an card inside an listview.builder, however i do not get any advert displayed why is not this working?

I’ve examined if the void is just not being known as, however that is working appropriately and is being known as.

Pleas assist me, i’m sitting with this drawback for days now.

The code to point out me the advert is:

Future <void> _createRewardedAd() async {
    RewardedAd.load(
      adUnitId: RewardedAdUnitId!,
      request: const AdRequest(httpTimeoutMillis: 1050, nonPersonalizedAds: false),
      rewardedAdLoadCallback: RewardedAdLoadCallback(
        onAdLoaded: (advert) {
          setState(() {
            _rewardedAd = advert;
          });
        },
        onAdFailedToLoad: (error) {
          print('Didn't load rewarded advert: $error');
        },
      ),
    );
  }

  void _showRewardedAd() {
    if (_rewardedAd == null) {
      print('Rewarded advert not loaded but.');
      return;
    }

    _rewardedAd!.fullScreenContentCallback = FullScreenContentCallback(
      onAdDismissedFullScreenContent: (advert) {
        advert.dispose();
        _createRewardedAd();
      },
      onAdFailedToShowFullScreenContent: (advert, error) {
        print('Failed to point out rewarded advert: $error');
        advert.dispose();
        _createRewardedAd();
      },
    );

    _rewardedAd!.present(onUserEarnedReward: (advert, reward) async {

      ultimate consumer = auth.currentUser;
      if(consumer != null) {
        ultimate uid = consumer.uid;
        DatabaseReference ref = FirebaseDatabase.occasion.ref("$uid");
        _getImageAndMoney();
        ref.replace({uid: cash + 2});
        ultimate snapshot = await ref.baby('$uid').get();
        moneyd = snapshot.worth.toString();
        if (snapshot.exists) {
          moneyd = snapshot.worth.toString();
          print(snapshot.worth);
        } else {
          print('No knowledge accessible.');
        }
        if (int.tryParse(moneyd) != null) {
          cash = int.tryParse(moneyd) ?? 0;
        } else {
          print('Invalid worth for moneyd: $moneyd');
        }


        _getImageAndMoney();
      }});
  }
  void _showRewardedAdWithLoading(BuildContext context) async {
    showDialog(
      context: context,
      barrierDismissible: false,
      builder: (context) => Heart(
        baby: CircularProgressIndicator(),
      ),
    );

    await _createRewardedAd();

    Navigator.pop(context); // dismiss the loading dialog

    _showRewardedAd();
  }
And the listview.builder is:

ListView.builder(
shrinkWrap: true,
major: false,
itemCount: 1,
itemBuilder: (context, index) {
return Card(

borderOnForeground:true,
shade: Colours.white,
form: RoundedRectangleBorder(
aspect: BorderSide(width: 1,shade: Colours.purple.shade900),
borderRadius: BorderRadius.round(12),
),
baby: ListTile(
contentPadding: const EdgeInsets.all(8),
title: Textual content(
'Free',
model:  TextStyle(
shade: Colours.purple.shade900,
fontSize: 18,
fontWeight: FontWeight.daring,
),
),
subtitle: Textual content(
'Get Free ',
model:  TextStyle(
fontSize: 16,
shade: Colours.purple.shade900,
),
),
trailing: Textual content(
'Free',
model:  TextStyle(
shade: Colours.purple.shade900,
fontSize: 16,
fontWeight: FontWeight.daring,
),
),

onTap: () {


  advert._showRewardedAdWithLoading(context);
  Navigator.pop(context);
}
),
);})
  ]
  ))
);
}

}

The console exhibits me this:

I/DynamiteModule(11744): Contemplating native module com.google.android.gms.adverts.dynamite:0 and distant module com.google.android.gms.adverts.dynamite:224400003
I/DynamiteModule(11744): Chosen distant model of com.google.android.gms.adverts.dynamite, model >= 224400003
V/DynamiteModule(11744): Dynamite loader model >= 2, utilizing loadModule2NoCrashUtils
I/Advertisements     (11744): Use RequestConfiguration.Builder().setTestDeviceIds(Arrays.asList("39FA9851194373A951D0B2A3B338B6A6")) to get check adverts on this gadget.
W/Advertisements     (11744): HTTP timeout too low: 1050 milliseconds. Reverting to default timeout: 60000 milliseconds.
W/ConnectionStatusConfig(11744): Dynamic lookup for intent failed for motion: com.google.android.gms.adverts.service.CACHE
I/AudioManager(11744): In isSpeakerphoneOn(), calling software: com.grathoapps.anyknower
D/AudioManagerExtImpl(11744): getStreamVolume packageName=com.grathoapps.anyknower, index=2, streamType=3
D/AudioManagerExtImpl(11744): getStreamVolume packageName=com.grathoapps.anyknower, index=0, streamType=2
W/ziparchive(11744): Unable to open '/knowledge/consumer/0/com.grathoapps.anyknower/app_pccache/5/5DB0BF3FBB3F66F032F069EF4BD70FE5C21B5594/pcam.dm': No such file or listing
D/nativeloader(11744): Configuring classloader-namespace for different apk . target_sdk_version=31, uses_libraries=ALL, library_path=, permitted_path=/knowledge:/mnt/broaden
D/nativeloader(11744): Extending system_exposed_libraries: libvraudio_client.qti.so:libbinauralrenderer_wrapper.qti.so:libhoaeffects.qti.so:libQOC.qti.so:libupdateprof.qti.so:libQOC.qti.so:libdiag_system.qti.so:libqape.qti.so:libqesdk_ndk_platform.qti.so:liblistenjni.qti.so
W/ConnectionStatusConfig(11744): Dynamic lookup for intent failed for motion: com.google.android.gms.adverts.service.START
V/AutofillManager(11744): receiver outcomes: flags=7 enabled=true, enabledForAugmentedOnly: false
V/Utility(11744): getAutofillClient(): null on tremendous, looking for exercise thread
V/Utility(11744): getAutofillClient(): not one of the 1 actions on android.app.Utility@a1727e0 have focus
V/AutofillManager(11744): No AutofillClient for com.grathoapps.anyknower on context android.app.Utility@a1727e0
V/Utility(11744): getAutofillClient(): null on tremendous, looking for exercise thread
V/Utility(11744): getAutofillClient(): not one of the 1 actions on android.app.Utility@a1727e0 have focus
V/AutofillManager(11744): No AutofillClient for com.grathoapps.anyknower on context android.app.Utility@a1727e0
I/High quality (11744): Skipped: true 1
W/AudioCapabilities(11744): Unsupported mime audio/ffmpeg
W/VideoCapabilities(11744): Unsupported mime picture/vnd.android.heic
W/VideoCapabilities(11744): Unsupported mime video/ffmpeg
W/VideoCapabilities(11744): Unrecognized profile/stage 0/3 for video/mpeg2
W/VideoCapabilities(11744): Unrecognized profile/stage 0/3 for video/mpeg2
W/AudioCapabilities(11744): Unsupported mime audio/ozoaudio
W/AudioCapabilities(11744): Unsupported mime audio/ozoaudio
E/cr_MediaCodecUtil(11744): Decoder for sort video/av01 is just not supported on this gadget [requireSoftware=false, requireHardware=true].
I/ExoPlayerImpl(11744): Init af9d841 [AndroidXMedia3/1.0.0-beta02] [RE879AL1, RMX3370, realme, 31]
W/oapps.anyknowe(11744): Accessing hidden methodology Landroid/media/AudioTrack;->getLatency()I (unsupported, reflection, allowed)
D/AudioManagerExtImpl(11744): getStreamVolume packageName=com.grathoapps.anyknower, index=2, streamType=3
I/High quality (11744): Skipped: true 2
I/DMCodecAdapterFactory(11744): Creating an asynchronous MediaCodec adapter for monitor sort audio
D/OplusCCodec(11744): OplusCCodec [122]: (0xb400007d30178280)
D/CCodec  (11744): allocate(c2.android.aac.decoder)
I/Codec2Client(11744): Out there Codec2 providers: "ozoaudio" "software program"
I/CCodec  (11744): Created part [c2.android.aac.decoder]
D/CCodecConfig(11744): learn media sort: audio/mp4a-latm
D/ReflectedParamUpdater(11744): extent() != 1 for single worth sort: algo.buffers.max-count.values
D/ReflectedParamUpdater(11744): extent() != 1 for single worth sort: output.subscribed-indices.values
D/ReflectedParamUpdater(11744): extent() != 1 for single worth sort: enter.buffers.allocator-ids.values
D/ReflectedParamUpdater(11744): extent() != 1 for single worth sort: output.buffers.allocator-ids.values
D/ReflectedParamUpdater(11744): extent() != 1 for single worth sort: algo.buffers.allocator-ids.values
D/ReflectedParamUpdater(11744): extent() != 1 for single worth sort: output.buffers.pool-ids.values
D/ReflectedParamUpdater(11744): extent() != 1 for single worth sort: algo.buffers.pool-ids.values
I/CCodecConfig(11744): question failed after returning 19 values (BAD_INDEX)
D/CCodecConfig(11744): c2 config diff is Dict {
D/CCodecConfig(11744):   c2::u32 coded.aac-packaging.worth = 0
D/CCodecConfig(11744):   c2::u32 coded.bitrate.worth = 64000
D/CCodecConfig(11744):   c2::u32 coded.pl.stage = 0
D/CCodecConfig(11744):   c2::u32 coded.pl.profile = 8192
D/CCodecConfig(11744):   c2::i32 coding.drc.album-mode.worth = 0
D/CCodecConfig(11744):   c2::float coding.drc.attenuation-factor.worth = 1
D/CCodecConfig(11744):   c2::float coding.drc.boost-factor.worth = 1
D/CCodecConfig(11744):   c2::i32 coding.drc.compression-mode.worth = 3
D/CCodecConfig(11744):   c2::i32 coding.drc.effect-type.worth = 3
D/CCodecConfig(11744):   c2::float coding.drc.encoded-level.worth = 0.25
D/CCodecConfig(11744):   c2::float coding.drc.reference-level.worth = -16
D/CCodecConfig(11744):   c2::u32 enter.buffers.max-size.worth = 8192
D/CCodecConfig(11744):   c2::u32 enter.delay.worth = 0
D/CCodecConfig(11744):   string enter.media-type.worth = "audio/mp4a-latm"
D/CCodecConfig(11744):   c2::u32 output.delay.worth = 2
D/CCodecConfig(11744):   c2::float output.drc.output-loudness.worth = 0.25
D/CCodecConfig(11744):   string output.media-type.worth = "audio/uncooked"
D/CCodecConfig(11744):   c2::u32 uncooked.channel-count.worth = 1
D/CCodecConfig(11744):   c2::u32 uncooked.max-channel-count.worth = 8
D/CCodecConfig(11744):   c2::u32 uncooked.sample-rate.worth = 44100
D/CCodecConfig(11744): }
I/MediaCodec(11744): MediaCodec will function in async mode
I/MediaCodec(11744): [c2.android.aac.decoder] configure, format : AMessage(what = 0x00000000) = {
I/MediaCodec(11744):   string log-session-id = "UyXojuT5Q7ZDEvqm"
I/MediaCodec(11744):   int32_t sample-rate = 44100
I/MediaCodec(11744):   string mime = "audio/mp4a-latm"
I/MediaCodec(11744):   int32_t channel-count = 2
I/MediaCodec(11744):   int32_t precedence = 0
I/MediaCodec(11744):   Buffer csd-0 = {
I/MediaCodec(11744):     00000000:  12 10 00 00 00 00 00 00  00 00 00 00 00 00 00 00  ................
I/MediaCodec(11744):   }
I/MediaCodec(11744): }
D/ListServiceUtils(11744): mListServiceUtils::init CallingPid 11744
D/ListServiceUtils(11744): mListServiceUtils::init this 0xb400007d2e9b4dc0
D/OplusCCodec(11744): debug enabled , debugType :0
D/OplusCCodec(11744): [initiateConfigureComponent:L309] OplusFeedbackInfo  mFeedbackID:-5476376609204764032
D/CCodec  (11744): [c2.android.aac.decoder] buffers are sure to CCodec for this session
D/CCodecConfig(11744): no c2 equivalents for log-session-id
D/CCodecConfig(11744): no c2 equivalents for flags
D/CCodecConfig(11744): c2 config diff is   c2::u32 uncooked.channel-count.worth = 2
W/Codec2Client(11744): question -- param skipped: index = 1107298332.
D/CCodec  (11744): setup codecs enter: AMessage(what = 0x00000000) = {
D/CCodec  (11744):   int32_t aac-drc-album-mode = 0
D/CCodec  (11744):   int32_t aac-drc-boost-level = 127
D/CCodec  (11744):   int32_t aac-drc-cut-level = 127
D/CCodec  (11744):   int32_t aac-drc-effect-type = 3
D/CCodec  (11744):   int32_t aac-encoded-target-level = -1
D/CCodec  (11744):   int32_t aac-max-output-channel_count = 8
D/CCodec  (11744):   int32_t aac-target-ref-level = 64
D/CCodec  (11744):   int32_t bitrate = 64000
D/CCodec  (11744):   int32_t channel-count = 2
D/CCodec  (11744):   int32_t stage = 0
D/CCodec  (11744):   int32_t max-input-size = 8192
D/CCodec  (11744):   string mime = "audio/mp4a-latm"
D/CCodec  (11744):   int32_t profile = 2
D/CCodec  (11744):   int32_t sample-rate = 44100
D/CCodec  (11744): }
D/CCodec  (11744): setup codecs output: AMessage(what = 0x00000000) = {
D/CCodec  (11744):   int32_t aac-drc-album-mode = 0
D/CCodec  (11744):   int32_t aac-drc-boost-level = 127
D/CCodec  (11744):   int32_t aac-drc-cut-level = 127
D/CCodec  (11744):   int32_t aac-drc-effect-type = 3
D/CCodec  (11744):   int32_t aac-drc-output-loudness = -1
D/CCodec  (11744):   int32_t aac-encoded-target-level = -1
D/CCodec  (11744):   int32_t aac-max-output-channel_count = 8
D/CCodec  (11744):   int32_t aac-target-ref-level = 64
D/CCodec  (11744):   int32_t channel-count = 2
D/CCodec  (11744):   string mime = "audio/uncooked"
D/CCodec  (11744):   int32_t sample-rate = 44100
D/CCodec  (11744):   int32_t android._config-pcm-encoding = 2
D/CCodec  (11744): }
I/CCodecConfig(11744): question failed after returning 19 values (BAD_INDEX)
D/MediaCodec(11744): hold callback message for reclaim
W/Codec2Client(11744): question -- param skipped: index = 1342179345.
W/Codec2Client(11744): question -- param skipped: index = 2415921170.
W/Codec2Client(11744): question -- param skipped: index = 1610614798.
D/C2Store (11744): Utilizing ION
D/CCodecBufferChannel(11744): [c2.android.aac.decoder#29] Created enter block pool with allocatorID 16 => poolID 17 - OK (0)
I/CCodecBufferChannel(11744): [c2.android.aac.decoder#29] Created output block pool with allocatorID 16 => poolID 383 - OK
D/CCodecBufferChannel(11744): [c2.android.aac.decoder#29] Configured output block pool ids 383 => OK
D/CCodecBufferChannel(11744): [c2.android.aac.decoder#29] begin: updating output delay 2
E/ion     (11744): ioctl c0044901 failed with code -1: Inappropriate ioctl for gadget
I/DMCodecAdapterFactory(11744): Creating an asynchronous MediaCodec adapter for monitor sort video
D/CCodecConfig(11744): c2 config diff is   c2::u32 uncooked.channel-mask.worth = 12
D/OplusACodec(11744): OplusACodec [144]: 
D/OplusACodec(11744): ACodec() ro.oplus.audio.impact.sort = dolby ro.oplus.audio.dolby.sort = none
E/MULTIMEDIAConfig(11744): [getInt32:L80] Not discover config, Returning default
D/MULTIMEDIAConfig(11744): [getInt32:L85] Config identify: oplus.software program.video.sr_support worth: 1
E/OplusACodec(11744): [OplusACodec:201] mSrOsieMMListCheckResult:0x0 mOsieVersion:2
D/OplusACodec(11744): getBufferChannel: New
I/OMXClient(11744): IOmx service obtained
I/MediaCodec(11744): MediaCodec will function in async mode
I/MediaCodec(11744): [OMX.qcom.video.decoder.vp9] configure, format : AMessage(what = 0x00000000) = {
I/MediaCodec(11744):   int32_t color-transfer = 3
I/MediaCodec(11744):   int32_t max-height = 360
I/MediaCodec(11744):   string log-session-id = "UyXojuT5Q7ZDEvqm"
I/MediaCodec(11744):   int32_t max-width = 640
I/MediaCodec(11744):   string mime = "video/x-vnd.on2.vp9"
I/MediaCodec(11744):   int32_t width = 640
I/MediaCodec(11744):   int32_t color-range = 2
I/MediaCodec(11744):   int32_t precedence = 0
I/MediaCodec(11744):   int32_t rotation-degrees = 0
I/MediaCodec(11744):   int32_t color-standard = 1
I/MediaCodec(11744):   int32_t max-input-size = 86400
I/MediaCodec(11744):   int32_t peak = 360
I/MediaCodec(11744): }
D/SurfaceUtils(11744): connecting to floor 0xb400007d2e7aa010, cause connectToSurface
I/MediaCodec(11744): [OMX.qcom.video.decoder.vp9] setting floor era to 12025857
D/SurfaceUtils(11744): disconnecting from floor 0xb400007d2e7aa010, cause connectToSurface(reconnect)
D/SurfaceUtils(11744): connecting to floor 0xb400007d2e7aa010, cause connectToSurface(reconnect)
D/OplusACodec(11744): checking state:Change:[osie:1 sr:1] MMlist:0
D/OplusACodec(11744): configure internalmsg:AMessage(what="conf", goal = 5) = {
D/OplusACodec(11744):   int32_t color-transfer = 3
D/OplusACodec(11744):   int32_t max-height = 360
D/OplusACodec(11744):   string log-session-id = "UyXojuT5Q7ZDEvqm"
D/OplusACodec(11744):   int32_t max-width = 640
D/OplusACodec(11744):   string mime = "video/x-vnd.on2.vp9"
D/OplusACodec(11744):   int32_t width = 640
D/OplusACodec(11744):   int32_t color-range = 2
D/OplusACodec(11744):   int32_t precedence = 0
D/OplusACodec(11744):   int32_t rotation-degrees = 0
D/OplusACodec(11744):   int32_t color-standard = 1
D/OplusACodec(11744):   int32_t max-input-size = 86400
D/OplusACodec(11744):   int32_t peak = 360
D/OplusACodec(11744):   RefBase *native-window = 0xb400007d2e7aa000
D/OplusACodec(11744):   int32_t flags = 0
D/OplusACodec(11744): }
D/OplusACodec(11744): configure debug:null0
D/OplusACodec(11744): configure internalmsg:AMessage(what="conf", goal = 5) = {
D/OplusACodec(11744):   int32_t color-transfer = 3
D/OplusACodec(11744):   int32_t max-height = 360
D/OplusACodec(11744):   string log-session-id = "UyXojuT5Q7ZDEvqm"
D/OplusACodec(11744):   int32_t max-width = 640
D/OplusACodec(11744):   string mime = "video/x-vnd.on2.vp9"
D/OplusACodec(11744):   int32_t width = 640
D/OplusACodec(11744):   int32_t color-range = 2
D/OplusACodec(11744):   int32_t precedence = 0
D/OplusACodec(11744):   int32_t rotation-degrees = 0
D/OplusACodec(11744):   int32_t color-standard = 1
D/OplusACodec(11744):   int32_t max-input-size = 86400
D/OplusACodec(11744):   int32_t peak = 360
D/OplusACodec(11744):   RefBase *native-window = 0xb400007d2e7aa000
D/OplusACodec(11744):   int32_t flags = 0
D/OplusACodec(11744): }
D/OplusACodec(11744): [configureCodec:L1475] OplusFeedbackInfo  mFeedbackID:-5476376609205371904
D/AtlasEventUploadUtils(11744): setEvent occasion:atlas_event_video_monitor_network_switch
D/IAtlas  (11744): IAtlas::init CallingPid 11744
D/IAtlas  (11744): IAtlas::init this 0xb400007d3003ca00
D/ListServiceUtils(11744): checkInListByUid module:notify-network-optimize uid:10846 price 170us return 0
D/ListServiceUtils(11744): checkInListByUid module:video-statistics uid:10846 price 157us return 0
D/OplusUtils(11744): ACodec getComponentRole [92]: mime:video/x-vnd.on2.vp9
I/ExtendedACodec(11744): setupVideoDecoder()
E/OplusACodec(11744): [GetVideoCodingTypeFromMime:L1156] mime:video/x-vnd.on2.vp9
I/ExtendedACodec(11744): Decoder will probably be in body by body mode
W/ExtendedACodec(11744): Didn't set body packing format on part
D/MediaCodec(11744): hold callback message for reclaim
D/SurfaceUtils(11744): arrange nativeWindow 0xb400007d2e7aa010 for 640x360, shade 0x7fa30c06, rotation 0, utilization 0x20402900
D/AudioTrackExtImpl(11744): AudioTrackExtImpl init
D/AudioTrackExtImpl(11744): audioTrackTest
D/AudioTrack(11744): set() streamType -1, sampleRate 44100, format 0x1, channelMask 0x3, frameCount 14144, flags #0, notificationFrames 0, sessionId 1505, transferType 3, uid -1, pid -1 cbf 1
D/AudioTrack(11744): set(): Constructing AudioTrack with attributes: utilization=1 content material=0 flags=0xa00 tags=[]
I/AudioTrack(11744): createTrack_l(428) on outputId(21) : 0xb400007d300dc500, mCblk = 0x7dbffbe000,  mLatency = 400, mAfLatency = 80, frameCount = 14144, mSampleRate = 44100, mFlags = 0x8, mReqFrameCount = 14144, mNotificationFramesAct = 7072
D/AudioTrack(11744): setVolume left 1.000 proper 1.000 , callingPid 11744
W/MediaCodec(11744): mapFormat: no mediaType data
D/OplusACodec(11744): signalSetParameters [342]: (0xb400007d300e3c00)
D/OplusACodec(11744): OplusACodec ControlOwner:0 msg:AMessage(what = 0x00000000) = {
D/OplusACodec(11744):   int32_t android._video-scaling = 1
D/OplusACodec(11744): }
E/OplusCustomizeRestrictionManager(11744): sInstance is null, begin a brand new sInstance
I/DynamiteModule(11744): Contemplating native module com.google.android.gms.adverts.dynamite:0 and distant module com.google.android.gms.adverts.dynamite:224400003
I/DynamiteModule(11744): Chosen distant model of com.google.android.gms.adverts.dynamite, model >= 224400003
D/AudioManagerExtImpl(11744): getStreamVolume packageName=com.grathoapps.anyknower, index=2, streamType=3
D/AudioManagerExtImpl(11744): getStreamVolume packageName=com.grathoapps.anyknower, index=2, streamType=3
I/OplusFeedbackInfo(11744): 0xb400007d300e4200 OMX.qcom.video.decoder.vp9 640x360 inputFps=26 outputFps=14 renderFps=0
I/OplusFeedbackInfo(11744): 0xb400007d300e4200 OMX.qcom.video.decoder.vp9 640x360 inputFps=0 outputFps=0 renderFps=0
D/CCodecBufferChannel(11744): [c2.android.aac.decoder#29] DEBUG: elapsed: n=6 [in=0 pipeline=0 out=2]
D/PipelineWatcher(11744): DEBUG: elapsed 2 / 6
I/OplusFeedbackInfo(11744): 0xb400007d300e4200 OMX.qcom.video.decoder.vp9 640x360 inputFps=0 outputFps=0 renderFps=0
I/OplusFeedbackInfo(11744): 0xb400007d300e4200 OMX.qcom.video.decoder.vp9 640x360 inputFps=0 outputFps=0 renderFps=0
I/OplusFeedbackInfo(11744): 0xb400007d300e4200 OMX.qcom.video.decoder.vp9 640x360 inputFps=0 outputFps=0 renderFps=0
I/OplusFeedbackInfo(11744): 0xb400007d300e4200 OMX.qcom.video.decoder.vp9 640x360 inputFps=0 outputFps=0 renderFps=0
I/OplusFeedbackInfo(11744): ship video stutter message MM_FB_EventID#11002#ClientPid#11744#Element#OMX.qcom.video.decoder.vp9#VideoInputFps#0#VideoOutputFps#0#VideoRenderFps#0#VideoHeight#360#VideoWidth#640#IsMediaPlayer#0#LogLevel#3#FpsArray#26/0/0/0/0/0#ModifiedVersion#5
D/AtlasEventUploadUtils(11744): setEvent occasion:atlas_event_video_stutter
D/BufferPoolAccessor2.0(11744): bufferpool2 0xb400007d2e9dbe28 : 5(40960 measurement) whole buffers - 0(0 measurement) used buffers - 21/26 (recycle/alloc) - 9/26 (fetch/switch)
D/BufferPoolAccessor2.0(11744): evictor expired: 1, evicted: 1
I/OplusFeedbackInfo(11744): 0xb400007d300e4200 OMX.qcom.video.decoder.vp9 640x360 inputFps=0 outputFps=0 renderFps=0
I/OplusFeedbackInfo(11744): 0xb400007d300e4200 OMX.qcom.video.decoder.vp9 640x360 inputFps=0 outputFps=0 renderFps=0
I/OplusFeedbackInfo(11744): 0xb400007d300e4200 OMX.qcom.video.decoder.vp9 640x360 inputFps=0 outputFps=0 renderFps=0
I/OplusFeedbackInfo(11744): 0xb400007d300e4200 OMX.qcom.video.decoder.vp9 640x360 inputFps=0 outputFps=0 renderFps=0
I/OplusFeedbackInfo(11744): [sendFPSInfo:L406] enter/output/render 0fps over 10s, scale back print fps log

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments