Coder Social home page Coder Social logo

tanersener / flutter-ffmpeg Goto Github PK

View Code? Open in Web Editor NEW
642.0 19.0 126.0 3.76 MB

FFmpeg plugin for Flutter. Not maintained anymore. Superseded by FFmpegKit.

License: GNU Lesser General Public License v3.0

Dart 76.39% Shell 0.07% Java 13.77% Objective-C 9.76%
ffmpeg flutter flutter-plugin x264 x265 gnutls vp8 vp9 ios android

flutter-ffmpeg's People

Contributors

dala00 avatar ibedek avatar marianoarga avatar nonlynerd avatar shreyaspapi avatar sulisong avatar tanersener avatar wreppun avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

flutter-ffmpeg's Issues

ffmpeg execute returns 1 error code

-i [absolute-path-in.mp4] -vf "crop=in_h" [absolute-path-out.mp4]

gives error code : 1

bir türlü çalıştıramadım video yu 1:1 ölçeğinde croplayamıyorum.

package sets application@label value

i get the error

Attribute application@label value=(CC) from AndroidManifest.xml:26:9-27
	is also present at [com.arthenica:mobile-ffmpeg-https:4.2.LTS] AndroidManifest.xml:14:9-41 value=(@string/app_name).
	Suggestion: add 'tools:replace="android:label"' to <application> element at AndroidManifest.xml:24:5-47:19 to override.

when compiling when using the package. without the package everything compiles fine.

[iOS] ld: targeted OS version does not support use of thread local variables in __gnutls_rnd_deinit for architecture x86_64

flutter_ffmpeg includes native libraries that require ios deployment target to be at least 9.3. If a deployment target is not set or a value smaller than 9.3 is used then your build will fail with the following error.

ld: targeted OS version does not support use of thread local variables in __gnutls_rnd_deinit for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Unfortunately the latest versions of Flutter and Cocoapods have some issues about setting ios deployment target from Podfile. Having platform :ios, '9.3' in your Podfile is not enough. Runner project still uses the default value 8.0. You need to open Runner.xcworkspace in Xcode and set iOS Deployment Target of Runner project to 9.3 manually.

提取视频的每一帧的图片

你好,请问如何利用fluent-ffmpeg将视频转换成图片呢?比如:60帧视频10秒钟,转成图片应该是600张.备注:不是通过命令行的形式,是通过nodejs调用api的方式.谢谢!
Hello, how to use fluent-ffmpeg to convert video into pictures? For example, 60 frames of video in 10 seconds should be converted into 600 pictures. Note: not through the command line, but through nodejs to call the api. Thank you!

Crash on Master channel

Description
App is crashing when making use of plugin in master channel and could potencially break plugin on future version of Flutter, I think is related to this issue:
flutter/flutter#34993
Also related:
flutter/engine#8830

It is working fine on stable channel for now.

Expected behavior
Launch ffmpeg process succesfully

Current behavior
Crash on getMediaInformation()

Screenshots

Logs
D/flutter-ffmpeg( 4423): Getting media information for /storage/emulated/0/Download/SampleVideo_1280x720_1mb.mp4 with timeout 10000.
D/EGL_emulation( 4423): eglMakeCurrent: 0xe0621440: ver 2 0 (tinfo 0xe0695dc0)
D/EGL_emulation( 4423): eglMakeCurrent: 0xe06223a0: ver 2 0 (tinfo 0xe3e50df0)
F/roan_meme_make( 4423): java_vm_ext.cc:542] JNI DETECTED ERROR IN APPLICATION: JNI NewByteArray called with pending exception java.lang.RuntimeException: Methods marked with @UiThread must be executed on the main thread. Current thread: Thread-2
F/roan_meme_make( 4423): java_vm_ext.cc:542] at void io.flutter.embedding.engine.FlutterJNI.ensureRunningOnMainThread() (FlutterJNI.java:794)
F/roan_meme_make( 4423): java_vm_ext.cc:542] at void io.flutter.embedding.engine.FlutterJNI.dispatchPlatformMessage(java.lang.String, java.nio.ByteBuffer, int, int) (FlutterJNI.java:684)
F/roan_meme_make( 4423): java_vm_ext.cc:542] at void io.flutter.embedding.engine.dart.DartMessenger.send(java.lang.String, java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (DartMessenger.java:80)
F/roan_meme_make( 4423): java_vm_ext.cc:542] at void io.flutter.embedding.engine.dart.DartExecutor.send(java.lang.String, java.nio.ByteBuffer) (DartExecutor.java:174)
F/roan_meme_make( 4423): java_vm_ext.cc:542] at void io.flutter.view.FlutterNativeView.send(java.lang.String, java.nio.ByteBuffer) (FlutterNativeView.java:144)
F/roan_meme_make( 4423): java_vm_ext.cc:542] at void io.flutter.plugin.common.EventChannel$IncomingStreamRequestHandler$EventSinkImplementation.success(java.lang.Object) (EventChannel.java:226)
F/roan_meme_make( 4423): java_vm_ext.cc:542] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin.emitStatistics(com.arthenica.mobileffmpeg.Statistics) (FlutterFFmpegPlugin.java:277)
F/roan_meme_make( 4423): java_vm_ext.cc:542] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin$2.apply(com.arthenica.mobileffmpeg.Statistics) (FlutterFFmpegPlugin.java:185)
F/roan_meme_make( 4423): java_vm_ext.cc:542] at void com.arthenica.mobileffmpeg.Config.statistics(int, float, float, long, int, double, double) (Config.java:286)
F/roan_meme_make( 4423): java_vm_ext.cc:542]
F/roan_meme_make( 4423): java_vm_ext.cc:542] in call to NewByteArray
F/roan_meme_make( 4423): java_vm_ext.cc:542] "Thread-2" prio=10 tid=17 Runnable
F/roan_meme_make( 4423): java_vm_ext.cc:542] | group="main" sCount=0 dsCount=0 flags=0 obj=0x142c0000 self=0xc1f16600
F/roan_meme_make( 4423): java_vm_ext.cc:542] | sysTid=4461 nice=-10 cgrp=default sched=0/0 handle=0xc23bf970
F/roan_meme_make( 4423): java_vm_ext.cc:542] | state=R schedstat=( 37060581 8423288 35 ) utm=3 stm=0 core=0 HZ=100
F/roan_meme_make( 4423): java_vm_ext.cc:542] | stack=0xc22c4000-0xc22c6000 stackSize=1010KB
F/roan_meme_make( 4423): java_vm_ext.cc:542] | held mutexes= "mutator lock"(shared held)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #00 pc 004152f6 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits>&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+198)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #1 pc 0051048e /system/lib/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+382)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #2 pc 0050b743 /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+83)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #3 pc 0031a8b0 /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1088)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #4 pc 0031ad21 /system/lib/libart.so (art::JavaVMExt::JniAbortV(char const*, char const*, char*)+113)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #5 pc 000d60f7 /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::AbortF(char const*, ...)+71)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #6 pc 000d4a5e /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::CheckPossibleHeapValue(art::ScopedObjectAccess&, char, art::(anonymous namespace)::JniValueType)+1230)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #7 pc 000d3bdb /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::Check(art::ScopedObjectAccess&, bool, char const*, art::(anonymous namespace)::JniValueType*)+811)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #8 pc 000df8b7 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewPrimitiveArray(char const*, _JNIEnv*, int, art::Primitive::Type)+903)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #9 pc 000cb68b /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewByteArray(_JNIEnv*, int)+43)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #10 pc 0000b76c /data/app/com.marianoarga.groan_meme_maker-aMRyrIROS16Ku5EKv1CXnA==/lib/x86/libmobileffmpeg.so (callbackThreadFunction+572)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #11 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/roan_meme_make( 4423): java_vm_ext.cc:542] native: #12 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/roan_meme_make( 4423): java_vm_ext.cc:542] (no managed stack frames)
F/roan_meme_make( 4423): java_vm_ext.cc:542]
F/roan_meme_make( 4423): runtime.cc:558] Runtime aborting...
F/roan_meme_make( 4423): runtime.cc:558] Dumping all threads without appropriate locks held: thread list lock mutator lock
F/roan_meme_make( 4423): runtime.cc:558] All threads:
F/roan_meme_make( 4423): runtime.cc:558] DALVIK THREADS (18):
F/roan_meme_make( 4423): runtime.cc:558] "Thread-2" prio=10 tid=17 Runnable
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=0 dsCount=0 flags=0 obj=0x142c0000 self=0xc1f16600
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4461 nice=-10 cgrp=default sched=0/0 handle=0xc23bf970
F/roan_meme_make( 4423): runtime.cc:558] | state=R schedstat=( 48617860 11060607 68 ) utm=3 stm=1 core=0 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xc22c4000-0xc22c6000 stackSize=1010KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes= "abort lock" "mutator lock"(shared held)
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 004152f6 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits>&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+198)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0051048e /system/lib/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+382)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 0050b743 /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+83)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 0052e564 /system/lib/libart.so (art::DumpCheckpoint::Run(art::Thread*)+916)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 00526286 /system/lib/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+534)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 005254d4 /system/lib/libart.so (art::ThreadList::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool)+1316)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 004efdcc /system/lib/libart.so (art::AbortState::DumpAllThreads(std::__1::basic_ostream<char, std::__1::char_traits>&, art::Thread*) const+284)
F/roan_meme_make( 4423): runtime.cc:558] native: #7 pc 004dc52f /system/lib/libart.so (art::Runtime::Abort(char const*)+287)
F/roan_meme_make( 4423): runtime.cc:558] native: #8 pc 005cd833 /system/lib/libart.so (ZNSt3__110__function6__funcIPFvPKcENS_9allocatorIS5_EES4_EclEOS3+35)
F/roan_meme_make( 4423): runtime.cc:558] native: #9 pc 00007ccc /system/lib/libbase.so (android::base::LogMessage::~LogMessage()+828)
F/roan_meme_make( 4423): runtime.cc:558] native: #10 pc 0031ab5f /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1775)
F/roan_meme_make( 4423): runtime.cc:558] native: #11 pc 0031ad21 /system/lib/libart.so (art::JavaVMExt::JniAbortV(char const*, char const*, char*)+113)
F/roan_meme_make( 4423): runtime.cc:558] native: #12 pc 000d60f7 /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::AbortF(char const*, ...)+71)
F/roan_meme_make( 4423): runtime.cc:558] native: #13 pc 000d4a5e /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::CheckPossibleHeapValue(art::ScopedObjectAccess&, char, art::(anonymous namespace)::JniValueType)+1230)
F/roan_meme_make( 4423): runtime.cc:558] native: #14 pc 000d3bdb /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::Check(art::ScopedObjectAccess&, bool, char const*, art::(anonymous namespace)::JniValueType*)+811)
F/roan_meme_make( 4423): runtime.cc:558] native: #15 pc 000df8b7 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewPrimitiveArray(char const*, _JNIEnv*, int, art::Primitive::Type)+903)
F/roan_meme_make( 4423): runtime.cc:558] native: #16 pc 000cb68b /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewByteArray(_JNIEnv*, int)+43)
F/roan_meme_make( 4423): runtime.cc:558] native: #17 pc 0000b76c /data/app/com.marianoarga.groan_meme_maker-aMRyrIROS16Ku5EKv1CXnA==/lib/x86/libmobileffmpeg.so (callbackThreadFunction+572)
F/roan_meme_make( 4423): runtime.cc:558] native: #18 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/roan_meme_make( 4423): runtime.cc:558] native: #19 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/roan_meme_make( 4423): runtime.cc:558] (no managed stack frames)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "main" prio=10 tid=1 Native
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x73b83760 self=0xe7d74000
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4423 nice=-10 cgrp=default sched=0/0 handle=0xec93f494
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 364052935 331721763 1230 ) utm=29 stm=7 core=1 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xff291000-0xff293000 stackSize=8MB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 000d8a1f /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::CallMethodV(char const*, _JNIEnv*, _jobject*, _jclass*, _jmethodID*, char*, art::Primitive::Type, art::InvokeType)+735)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 000c3fd1 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::CallObjectMethod(_JNIEnv*, _jobject*, _jmethodID*, ...)+81)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 00002c72 /system/lib/libnativehelper.so (jniGetReferent+194)
F/roan_meme_make( 4423): runtime.cc:558] native: #7 pc 000b3ced /system/lib/libandroid_runtime.so (android::NativeDisplayEventReceiver::dispatchVsync(long long, int, unsigned int)+45)
F/roan_meme_make( 4423): runtime.cc:558] native: #8 pc 00046e72 /system/lib/libandroidfw.so (android::DisplayEventDispatcher::handleEvent(int, int, void*)+162)
F/roan_meme_make( 4423): runtime.cc:558] native: #9 pc 00013896 /system/lib/libutils.so (android::Looper::pollInner(int)+998)
F/roan_meme_make( 4423): runtime.cc:558] native: #10 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/roan_meme_make( 4423): runtime.cc:558] native: #11 pc 000e414b /system/lib/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long long, int)+59)
F/roan_meme_make( 4423): runtime.cc:558] at android.os.MessageQueue.nativePollOnce(Native method)
F/roan_meme_make( 4423): runtime.cc:558] at android.os.MessageQueue.next(MessageQueue.java:326)
F/roan_meme_make( 4423): runtime.cc:558] at android.os.Looper.loop(Looper.java:160)
F/roan_meme_make( 4423): runtime.cc:558] at android.app.ActivityThread.main(ActivityThread.java:6669)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.reflect.Method.invoke(Native method)
F/roan_meme_make( 4423): runtime.cc:558] at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
F/roan_meme_make( 4423): runtime.cc:558] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "Jit thread pool worker thread 0" prio=10 tid=2 Native
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x13fc0030 self=0xe1f08000
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4428 nice=9 cgrp=default sched=0/0 handle=0xe211a970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 46278598 149167421 180 ) utm=2 stm=2 core=0 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xe201c000-0xe201e000 stackSize=1022KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 005300c5 /system/lib/libart.so (art::ThreadPool::GetTask(art::Thread*)+261)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 0052f495 /system/lib/libart.so (art::ThreadPoolWorker::Run()+117)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 0052eebb /system/lib/libart.so (art::ThreadPoolWorker::Callback(void*)+139)
F/roan_meme_make( 4423): runtime.cc:558] native: #7 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/roan_meme_make( 4423): runtime.cc:558] native: #8 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/roan_meme_make( 4423): runtime.cc:558] (no managed stack frames)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "Signal Catcher" prio=10 tid=3 WaitingInMainSignalCatcherLoop
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x14000020 self=0xe7d3f000
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4430 nice=0 cgrp=default sched=0/0 handle=0xe1eff970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 165819 4924598 2 ) utm=0 stm=0 core=1 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xe1e04000-0xe1e06000 stackSize=1010KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_sigtimedwait+0xf7/0x1e3
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_rt_sigtimedwait+0x9e/0xec
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 00076861 /system/lib/libc.so (__rt_sigtimedwait+33)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 0002fcf9 /system/lib/libc.so (sigwait+73)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 004fb409 /system/lib/libart.so (art::SignalCatcher::WaitForSignal(art::Thread*, art::SignalSet&)+265)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 004f9b20 /system/lib/libart.so (art::SignalCatcher::Run(void*)+320)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/roan_meme_make( 4423): runtime.cc:558] (no managed stack frames)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "ReferenceQueueDaemon" prio=10 tid=4 Waiting
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c62a08 self=0xe7d41a00
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4433 nice=4 cgrp=default sched=0/0 handle=0xce405970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 75275 8017674 1 ) utm=0 stm=0 core=1 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xce302000-0xce304000 stackSize=1042KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 0040fd36 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+630)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 004310b2 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+82)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Object.wait(Native method)
F/roan_meme_make( 4423): runtime.cc:558] - waiting on <0x09167909> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:178)
F/roan_meme_make( 4423): runtime.cc:558] - locked <0x09167909> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Daemons$Daemon.run(Daemons.java:103)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "ADB-JDWP Connection Control Thread" prio=10 tid=5 WaitingInMainDebuggerLoop
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c62968 self=0xe7d79400
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4432 nice=0 cgrp=default sched=0/0 handle=0xce503970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 159446 8297973 1 ) utm=0 stm=0 core=1 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xce408000-0xce40a000 stackSize=1010KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: poll_schedule_timeout+0x41/0x5a
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_sys_poll+0x41d/0x4d6
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_ppoll+0xd5/0x172
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 000765c6 /system/lib/libc.so (__ppoll+38)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 0002d1da /system/lib/libc.so (poll+90)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 0004c19f /system/lib/libc.so (__poll_chk+47)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 0000670b /system/lib/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+955)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 00004a16 /system/lib/libadbconnection.so (adbconnection::CallbackFunction(void*)+1110)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/roan_meme_make( 4423): runtime.cc:558] native: #7 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/roan_meme_make( 4423): runtime.cc:558] (no managed stack frames)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "FinalizerDaemon" prio=10 tid=6 Waiting
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c62aa8 self=0xe7d74c00
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4434 nice=4 cgrp=default sched=0/0 handle=0xce2ff970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 141279 13963190 3 ) utm=0 stm=0 core=0 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xce1fc000-0xce1fe000 stackSize=1042KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 0040fd36 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+630)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Object.wait(Native method)
F/roan_meme_make( 4423): runtime.cc:558] - waiting on <0x0d68770e> (a java.lang.Object)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Object.wait(Object.java:422)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:188)
F/roan_meme_make( 4423): runtime.cc:558] - locked <0x0d68770e> (a java.lang.Object)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:209)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:232)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Daemons$Daemon.run(Daemons.java:103)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "FinalizerWatchdogDaemon" prio=10 tid=7 Waiting
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c62b48 self=0xe7d75e00
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4435 nice=4 cgrp=default sched=0/0 handle=0xce1f9970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 32102 13981527 1 ) utm=0 stm=0 core=0 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xce0f6000-0xce0f8000 stackSize=1042KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 0040fd36 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+630)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 004310b2 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+82)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Object.wait(Native method)
F/roan_meme_make( 4423): runtime.cc:558] - waiting on <0x0c95252f> (a java.lang.Daemons$FinalizerWatchdogDaemon)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:297)
F/roan_meme_make( 4423): runtime.cc:558] - locked <0x0c95252f> (a java.lang.Daemons$FinalizerWatchdogDaemon)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:277)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Daemons$Daemon.run(Daemons.java:103)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "HeapTaskDaemon" prio=10 tid=8 WaitingForTaskProcessor
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c62be8 self=0xe7d78200
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4436 nice=4 cgrp=default sched=0/0 handle=0xce0f3970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 144926 14523783 4 ) utm=0 stm=0 core=0 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xcdff0000-0xcdff2000 stackSize=1042KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 000ac054 /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+148)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 0023a762 /system/lib/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+322)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 0023b192 /system/lib/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+98)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 004246c7 /system/lib/libart.so (art::VMRuntime_runHeapTasks(_JNIEnv*, _jobject*)+55)
F/roan_meme_make( 4423): runtime.cc:558] at dalvik.system.VMRuntime.runHeapTasks(Native method)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:475)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Daemons$Daemon.run(Daemons.java:103)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "Binder:4423_1" prio=10 tid=9 Native
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x14040020 self=0xe067bc00
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4437 nice=0 cgrp=default sched=0/0 handle=0xcdeef970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 9379123 78405025 32 ) utm=0 stm=0 core=1 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xcddf4000-0xcddf6000 stackSize=1010KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: binder_thread_read+0x36c/0xda1
F/roan_meme_make( 4423): runtime.cc:558] kernel: binder_ioctl_write_read.constprop.43+0x15e/0x250
F/roan_meme_make( 4423): runtime.cc:558] kernel: binder_ioctl+0x195/0x4e5
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_ioctl+0x1cb/0xced
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0007649c /system/lib/libc.so (__ioctl+28)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 0002a89c /system/lib/libc.so (ioctl+60)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 00045247 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+391)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 0004545a /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+42)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 00045d58 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+72)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 00070f59 /system/lib/libbinder.so (android::PoolThread::threadLoop()+41)
F/roan_meme_make( 4423): runtime.cc:558] native: #7 pc 0000e616 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+326)
F/roan_meme_make( 4423): runtime.cc:558] native: #8 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/roan_meme_make( 4423): runtime.cc:558] native: #9 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/roan_meme_make( 4423): runtime.cc:558] native: #10 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/roan_meme_make( 4423): runtime.cc:558] native: #11 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/roan_meme_make( 4423): runtime.cc:558] (no managed stack frames)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "Binder:4423_2" prio=10 tid=10 Native
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x14080020 self=0xe1f0bc00
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4438 nice=0 cgrp=default sched=0/0 handle=0xcddf1970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 1636191 16367116 2 ) utm=0 stm=0 core=1 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xcdcf6000-0xcdcf8000 stackSize=1010KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: binder_thread_read+0x36c/0xda1
F/roan_meme_make( 4423): runtime.cc:558] kernel: binder_ioctl_write_read.constprop.43+0x15e/0x250
F/roan_meme_make( 4423): runtime.cc:558] kernel: binder_ioctl+0x195/0x4e5
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_ioctl+0x1cb/0xced
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: SyS_epoll_wait+0x96/0xb4
F/roan_meme_make( 4423): runtime.cc:558] kernel: SyS_epoll_pwait+0x93/0x114
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0007621b /system/lib/libc.so (__epoll_pwait+43)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 00031e8d /system/lib/libc.so (epoll_wait+45)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 00013567 /system/lib/libutils.so (android::Looper::pollInner(int)+183)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 000c4535 /system/lib/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+293)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 0000e616 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+326)
F/roan_meme_make( 4423): runtime.cc:558] native: #7 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/roan_meme_make( 4423): runtime.cc:558] native: #8 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/roan_meme_make( 4423): runtime.cc:558] native: #9 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/roan_meme_make( 4423): runtime.cc:558] (no managed stack frames)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "hwuiTask1" prio=10 tid=14 Native
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x14280020 self=0xc9e79e00
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4453 nice=-2 cgrp=default sched=0/0 handle=0xc40bf970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 2235571 4600086 25 ) utm=0 stm=0 core=0 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xc3fc4000-0xc3fc6000 stackSize=1010KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 00023555 /system/lib/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+133)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 0008e3be /system/lib/libc.so (pthread_cond_wait+62)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 0050218f /system/lib/libhwui.so (android::uirenderer::TaskManager::WorkerThread::threadLoop()+383)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 0000e5ae /system/lib/libutils.so (android::Thread::_threadLoop(void*)+222)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/roan_meme_make( 4423): runtime.cc:558] native: #7 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/roan_meme_make( 4423): runtime.cc:558] native: #8 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/roan_meme_make( 4423): runtime.cc:558] native: #9 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/roan_meme_make( 4423): runtime.cc:558] (no managed stack frames)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "queued-work-looper" prio=10 tid=16 Native
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x141bf200 self=0xcd4ffa00
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4462 nice=-2 cgrp=default sched=0/0 handle=0xbe49d970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 3623003 6837010 28 ) utm=0 stm=0 core=1 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xbe39a000-0xbe39c000 stackSize=1042KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: ep_poll+0x28e/0x33f
F/roan_meme_make( 4423): runtime.cc:558] kernel: SyS_epoll_wait+0x96/0xb4
F/roan_meme_make( 4423): runtime.cc:558] kernel: SyS_epoll_pwait+0x93/0x114
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0007621b /system/lib/libc.so (__epoll_pwait+43)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 00031e8d /system/lib/libc.so (epoll_wait+45)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 00013567 /system/lib/libutils.so (android::Looper::pollInner(int)+183)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 000e414b /system/lib/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long long, int)+59)
F/roan_meme_make( 4423): runtime.cc:558] at android.os.MessageQueue.nativePollOnce(Native method)
F/roan_meme_make( 4423): runtime.cc:558] at android.os.MessageQueue.next(MessageQueue.java:326)
F/roan_meme_make( 4423): runtime.cc:558] at android.os.Looper.loop(Looper.java:160)
F/roan_meme_make( 4423): runtime.cc:558] at android.os.HandlerThread.run(HandlerThread.java:65)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] "AsyncTask #2" prio=10 tid=18 Native
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x14356548 self=0xc1f13000
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4466 nice=10 cgrp=default sched=0/0 handle=0xc607f970
F/roan_meme_make( 4423): runtime.cc:558] | state=S schedstat=( 66721875 71876668 209 ) utm=4 stm=2 core=1 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xc5f7c000-0xc5f7e000 stackSize=1042KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes=
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/roan_meme_make( 4423): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/roan_meme_make( 4423): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/roan_meme_make( 4423): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/roan_meme_make( 4423): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 00023555 /system/lib/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+133)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 0008e3be /system/lib/libc.so (pthread_cond_wait+62)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 00366266 /data/app/com.marianoarga.groan_meme_maker-aMRyrIROS16Ku5EKv1CXnA==/lib/x86/libavcodec.so (???)
F/roan_meme_make( 4423): runtime.cc:558] at com.arthenica.mobileffmpeg.Config.nativeExecute(Native method)
F/roan_meme_make( 4423): runtime.cc:558] at com.arthenica.mobileffmpeg.Config.systemExecute(Config.java:471)
F/roan_meme_make( 4423): runtime.cc:558] at com.arthenica.mobileffmpeg.FFmpeg.getMediaInformation(FFmpeg.java:176)
F/roan_meme_make( 4423): runtime.cc:558] at com.arthenica.flutter.ffmpeg.FlutterFFmpegGetMediaInformationAsyncTask.doInBackground(FlutterFFmpegGetMediaInformationAsyncTask.java:58)
F/roan_meme_make( 4423): runtime.cc:558] at com.arthenica.flutter.ffmpeg.FlutterFFmpegGetMediaInformationAsyncTask.doInBackground(FlutterFFmpegGetMediaInformationAsyncTask.java:36)
F/roan_meme_make( 4423): runtime.cc:558] at android.os.AsyncTask$2.call(AsyncTask.java:333)
F/roan_meme_make( 4423): runtime.cc:558] at java.util.concurrent.FutureTask.run(FutureTask.java:266)
F/roan_meme_make( 4423): runtime.cc:558] at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:245)
F/roan_meme_make( 4423): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
F/roan_meme_make( 4423): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/roan_meme_make( 4423): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:558] Aborting thread:
F/roan_meme_make( 4423): runtime.cc:558] "Thread-2" prio=10 tid=17 Native
F/roan_meme_make( 4423): runtime.cc:558] | group="" sCount=0 dsCount=0 flags=0 obj=0x142c0000 self=0xc1f16600
F/roan_meme_make( 4423): runtime.cc:558] | sysTid=4461 nice=-10 cgrp=default sched=0/0 handle=0xc23bf970
F/roan_meme_make( 4423): runtime.cc:558] | state=R schedstat=( 91334755 40006669 180 ) utm=7 stm=2 core=0 HZ=100
F/roan_meme_make( 4423): runtime.cc:558] | stack=0xc22c4000-0xc22c6000 stackSize=1010KB
F/roan_meme_make( 4423): runtime.cc:558] | held mutexes= "abort lock"
F/roan_meme_make( 4423): runtime.cc:558] native: #00 pc 004152f6 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits>&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+198)
F/roan_meme_make( 4423): runtime.cc:558] native: #1 pc 0051048e /system/lib/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+382)
F/roan_meme_make( 4423): runtime.cc:558] native: #2 pc 0050b743 /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+83)
F/roan_meme_make( 4423): runtime.cc:558] native: #3 pc 004efe1b /system/lib/libart.so (art::AbortState::DumpThread(std::__1::basic_ostream<char, std::__1::char_traits>&, art::Thread*) const+59)
F/roan_meme_make( 4423): runtime.cc:558] native: #4 pc 004dc5a9 /system/lib/libart.so (art::Runtime::Abort(char const*)+409)
F/roan_meme_make( 4423): runtime.cc:558] native: #5 pc 005cd833 /system/lib/libart.so (ZNSt3__110__function6__funcIPFvPKcENS_9allocatorIS5_EES4_EclEOS3+35)
F/roan_meme_make( 4423): runtime.cc:558] native: #6 pc 00007ccc /system/lib/libbase.so (android::base::LogMessage::~LogMessage()+828)
F/roan_meme_make( 4423): runtime.cc:558] native: #7 pc 0031ab5f /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1775)
F/roan_meme_make( 4423): runtime.cc:558] native: #8 pc 0031ad21 /system/lib/libart.so (art::JavaVMExt::JniAbortV(char const*, char const*, char*)+113)
F/roan_meme_make( 4423): runtime.cc:558] native: #9 pc 000d60f7 /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::AbortF(char const*, ...)+71)
F/roan_meme_make( 4423): runtime.cc:558] native: #10 pc 000d4a5e /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::CheckPossibleHeapValue(art::ScopedObjectAccess&, char, art::(anonymous namespace)::JniValueType)+1230)
F/roan_meme_make( 4423): runtime.cc:558] native: #11 pc 000d3bdb /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::Check(art::ScopedObjectAccess&, bool, char const*, art::(anonymous namespace)::JniValueType*)+811)
F/roan_meme_make( 4423): runtime.cc:558] native: #12 pc 000df8b7 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewPrimitiveArray(char const*, _JNIEnv*, int, art::Primitive::Type)+903)
F/roan_meme_make( 4423): runtime.cc:558] native: #13 pc 000cb68b /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewByteArray(_JNIEnv*, int)+43)
F/roan_meme_make( 4423): runtime.cc:558] native: #14 pc 0000b76c /data/app/com.marianoarga.groan_meme_maker-aMRyrIROS16Ku5EKv1CXnA==/lib/x86/libmobileffmpeg.so (callbackThreadFunction+572)
F/roan_meme_make( 4423): runtime.cc:558] native: #15 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/roan_meme_make( 4423): runtime.cc:558] native: #16 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/roan_meme_make( 4423): runtime.cc:558] (no managed stack frames)
F/roan_meme_make( 4423): runtime.cc:558] Pending exception java.lang.RuntimeException: Methods marked with @UiThread must be executed on the main thread. Current thread: Thread-2
F/roan_meme_make( 4423): runtime.cc:558] at void io.flutter.embedding.engine.FlutterJNI.ensureRunningOnMainThread() (FlutterJNI.java:794)
F/roan_meme_make( 4423): runtime.cc:558] at void io.flutter.embedding.engine.FlutterJNI.dispatchPlatformMessage(java.lang.String, java.nio.ByteBuffer, int, int) (FlutterJNI.java:684)
F/roan_meme_make( 4423): runtime.cc:558] at void io.flutter.embedding.engine.dart.DartMessenger.send(java.lang.String, java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (DartMessenger.java:80)
F/roan_meme_make( 4423): runtime.cc:558] at void io.flutter.embedding.engine.dart.DartExecutor.send(java.lang.String, java.nio.ByteBuffer) (DartExecutor.java:174)
F/roan_meme_make( 4423): runtime.cc:558] at void io.flutter.view.FlutterNativeView.send(java.lang.String, java.nio.ByteBuffer) (FlutterNativeView.java:144)
F/roan_meme_make( 4423): runtime.cc:558] at void io.flutter.plugin.common.EventChannel$IncomingStreamRequestHandler$EventSinkImplementation.success(java.lang.Object) (EventChannel.java:226)
F/roan_meme_make( 4423): runtime.cc:558] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin.emitStatistics(com.arthenica.mobileffmpeg.Statistics) (FlutterFFmpegPlugin.java:277)
F/roan_meme_make( 4423): runtime.cc:558] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin$2.apply(com.arthenica.mobileffmpeg.Statistics) (FlutterFFmpegPlugin.java:185)
F/roan_meme_make( 4423): runtime.cc:558] at void com.arthenica.mobileffmpeg.Config.statistics(int, float, float, long, int, double, double) (Config.java:286)
F/roan_meme_make( 4423): runtime.cc:558]
F/roan_meme_make( 4423): runtime.cc:566] JNI DETECTED ERROR IN APPLICATION: JNI NewByteArray called with pending exception java.lang.RuntimeException: Methods marked with @UiThread must be executed on the main thread. Current thread: Thread-2
F/roan_meme_make( 4423): runtime.cc:566] at void io.flutter.embedding.engine.FlutterJNI.ensureRunningOnMainThread() (FlutterJNI.java:794)
F/roan_meme_make( 4423): runtime.cc:566] at void io.flutter.embedding.engine.FlutterJNI.dispatchPlatformMessage(java.lang.String, java.nio.ByteBuffer, int, int) (FlutterJNI.java:684)
F/roan_meme_make( 4423): runtime.cc:566] at void io.flutter.embedding.engine.dart.DartMessenger.send(java.lang.String, java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (DartMessenger.java:80)
F/roan_meme_make( 4423): runtime.cc:566] at void io.flutter.embedding.engine.dart.DartExecutor.send(java.lang.String, java.nio.ByteBuffer) (DartExecutor.java:174)
F/roan_meme_make( 4423): runtime.cc:566] at void io.flutter.view.FlutterNativeView.send(java.lang.String, java.nio.ByteBuffer) (FlutterNativeView.java:144)
F/roan_meme_make( 4423): runtime.cc:566] at void io.flutter.plugin.common.EventChannel$IncomingStreamRequestHandler$EventSinkImplementation.success(java.lang.Object) (EventChannel.java:226)
F/roan_meme_make( 4423): runtime.cc:566] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin.emitStatistics(com.arthenica.mobileffmpeg.Statistics) (FlutterFFmpegPlugin.java:277)
F/roan_meme_make( 4423): runtime.cc:566] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin$2.apply(com.arthenica.mobileffmpeg.Statistics) (FlutterFFmpegPlugin.java:185)
F/roan_meme_make( 4423): runtime.cc:566] at void com.arthenica.mobileffmpeg.Config.statistics(int, float, float, long, int, double, double) (Config.java:286)
F/roan_meme_make( 4423): runtime.cc:566]
F/roan_meme_make( 4423): runtime.cc:566] in call to NewByteArray
F/roan_meme_make( 4423): runtime.cc:566] "Thread-2" prio=10 tid=17 Runnable
F/roan_meme_make( 4423): runtime.cc:566] | group="main" sCount=0 dsCount=0 flags=0 obj=0x142c0000 self=0xc1f16600
F/roan_meme_make( 4423): runtime.cc:566] | sysTid=4461 nice=-10 cgrp=default sched=0/0 handle=0xc23bf970
F/roan_meme_make( 4423): runtime.cc:566] | state=R schedstat=( 37060581 8423288 35 ) utm=3 stm=0 core=0 HZ=100
F/roan_meme_make( 4423): runtime.cc:566] | stack=0xc22c4000-0xc22c6000 stackSize=1010KB
F/roan_meme_make( 4423): runtime.cc:566] | held mutexes= "mutator lock"(shared held)
F/roan_meme_make( 4423): runtime.cc:566] native: #00 pc 004152f6 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits>&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+198)
F/roan_meme_make( 4423): runtime.cc:566] native: #1 pc 0051048e /system/lib/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+382)
F/roan_meme_make( 4423): runtime.cc:566] native: #2 pc 0050b743 /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+83)
F/roan_meme_make( 4423): runtime.cc:566] native: #3 pc 0031a8b0 /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1088)
F/roan_meme_make( 4423): runtime.cc:566] native: #4 pc 0031ad21 /system/lib/libart.so (art::JavaVMExt::JniAbortV(char const*, char const*, char*)+113)
F/roan_meme_make( 4423): runtime.cc:566] native: #5 pc 000d60f7 /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::AbortF(char const*, ...)+71)
F/roan_meme_make( 4423): runtime.cc:566] native: #6 pc 000d4a5e /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::CheckPossibleHeapValue(art::ScopedObjectAccess&, char, art::(anonymous namespace)::JniValueType)+1230)
F/roan_meme_make( 4423): runtime.cc:566] native: #7 pc 000d3bdb /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::Check(art::ScopedObjectAccess&, bool, char const*, art::(anonymous namespace)::JniValueType*)+811)
F/roan_meme_make( 4423): runtime.cc:566] native: #8 pc 000df8b7 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewPrimitiveArray(char const*, _JNIEnv*, int, art::Primitive::Type)+903)
F/roan_meme_make( 4423): runtime.cc:566] native: #9 pc 000cb68b /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewByteArray(_JNIEnv*, int)+43)
F/roan_meme_make( 4423): runtime.cc:566] native: #10 pc 0000b76c /data/app/com.marianoarga.groan_meme_maker-aMRyrIROS16Ku5EKv1CXnA==/lib/x86/libmobileffmpeg.so (callbackThreadFunction+572)
F/roan_meme_make( 4423): runtime.cc:566] native: #11 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/roan_meme_make( 4423): runtime.cc:566] native: #12 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/roan_meme_make( 4423): runtime.cc:566] (no managed stack frames)
F/roan_meme_make( 4423): runtime.cc:566]
F/libc ( 4423): Fatal signal 6 (SIGABRT), code -6 (SI_TKILL) in tid 4461 (Thread-2), pid 4423 (roan_meme_maker)


Build fingerprint: 'google/sdk_gphone_x86/generic_x86:9/PSR1.180720.075/5124027:user/release-keys'
Revision: '0'
ABI: 'x86'
pid: 4423, tid: 4461, name: Thread-2 >>> com.marianoarga.groan_meme_maker <<<
signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
Abort message: 'java_vm_ext.cc:542] JNI DETECTED ERROR IN APPLICATION: JNI NewByteArray called with pending exception java.lang.RuntimeException: Methods marked with @UiThread must be executed on the main thread. Current thread: Thread-2'
eax 00000000 ebx 00001147 ecx 0000116d edx 00000006
edi 00001147 esi 00000236
ebp 00000e51 esp c23bf3b8 eip ec7f5b39
backtrace:
#00 pc 00000b39 [vdso:ec7f5000] (__kernel_vsyscall+9)
#1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
#2 pc 00022ed3 /system/lib/libc.so (abort+115)
#3 pc 004dc8a6 /system/lib/libart.so (art::Runtime::Abort(char const*)+1174)
#4 pc 005cd833 /system/lib/libart.so (ZNSt3__110__function6__funcIPFvPKcENS_9allocatorIS5_EES4_EclEOS3+35)
#5 pc 00007ccc /system/lib/libbase.so (android::base::LogMessage::~LogMessage()+828)
#6 pc 0031ab5f /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1775)
#7 pc 0031ad21 /system/lib/libart.so (art::JavaVMExt::JniAbortV(char const*, char const*, char*)+113)
#8 pc 000d60f7 /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::AbortF(char const*, ...)+71)
#9 pc 000d4a5e /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::CheckPossibleHeapValue(art::ScopedObjectAccess&, char, art::(anonymous namespace)::JniValueType)+1230)
#10 pc 000d3bdb /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::Check(art::ScopedObjectAccess&, bool, char const*, art::(anonymous namespace)::JniValueType*)+811)
#11 pc 000df8b7 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewPrimitiveArray(char const*, _JNIEnv*, int, art::Primitive::Type)+903)
#12 pc 000cb68b /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewByteArray(_JNIEnv*, int)+43)
#13 pc 0000b76c /data/app/com.marianoarga.groan_meme_maker-aMRyrIROS16Ku5EKv1CXnA==/lib/x86/libmobileffmpeg.so (callbackThreadFunction+572)
#14 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
#15 pc 0002485b /system/lib/libc.so (__start_thread+75)
Application finished.

Environment
Running flutter doctor...
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel master, v1.7.12-pre.42, on Linux, locale en_US.UTF-8)
[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
[✓] Chrome - develop for the web
[✓] Linux toolchain - develop for Linux desktop
[✓] Android Studio (version 3.4)
[✓] Connected device (3 available)

Other
Add any other context about the problem here.

CocoaPods could not find compatible versions for pod "flutter_ffmpeg"

[!] CocoaPods could not find compatible versions for pod "flutter_ffmpeg":
In Podfile:
flutter_ffmpeg (from .symlinks/plugins/flutter_ffmpeg/ios)

Specs satisfying the flutter_ffmpeg (from .symlinks/plugins/flutter_ffmpeg/ios) dependency were found, but they required a higher minimum deployment target.

Xode10.1

Package override doesn't get picked up

Description
Overriding the package on the build.gradle file doesn't get picked up and fails to build with minSdk errors.

Expected behavior
I'm able to place

ext {
    flutterFFmpegPackage  = "min-gpl-lts"
}

on android/build.gradle and have it build for a min sdk of 21

Current behavior
The build fails with error

Note: /Users/lifenautjoe/.pub-cache/hosted/pub.dartlang.org/connectivity-0.4.4/android/src/main/java/io/flutter/plugins/connectivity/ConnectivityPlugin.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
/Users/lifenautjoe/Documents/code/okuna/okuna-app/android/app/src/main/AndroidManifest.xml Error:
	uses-sdk:minSdkVersion 21 cannot be smaller than version 24 declared in library [:flutter_ffmpeg] /Users/lifenautjoe/Documents/code/okuna/okuna-app/build/flutter_ffmpeg/intermediates/library_manifest/debug/AndroidManifest.xml as the library might be using APIs not available in 21
	Suggestion: use a compatible library with a minSdk of at most 21,
		or increase this project's minSdk version to at least 24,
		or use tools:overrideLibrary="com.arthenica.flutter.ffmpeg" to force usage (may lead to runtime failures)

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:processDevelopmentDebugManifest'.
> Manifest merger failed : uses-sdk:minSdkVersion 21 cannot be smaller than version 24 declared in library [:flutter_ffmpeg] /Users/lifenautjoe/Documents/code/okuna/okuna-app/build/flutter_ffmpeg/intermediates/library_manifest/debug/AndroidManifest.xml as the library might be using APIs not available in 21
  	Suggestion: use a compatible library with a minSdk of at most 21,
  		or increase this project's minSdk version to at least 24,
  		or use tools:overrideLibrary="com.arthenica.flutter.ffmpeg" to force usage (may lead to runtime failures)

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 24s
Finished with error: Gradle task assembleDevelopmentDebug failed with exit code 1

Environment

[✓] Flutter (Channel stable, v1.7.8+hotfix.4, on Mac OS X 10.14.6 18G84, locale
    en-NL)
    • Flutter version 1.7.8+hotfix.4 at
      /Users/lifenautjoe/Documents/code/libraries/flutter
    • Framework revision 20e59316b8 (8 weeks ago), 2019-07-18 20:04:33 -0700
    • Engine revision fee001c93f
    • Dart version 2.4.0


[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
    • Android SDK at /Users/lifenautjoe/Library/Android/sdk
    • Android NDK location not configured (optional; useful for native profiling
      support)
    • Platform android-29, build-tools 28.0.3
    • Java binary at: /Applications/Android
      Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 10.2)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 10.2, Build version 10E125
    • CocoaPods version 1.7.5

[✓] iOS tools - develop for iOS devices
    • ios-deploy 1.9.4

[✓] Android Studio (version 3.3)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin version 33.4.1
    • Dart plugin version 182.5215
    • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01)

[✓] IntelliJ IDEA Ultimate Edition (version 2018.3.5)
    • IntelliJ at /Applications/IntelliJ IDEA.app
    • Flutter plugin version 33.3.2
    • Dart plugin version 183.5912.23

[✓] Connected device (1 available)
    • Android SDK built for x86 • emulator-5554 • android-x86 • Android 9 (API 28)
      (emulator)

Other
The package was installed using pubspec as

  flutter_ffmpeg: ^0.2.7

From the Readme, I don't see how these might collide but still.

Flutter-FFmpeg: Build Fail in new app after adding flutter_ffmpeg with exit code 1

So, I just created a new app and only dependency, I added is flutter_ffmpeg: ^0.2.7.
But when I tried to run debug build got this error:

Launching lib\main.dart on RMX1801 in debug mode...

FAILURE: Build failed with an exception.

* What went wrong:
Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
> Could not download mobile-ffmpeg-https.aar (com.arthenica:mobile-ffmpeg-https:4.2.2)
   > Could not get resource 'https://jcenter.bintray.com/com/arthenica/mobile-ffmpeg-https/4.2.2/mobile-ffmpeg-https-4.2.2.aar'.
      > Connection reset

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 5m 32s
Gradle task assembleDebug failed with exit code 1
Exited (sigterm)


I haven't written even a single line of code, it's just default incrementation app comes with every flutter project. I didn't even imported the package yet!

Min Sdk Version has been changed to 24 still getting the same error.

Overwritten app icon (Android)

TL;DR; one of the underlying libraries seems to be overwriting the launcher icon

To reproduce:

run flutter create ffmpeg_test
in build.gradle change minSdkVersion to 21
in android/app/src/main/AndroidManifest.xml:

  • add xmlns:tools="http://schemas.android.com/tools" to the <manifest> tag
  • add tools:replace="android:icon,android:label" to the <application> tag

run flutter run -d and (or whatever android device/emulator you'd like)

Expected result:

The app should install and the launcher should be the default flutter icon

Actual result:

The app installs and the launcher is the colorful version of this project's icon (I think it might be from https://github.com/tanersener/mobile-ffmpeg).

Notes:

  1. Thanks for this plugin!
  2. I haven't really done much android development. I did some reading on merging manifests, and I think I got it right, but there's a strong chance I don't really understand how it works. I've pasted the merged_manifest below, from /build/app/intermediates/merged_manifests/debug/processDebugManifest/merged/AndroidManifest.xml.
    I also looked at both #4 and #3.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.ffmpeg_test"
    android:versionCode="1"
    android:versionName="1.0.0" >

    <uses-sdk
        android:minSdkVersion="21"
        android:targetSdkVersion="28" />
    <!--
         Flutter needs it to communicate with the running application
         to allow setting breakpoints, to provide hot reload, etc.
    -->
    <uses-permission android:name="android.permission.INTERNET" />
    <!--
     io.flutter.app.FlutterApplication is an android.app.Application that
         calls FlutterMain.startInitialization(this); in its onCreate method.
         In most cases you can leave this as-is, but you if you want to provide
         additional functionality it is fine to subclass or reimplement
         FlutterApplication and put your custom class here.
    -->
    <application
        android:name="io.flutter.app.FlutterApplication"
        android:allowBackup="true"
        android:debuggable="true"
        android:icon="@mipmap/ic_launcher"
        android:label="ffmpeg_test"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.ffmpeg_test.MainActivity"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
            android:hardwareAccelerated="true"
            android:launchMode="singleTop"
            android:theme="@style/LaunchTheme"
            android:windowSoftInputMode="adjustResize" >

            <!--
                 This keeps the window background of the activity showing
                 until Flutter renders its first frame. It can be removed if
                 there is no splash screen (such as the default splash screen
                 defined in @style/LaunchTheme).
            -->
            <meta-data
                android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
                android:value="true" />

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

Again, really appreciate the plugin!

Package dependency flutter_ffmpeg is a git dependency, this not allowed in published packages.

Description
I'm building a package that requires the audio_lts package:

dependencies:
  flutter:
    sdk: flutter
  flutter_ffmpeg:
    git:
      url: git://github.com/tanersener/flutter-ffmpeg.git
      ref: v0.2.6
      path: packages/flutter_ffmpeg_audio_lts

But when I try to publish it, it fails saying: Package dependency flutter_ffmpeg is a git dependency, this not allowed in published packages.

Expected behavior
Custom flutter package gets published when depending on a specific package

Current behavior
Publishing package using 'flutter pub' failed because you can't depend on git source.

Screenshots
image

Environment

$ flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, v1.7.8+hotfix.3, on Linux, locale en_CA.UTF-8)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.1)
[✓] Android Studio (version 3.4)
[✓] Connected device (2 available)

• No issues found!

Other
Just trying to require the audio_lts and not the main package.

Edit: as expected, if i require the main package, my build fails because of the sdk version mismatch:
Manifest merger failed : uses-sdk:minSdkVersion 16 cannot be smaller than version 24 declared in library [:flutter_ffmpeg]

Use lts version on from minsdk 19

Description
I have a project that supports minsdk 19 and would like to use this library. Is there a reason why minsdk for LTS is 21? Can I build it for minsdk 19 and how?

If you turn off logs, executeWithArgs never completes

So basically if I turn off logs before I run executeWithArguments it never completes (not as expected). But if I leave the logs on, the operation completes in about 12 seconds (as expected).

    final arguments = <String>[
      /// Input
      "-i", file.path,

      /// Start time
      "-ss", start.toString(),

      /// Duration
      "-t", length.toString(),

      /// 30 fps, resize, crop
      "-vf", "fps=fps=30,scale=-2:1080,crop=608:1080",

      /// Video bitrate
      "-b:v", "1200k",

      /// Audio bitrate
      "-b:a", "96k",

      /// Output path
      outputFile.path,
    ];

    /// Encode
    // await _ffmpeg.disableLogs();
    final result = await _ffmpeg.executeWithArguments(arguments);
    // await _ffmpeg.enableLogs();

Pod install issue

Error output from CocoaPods:

[!] Automatically assigning platform ios with version 9.3 on target Runner because no platform was specified. Please specify a platform for this target in your Podfile. See https://guides.cocoapods.org/syntax/podfile.html#platform.

Error running pod install
Error launching application on iPhone XS.

Launcher icon Urgent

Attribute application@icon value=(@mipmap/p) from AndroidManifest.xml:32:9-33
is also present at [com.arthenica:mobile-ffmpeg-https:4.2.LTS] AndroidManifest.xml:13:9-43 value=(@mipmap/ic_launcher).
Suggestion: add 'tools:replace="android:icon"' to element at AndroidManifest.xml:30:5-69:19 to override.

I have put android: replace icon, theme,label in manifest but it didn't remove the error

Crashing on strart of execution

V/DartMessenger( 7550): Sending message with callback over channel 'flutter_ffmpeg_event'
D/skia ( 7550): Shader compilation error
D/skia ( 7550): ------------------------
D/skia ( 7550): Errors:
D/skia ( 7550):
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
F/shmanya.photol( 7550): java_vm_ext.cc:542] JNI DETECTED ERROR IN APPLICATION: JNI NewByteArray called with pending exception java.lang.RuntimeException: Methods marked with @UiThread must be executed on the main thread. Current thread: Thread-7
F/shmanya.photol( 7550): java_vm_ext.cc:542] at void io.flutter.embedding.engine.FlutterJNI.ensureRunningOnMainThread() (FlutterJNI.java:734)
F/shmanya.photol( 7550): java_vm_ext.cc:542] at void io.flutter.embedding.engine.FlutterJNI.dispatchPlatformMessage(java.lang.String, java.nio.ByteBuffer, int, int) (FlutterJNI.java:626)
F/shmanya.photol( 7550): java_vm_ext.cc:542] at void io.flutter.embedding.engine.dart.DartMessenger.send(java.lang.String, java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (DartMessenger.java:80)
F/shmanya.photol( 7550): java_vm_ext.cc:542] at void io.flutter.embedding.engine.dart.DartExecutor.send(java.lang.String, java.nio.ByteBuffer) (DartExecutor.java:172)
F/shmanya.photol( 7550): java_vm_ext.cc:542] at void io.flutter.view.FlutterNativeView.send(java.lang.String, java.nio.ByteBuffer) (FlutterNativeView.java:144)
F/shmanya.photol( 7550): java_vm_ext.cc:542] at void io.flutter.plugin.common.EventChannel$IncomingStreamRequestHandler$EventSinkImplementation.success(java.lang.Object) (EventChannel.java:226)
F/shmanya.photol( 7550): java_vm_ext.cc:542] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin.emitLogMessage(com.arthenica.mobileffmpeg.LogMessage) (FlutterFFmpegPlugin.java:271)
F/shmanya.photol( 7550): java_vm_ext.cc:542] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin$1.apply(com.arthenica.mobileffmpeg.LogMessage) (FlutterFFmpegPlugin.java:171)
F/shmanya.photol( 7550): java_vm_ext.cc:542] at void com.arthenica.mobileffmpeg.Config.log(int, byte[]) (Config.java:224)
F/shmanya.photol( 7550): java_vm_ext.cc:542]
F/shmanya.photol( 7550): java_vm_ext.cc:542] in call to NewByteArray
F/shmanya.photol( 7550): java_vm_ext.cc:542] "Thread-7" prio=10 tid=44 Runnable
F/shmanya.photol( 7550): java_vm_ext.cc:542] | group="main" sCount=0 dsCount=0 flags=0 obj=0x12c40000 self=0xcb0a3c00
F/shmanya.photol( 7550): java_vm_ext.cc:542] | sysTid=8190 nice=-10 cgrp=default sched=0/0 handle=0xb2085970
F/shmanya.photol( 7550): java_vm_ext.cc:542] | state=R schedstat=( 1351140 625245 3 ) utm=0 stm=0 core=2 HZ=100
F/shmanya.photol( 7550): java_vm_ext.cc:542] | stack=0xb1f8a000-0xb1f8c000 stackSize=1010KB
F/shmanya.photol( 7550): java_vm_ext.cc:542] | held mutexes= "mutator lock"(shared held)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #00 pc 004152f6 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits>&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+198)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #1 pc 0051048e /system/lib/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+382)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #2 pc 0050b743 /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+83)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #3 pc 0031a8b0 /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1088)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #4 pc 0031ad21 /system/lib/libart.so (art::JavaVMExt::JniAbortV(char const*, char const*, char*)+113)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #5 pc 000d60f7 /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::AbortF(char const*, ...)+71)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #6 pc 000d4a5e /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::CheckPossibleHeapValue(art::ScopedObjectAccess&, char, art::(anonymous namespace)::JniValueType)+1230)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #7 pc 000d3bdb /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::Check(art::ScopedObjectAccess&, bool, char const*, art::(anonymous namespace)::JniValueType*)+811)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #8 pc 000df8b7 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewPrimitiveArray(char const*, _JNIEnv*, int, art::Primitive::Type)+903)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #9 pc 000cb68b /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewByteArray(_JNIEnv*, int)+43)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #10 pc 0000b659 /data/app/photole.offical.lavishmanya.photole-Y7oGTzQz0T4HVlpd5vXIJA==/lib/x86/libmobileffmpeg.so (callbackThreadFunction+585)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #11 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): java_vm_ext.cc:542] native: #12 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): java_vm_ext.cc:542] (no managed stack frames)
F/shmanya.photol( 7550): java_vm_ext.cc:542]
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
V/DartMessenger( 7550): Deferring to registered handler to process message.
F/shmanya.photol( 7550): runtime.cc:558] Runtime aborting...
F/shmanya.photol( 7550): runtime.cc:558] Dumping all threads without appropriate locks held: thread list lock mutator lock
F/shmanya.photol( 7550): runtime.cc:558] All threads:
F/shmanya.photol( 7550): runtime.cc:558] DALVIK THREADS (45):
F/shmanya.photol( 7550): runtime.cc:558] "Thread-7" prio=10 tid=44 Runnable
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=0 dsCount=0 flags=0 obj=0x12c40000 self=0xcb0a3c00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=8190 nice=-10 cgrp=default sched=0/0 handle=0xb2085970
F/shmanya.photol( 7550): runtime.cc:558] | state=R schedstat=( 40524656 3829689 34 ) utm=1 stm=3 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xb1f8a000-0xb1f8c000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes= "abort lock" "mutator lock"(shared held)
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 004152f6 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits>&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+198)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0051048e /system/lib/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+382)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 0050b743 /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+83)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0052e564 /system/lib/libart.so (art::DumpCheckpoint::Run(art::Thread*)+916)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 00526286 /system/lib/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+534)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 005254d4 /system/lib/libart.so (art::ThreadList::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool)+1316)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 004efdcc /system/lib/libart.so (art::AbortState::DumpAllThreads(std::__1::basic_ostream<char, std::__1::char_traits>&, art::Thread*) const+284)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 004dc52f /system/lib/libart.so (art::Runtime::Abort(char const*)+287)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 005cd833 /system/lib/libart.so (ZNSt3__110__function6__funcIPFvPKcENS_9allocatorIS5_EES4_EclEOS3+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 00007ccc /system/lib/libbase.so (android::base::LogMessage::~LogMessage()+828)
F/shmanya.photol( 7550): runtime.cc:558] native: #10 pc 0031ab5f /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1775)
F/shmanya.photol( 7550): runtime.cc:558] native: #11 pc 0031ad21 /system/lib/libart.so (art::JavaVMExt::JniAbortV(char const*, char const*, char*)+113)
F/shmanya.photol( 7550): runtime.cc:558] native: #12 pc 000d60f7 /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::AbortF(char const*, ...)+71)
F/shmanya.photol( 7550): runtime.cc:558] native: #13 pc 000d4a5e /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::CheckPossibleHeapValue(art::ScopedObjectAccess&, char, art::(anonymous namespace)::JniValueType)+1230)
F/shmanya.photol( 7550): runtime.cc:558] native: #14 pc 000d3bdb /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::Check(art::ScopedObjectAccess&, bool, char const*, art::(anonymous namespace)::JniValueType*)+811)
F/shmanya.photol( 7550): runtime.cc:558] native: #15 pc 000df8b7 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewPrimitiveArray(char const*, _JNIEnv*, int, art::Primitive::Type)+903)
F/shmanya.photol( 7550): runtime.cc:558] native: #16 pc 000cb68b /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewByteArray(_JNIEnv*, int)+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #17 pc 0000b659 /data/app/photole.offical.lavishmanya.photole-Y7oGTzQz0T4HVlpd5vXIJA==/lib/x86/libmobileffmpeg.so (callbackThreadFunction+585)
F/shmanya.photol( 7550): runtime.cc:558] native: #18 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #19 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "main" prio=10 tid=1 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x7532fee0 self=0xf14f4000
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7550 nice=-10 cgrp=default sched=0/0 handle=0xf6114494
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 3831778275 1109563268 6035 ) utm=258 stm=125 core=0 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xff556000-0xff558000 stackSize=8MB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 000dec12 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::ReleaseStringCharsInternal(char const*, _JNIEnv*, _jstring*, void const*, bool, bool)+722)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 000c955d /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::ReleaseStringUTFChars(_JNIEnv*, _jstring*, char const*)+45)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 000f60a3 /system/lib/libandroid_runtime.so (android::android_util_Log_println_native(_JNIEnv*, _jobject*, int, int, _jstring*, _jstring*)+195)
F/shmanya.photol( 7550): runtime.cc:558] at android.util.Log.println_native(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at android.util.Log.v(Log.java:124)
F/shmanya.photol( 7550): runtime.cc:558] at io.flutter.Log.v(Log.java:17)
F/shmanya.photol( 7550): runtime.cc:558] at io.flutter.embedding.engine.dart.DartMessenger.handleMessageFromDart(DartMessenger.java:90)
F/shmanya.photol( 7550): runtime.cc:558] at io.flutter.embedding.engine.FlutterJNI.handlePlatformMessage(FlutterJNI.java:586)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.nativePollOnce(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.next(MessageQueue.java:326)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.Looper.loop(Looper.java:160)
F/shmanya.photol( 7550): runtime.cc:558] at android.app.ActivityThread.main(ActivityThread.java:6669)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.reflect.Method.invoke(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
F/shmanya.photol( 7550): runtime.cc:558] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Jit thread pool worker thread 0" prio=10 tid=2 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02040 self=0xeb688000
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7561 nice=9 cgrp=default sched=0/0 handle=0xeb67f970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 1013299669 1747950436 2031 ) utm=20 stm=81 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xeb581000-0xeb583000 stackSize=1022KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 005300c5 /system/lib/libart.so (art::ThreadPool::GetTask(art::Thread*)+261)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 0052f495 /system/lib/libart.so (art::ThreadPoolWorker::Run()+117)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 0052eebb /system/lib/libart.so (art::ThreadPoolWorker::Callback(void*)+139)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Signal Catcher" prio=10 tid=3 WaitingInMainSignalCatcherLoop
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f020f0 self=0xf14c1a00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7562 nice=0 cgrp=default sched=0/0 handle=0xeb57e970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 282432 14091725 2 ) utm=0 stm=0 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xeb483000-0xeb485000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_sigtimedwait+0xf7/0x1e3
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_rt_sigtimedwait+0x9e/0xec
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 00076861 /system/lib/libc.so (__rt_sigtimedwait+33)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 0002fcf9 /system/lib/libc.so (sigwait+73)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 004fb409 /system/lib/libart.so (art::SignalCatcher::WaitForSignal(art::Thread*, art::SignalSet&)+265)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 004f9b20 /system/lib/libart.so (art::SignalCatcher::Run(void*)+320)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "ADB-JDWP Connection Control Thread" prio=10 tid=4 WaitingInMainDebuggerLoop
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02178 self=0xeb68bc00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7564 nice=0 cgrp=default sched=0/0 handle=0xd710d970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 1580003 26954077 10 ) utm=0 stm=0 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd7012000-0xd7014000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: poll_schedule_timeout+0x41/0x5a
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_sys_poll+0x41d/0x4d6
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_ppoll+0xd5/0x172
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 000765c6 /system/lib/libc.so (__ppoll+38)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 0002d1da /system/lib/libc.so (poll+90)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0004c19f /system/lib/libc.so (__poll_chk+47)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0000670b /system/lib/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+955)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00004a16 /system/lib/libadbconnection.so (adbconnection::CallbackFunction(void*)+1110)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "ReferenceQueueDaemon" prio=10 tid=5 Waiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02200 self=0xf14f8800
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7565 nice=4 cgrp=default sched=0/0 handle=0xd700f970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 6313062 7872682 38 ) utm=0 stm=0 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd6f0c000-0xd6f0e000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0040fd36 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+630)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 004310b2 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+82)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x09868f64> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:178)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x09868f64> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Daemons$Daemon.run(Daemons.java:103)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "HeapTaskDaemon" prio=10 tid=6 WaitingForTaskProcessor
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02b08 self=0xe9c9b600
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7568 nice=4 cgrp=default sched=0/0 handle=0xd6cfd970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 430826555 725351000 845 ) utm=23 stm=20 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd6bfa000-0xd6bfc000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000ac054 /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+148)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0023a762 /system/lib/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+322)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0023b192 /system/lib/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+98)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 004246c7 /system/lib/libart.so (art::VMRuntime_runHeapTasks(_JNIEnv*, _jobject*)+55)
F/shmanya.photol( 7550): runtime.cc:558] at dalvik.system.VMRuntime.runHeapTasks(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:475)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Daemons$Daemon.run(Daemons.java:103)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "FinalizerWatchdogDaemon" prio=10 tid=7 Sleeping
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02288 self=0xf14fd000
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7567 nice=4 cgrp=default sched=0/0 handle=0xd6e03970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 930385 13850266 13 ) utm=0 stm=0 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd6d00000-0xd6d02000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000ac054 /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+148)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0040fd5a /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+666)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00438ad1 /system/lib/libart.so (art::Thread_sleep(_JNIEnv*, _jclass*, _jobject*, long long, int)+113)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.sleep(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - sleeping on <0x0953b5cd> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.sleep(Thread.java:373)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x0953b5cd> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.sleep(Thread.java:314)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Daemons$FinalizerWatchdogDaemon.sleepFor(Daemons.java:342)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Daemons$FinalizerWatchdogDaemon.waitForFinalization(Daemons.java:364)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:281)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Daemons$Daemon.run(Daemons.java:103)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "FinalizerDaemon" prio=10 tid=8 Waiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02310 self=0xf14f8e00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7566 nice=4 cgrp=default sched=0/0 handle=0xd6f09970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 9336717 41058318 46 ) utm=0 stm=0 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd6e06000-0xd6e08000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0040fd36 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+630)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x03970e82> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Object.java:422)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:188)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x03970e82> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:209)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:232)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Daemons$Daemon.run(Daemons.java:103)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Binder:7550_1" prio=10 tid=9 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02398 self=0xe8a14600
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7569 nice=0 cgrp=default sched=0/0 handle=0xd6af9970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 363582 7396038 2 ) utm=0 stm=0 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd69fe000-0xd6a00000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_thread_read+0x36c/0xda1
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_ioctl_write_read.constprop.43+0x15e/0x250
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_ioctl+0x195/0x4e5
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_ioctl+0x1cb/0xced
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007649c /system/lib/libc.so (__ioctl+28)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 0002a89c /system/lib/libc.so (ioctl+60)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00045247 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+391)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0004545a /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+42)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00045d58 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+72)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 00070f59 /system/lib/libbinder.so (android::PoolThread::threadLoop()+41)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 0000e616 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+326)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #10 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #11 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Binder:7550_2" prio=10 tid=10 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02420 self=0xeb693800
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7570 nice=0 cgrp=default sched=0/0 handle=0xd69fb970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 24835502 43801659 51 ) utm=2 stm=0 core=1 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd6900000-0xd6902000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_thread_read+0x36c/0xda1
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_ioctl_write_read.constprop.43+0x15e/0x250
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_ioctl+0x195/0x4e5
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_ioctl+0x1cb/0xced
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007649c /system/lib/libc.so (__ioctl+28)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 0002a89c /system/lib/libc.so (ioctl+60)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00045247 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+391)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0004545a /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+42)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00045d58 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+72)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 00070f59 /system/lib/libbinder.so (android::PoolThread::threadLoop()+41)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 0000e616 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+326)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #10 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #11 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Binder:7550_3" prio=10 tid=11 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f024a8 self=0xe8a6f800
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7572 nice=0 cgrp=default sched=0/0 handle=0xd68fd970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 5837472 5764077 23 ) utm=0 stm=0 core=0 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd6802000-0xd6804000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_thread_read+0x36c/0xda1
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_ioctl_write_read.constprop.43+0x15e/0x250
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_ioctl+0x195/0x4e5
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_ioctl+0x1cb/0xced
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007649c /system/lib/libc.so (__ioctl+28)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 0002a89c /system/lib/libc.so (ioctl+60)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00045247 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+391)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0004545a /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+42)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00045d58 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+72)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 00070f59 /system/lib/libbinder.so (android::PoolThread::threadLoop()+41)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 0000e616 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+326)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #10 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #11 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Profile Saver" prio=10 tid=12 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02530 self=0xeb697400
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7577 nice=9 cgrp=default sched=0/0 handle=0xd4fba970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 9178664 17306597 21 ) utm=0 stm=0 core=1 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd4ebf000-0xd4ec1000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000ac054 /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+148)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00360b66 /system/lib/libart.so (art::ProfileSaver::Run()+886)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 00364c5f /system/lib/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+95)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "queued-work-looper" prio=10 tid=13 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f025b8 self=0xe9c6f800
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7582 nice=-2 cgrp=default sched=0/0 handle=0xd4d4d970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 15365744 6679553 42 ) utm=1 stm=0 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd4c4a000-0xd4c4c000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: ep_poll+0x28e/0x33f
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_wait+0x96/0xb4
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_pwait+0x93/0x114
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007621b /system/lib/libc.so (__epoll_pwait+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00031e8d /system/lib/libc.so (epoll_wait+45)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00013567 /system/lib/libutils.so (android::Looper::pollInner(int)+183)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 000e414b /system/lib/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long long, int)+59)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.nativePollOnce(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.next(MessageQueue.java:326)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.Looper.loop(Looper.java:160)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.HandlerThread.run(HandlerThread.java:65)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Measurement Worker" prio=10 tid=14 TimedWaiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f00f40 self=0xe9c6fe00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7583 nice=10 cgrp=default sched=0/0 handle=0xd4e53970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 528378951 313340629 583 ) utm=39 stm=13 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd4d50000-0xd4d52000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000ac054 /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+148)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0040fd5a /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+666)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x0848f993> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Object.java:422)
F/shmanya.photol( 7550): runtime.cc:558] at com.google.android.gms.measurement.internal.zzfg.run(unavailable:24)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x0848f993> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "pool-1-thread-1" prio=10 tid=15 TimedWaiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02728 self=0xe9c70400
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7584 nice=0 cgrp=default sched=0/0 handle=0xd4c47970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 33510428 53718938 36 ) utm=3 stm=0 core=1 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd4b44000-0xd4b46000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000ac054 /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+148)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0040fd5a /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+666)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x0dcf3dd0> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.parkFor$(Thread.java:2137)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x0dcf3dd0> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at sun.misc.Unsafe.park(Unsafe.java:358)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:230)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2101)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.java:467)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1091)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "TokenRefresher" prio=10 tid=16 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f028b0 self=0xe9c6e600
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7586 nice=10 cgrp=default sched=0/0 handle=0xd4b41970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 766340 9409567 3 ) utm=0 stm=0 core=0 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd4a3e000-0xd4a40000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: ep_poll+0x28e/0x33f
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_wait+0x96/0xb4
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_pwait+0x93/0x114
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007621b /system/lib/libc.so (__epoll_pwait+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00031e8d /system/lib/libc.so (epoll_wait+45)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00013567 /system/lib/libutils.so (android::Looper::pollInner(int)+183)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 000e414b /system/lib/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long long, int)+59)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.nativePollOnce(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.next(MessageQueue.java:326)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.Looper.loop(Looper.java:160)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.HandlerThread.run(HandlerThread.java:65)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "GoogleApiHandler" prio=10 tid=17 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02b90 self=0xe8a58e00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7588 nice=9 cgrp=default sched=0/0 handle=0xd497f970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 391307329 172595376 496 ) utm=31 stm=8 core=0 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd487c000-0xd487e000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: ep_poll+0x28e/0x33f
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_wait+0x96/0xb4
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_pwait+0x93/0x114
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007621b /system/lib/libc.so (__epoll_pwait+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00031e8d /system/lib/libc.so (epoll_wait+45)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00013567 /system/lib/libutils.so (android::Looper::pollInner(int)+183)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 000e414b /system/lib/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long long, int)+59)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.nativePollOnce(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.next(MessageQueue.java:326)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.Looper.loop(Looper.java:160)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.HandlerThread.run(HandlerThread.java:65)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "RenderThread" prio=10 tid=19 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x16f02a80 self=0xe8a58800
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7601 nice=-10 cgrp=default sched=0/0 handle=0xd07bf970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 88704166 52958836 267 ) utm=3 stm=5 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd06c4000-0xd06c6000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: ep_poll+0x28e/0x33f
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_wait+0x96/0xb4
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_pwait+0x93/0x114
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007621b /system/lib/libc.so (__epoll_pwait+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00031e8d /system/lib/libc.so (epoll_wait+45)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00013567 /system/lib/libutils.so (android::Looper::pollInner(int)+183)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 000c4535 /system/lib/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+293)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 0000e616 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+326)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "hwuiTask1" prio=10 tid=20 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x130000b0 self=0xd5c7dc00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7603 nice=-2 cgrp=default sched=0/0 handle=0xc9d3f970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 2752732 5581454 13 ) utm=0 stm=0 core=0 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc9c44000-0xc9c46000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00023555 /system/lib/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+133)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0008e3be /system/lib/libc.so (pthread_cond_wait+62)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0050218f /system/lib/libhwui.so (android::uirenderer::TaskManager::WorkerThread::threadLoop()+383)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 0000e5ae /system/lib/libutils.so (android::Thread::_threadLoop(void*)+222)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "FirestoreWorker" prio=10 tid=22 TimedWaiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x13000218 self=0xd5b40200
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7609 nice=0 cgrp=default sched=0/0 handle=0xc6a3f970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 764805991 89910767 777 ) utm=56 stm=20 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc693c000-0xc693e000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000ac054 /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+148)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0040fd5a /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+666)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x04f2e1c9> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.parkFor$(Thread.java:2137)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x04f2e1c9> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at sun.misc.Unsafe.park(Unsafe.java:358)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:230)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2101)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1132)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:849)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at com.google.firebase.firestore.util.AsyncQueue$DelayedStartFactory.run(com.google.firebase:firebase-firestore@@19.0.0:205)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "ConnectivityThread" prio=10 tid=23 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x130c0008 self=0xc9b27000
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7610 nice=0 cgrp=default sched=0/0 handle=0xc2b3f970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 6361508 433154 7 ) utm=0 stm=0 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc2a3c000-0xc2a3e000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: ep_poll+0x28e/0x33f
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_wait+0x96/0xb4
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_pwait+0x93/0x114
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007621b /system/lib/libc.so (__epoll_pwait+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00031e8d /system/lib/libc.so (epoll_wait+45)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00013567 /system/lib/libutils.so (android::Looper::pollInner(int)+183)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 000e414b /system/lib/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long long, int)+59)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.nativePollOnce(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.next(MessageQueue.java:326)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.Looper.loop(Looper.java:160)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.HandlerThread.run(HandlerThread.java:65)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Sqflite" prio=10 tid=24 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x130c00f8 self=0xd5b40800
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7611 nice=10 cgrp=default sched=0/0 handle=0xc2a39970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 48031771 41089608 98 ) utm=4 stm=0 core=1 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc2936000-0xc2938000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: ep_poll+0x28e/0x33f
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_wait+0x96/0xb4
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_pwait+0x93/0x114
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007621b /system/lib/libc.so (__epoll_pwait+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00031e8d /system/lib/libc.so (epoll_wait+45)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00013567 /system/lib/libutils.so (android::Looper::pollInner(int)+183)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 000e414b /system/lib/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long long, int)+59)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.nativePollOnce(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.next(MessageQueue.java:326)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.Looper.loop(Looper.java:160)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.HandlerThread.run(HandlerThread.java:65)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "grpc-timer-0" prio=10 tid=25 TimedWaiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x130c01e8 self=0xc9b27600
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7612 nice=0 cgrp=default sched=0/0 handle=0xc2933970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 1478676 118984 5 ) utm=0 stm=0 core=0 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc2830000-0xc2832000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000ac054 /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+148)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0040fd5a /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+666)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x06ab90ce> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.parkFor$(Thread.java:2137)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x06ab90ce> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at sun.misc.Unsafe.park(Unsafe.java:358)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:230)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2101)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1132)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:849)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000ac054 /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+148)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0040fd5a /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+666)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x0a7f9bef> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.parkFor$(Thread.java:2137)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x0a7f9bef> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at sun.misc.Unsafe.park(Unsafe.java:358)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:230)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:461)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:362)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:937)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1091)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "grpc-okhttp-0" prio=10 tid=27 TimedWaiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x130c04a8 self=0xc9b29400
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7616 nice=0 cgrp=default sched=0/0 handle=0xc1f7f970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 158389920 123766862 165 ) utm=10 stm=5 core=0 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc1e7c000-0xc1e7e000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000ac054 /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+148)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0040fd5a /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+666)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x03b266fc> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.parkFor$(Thread.java:2137)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x03b266fc> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at sun.misc.Unsafe.park(Unsafe.java:358)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:230)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:461)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:362)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:937)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1091)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "OkHttpClientTransport" prio=10 tid=28 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x130c05f8 self=0xcb0a4800
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7618 nice=0 cgrp=default sched=0/0 handle=0xc117f970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 26526007 11234599 29 ) utm=2 stm=0 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc107c000-0xc107e000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: poll_schedule_timeout+0x41/0x5a
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_sys_poll+0x41d/0x4d6
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_ppoll+0xd5/0x172
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 000765c6 /system/lib/libc.so (__ppoll+38)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 0002d1da /system/lib/libc.so (poll+90)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0453842f /data/app/com.google.android.gms-f-HCf8pA6rUYhlki2WaQOw==/base.apk (offset 451e000) (???)
F/shmanya.photol( 7550): runtime.cc:558] at com.google.android.gms.org.conscrypt.NativeCrypto.SSL_read(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at com.google.android.gms.org.conscrypt.NativeSsl.read(:com.google.android.gms@[email protected] (100700-252519124):4)
F/shmanya.photol( 7550): runtime.cc:558] at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket$SSLInputStream.read(:com.google.android.gms@[email protected] (100700-252519124):7)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x013ed185> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at okio.Okio$2.read(Okio.java:140)
F/shmanya.photol( 7550): runtime.cc:558] at okio.AsyncTimeout$2.read(AsyncTimeout.java:237)
F/shmanya.photol( 7550): runtime.cc:558] at okio.RealBufferedSource.request(RealBufferedSource.java:68)
F/shmanya.photol( 7550): runtime.cc:558] at okio.RealBufferedSource.require(RealBufferedSource.java:61)
F/shmanya.photol( 7550): runtime.cc:558] at io.grpc.okhttp.internal.framed.Http2$Reader.nextFrame(Http2.java:118)
F/shmanya.photol( 7550): runtime.cc:558] at io.grpc.okhttp.OkHttpClientTransport$ClientFrameHandler.run(OkHttpClientTransport.java:968)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "ChoreographerOwner:Handler" prio=10 tid=18 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x13000478 self=0xd5af0000
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7658 nice=0 cgrp=default sched=0/0 handle=0xc98ff970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 14004422 5344558 54 ) utm=1 stm=0 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc97fc000-0xc97fe000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 005a7f01 /system/lib/libart.so (_ZN3artL12GoToRunnableEPNS_6ThreadE.llvm.3523051683+561)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 005a7c91 /system/lib/libart.so (art::JniMethodEnd(unsigned int, art::Thread*)+33)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.nativePollOnce(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.next(MessageQueue.java:326)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.Looper.loop(Looper.java:160)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.HandlerThread.run(HandlerThread.java:65)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "ExoPlayerImplInternal:Handler" prio=10 tid=29 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x13000588 self=0xd5af0600
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7659 nice=-16 cgrp=default sched=0/0 handle=0xc97f9970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 252600643 63189745 566 ) utm=18 stm=7 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc96f6000-0xc96f8000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: ep_poll+0x28e/0x33f
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_wait+0x96/0xb4
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_pwait+0x93/0x114
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007621b /system/lib/libc.so (__epoll_pwait+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00031e8d /system/lib/libc.so (epoll_wait+45)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00013567 /system/lib/libutils.so (android::Looper::pollInner(int)+183)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 000e414b /system/lib/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long long, int)+59)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.nativePollOnce(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.next(MessageQueue.java:326)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.Looper.loop(Looper.java:160)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.HandlerThread.run(HandlerThread.java:65)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Loader:ExtractorMediaPeriod" prio=10 tid=30 Waiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x13000e28 self=0xd5c7d600
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7660 nice=0 cgrp=default sched=0/0 handle=0xc8e7f970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 108246857 53993521 140 ) utm=7 stm=3 core=1 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc8d7c000-0xc8d7e000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0040fd36 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+630)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x0d73ebda> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.parkFor$(Thread.java:2137)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x0d73ebda> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at sun.misc.Unsafe.park(Unsafe.java:358)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2059)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "MediaCodec_looper" prio=10 tid=31 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x13001398 self=0xd55d8200
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7661 nice=-10 cgrp=default sched=0/0 handle=0xc8d79970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 17216517 8665927 128 ) utm=1 stm=0 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc8c7e000-0xc8c80000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00023555 /system/lib/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+133)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0008e3be /system/lib/libc.so (pthread_cond_wait+62)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001547e /system/lib/libstagefright_foundation.so (android::ALooper::loop()+510)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 0001594e /system/lib/libstagefright_foundation.so (android::ALooper::LooperThread::threadLoop()+46)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 0000e5ae /system/lib/libutils.so (android::Thread::_threadLoop(void*)+222)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #10 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "HwBinder:7550_1" prio=10 tid=32 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c80028 self=0xd5d45200
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7663 nice=-10 cgrp=default sched=0/0 handle=0xc8b7d970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 90275551 87750431 767 ) utm=6 stm=3 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc8a82000-0xc8a84000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_thread_read+0x36c/0xda1
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_ioctl_write_read.constprop.43+0x15e/0x250
F/shmanya.photol( 7550): runtime.cc:558] kernel: binder_ioctl+0x195/0x4e5
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_ioctl+0x1cb/0xced
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007649c /system/lib/libc.so (__ioctl+28)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 0002a89c /system/lib/libc.so (ioctl+60)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0001c37e /system/lib/libhwbinder.so (android::hardware::IPCThreadState::talkWithDriver(bool)+334)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 00010d95 /system/lib/libhwbinder.so (android::hardware::IPCThreadState::getAndExecuteCommand()+37)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00011168 /system/lib/libhwbinder.so (android::hardware::IPCThreadState::joinThreadPool(bool)+296)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 0001af99 /system/lib/libhwbinder.so (android::hardware::PoolThread::threadLoop()+41)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 0000e616 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+326)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #10 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #11 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "MediaCodec_looper" prio=10 tid=33 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c800b0 self=0xd49eba00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7667 nice=-10 cgrp=default sched=0/0 handle=0xc8a30970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 24804938 33770030 203 ) utm=1 stm=1 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc8935000-0xc8937000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00023555 /system/lib/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+133)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0008e3be /system/lib/libc.so (pthread_cond_wait+62)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001547e /system/lib/libstagefright_foundation.so (android::ALooper::loop()+510)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 0001594e /system/lib/libstagefright_foundation.so (android::ALooper::LooperThread::threadLoop()+46)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 0000e5ae /system/lib/libutils.so (android::Thread::_threadLoop(void*)+222)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #10 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "AudioTrack" prio=10 tid=34 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c80138 self=0xd5e71e00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7672 nice=-16 cgrp=default sched=0/0 handle=0xc0407970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 186577 157271 1 ) utm=0 stm=0 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xc030c000-0xc030e000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00023555 /system/lib/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+133)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0008e3be /system/lib/libc.so (pthread_cond_wait+62)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 000427a2 /system/lib/libaudioclient.so (android::AudioTrack::AudioTrackThread::threadLoop()+82)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 0000e616 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+326)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Thread-3" prio=10 tid=35 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c801c0 self=0xeb689e00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7592 nice=-5 cgrp=default sched=0/0 handle=0xd3097970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 4379885207 1582664845 10341 ) utm=282 stm=155 core=0 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xd2f9c000-0xd2f9e000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: ep_poll+0x28e/0x33f
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_wait+0x96/0xb4
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_pwait+0x93/0x114
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007621b /system/lib/libc.so (__epoll_pwait+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00031e8d /system/lib/libc.so (epoll_wait+45)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00013567 /system/lib/libutils.so (android::Looper::pollInner(int)+183)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 0000e220 /system/lib/libandroid.so (ALooper_pollOnce+96)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 00c79fb5 /data/app/photole.offical.lavishmanya.photole-Y7oGTzQz0T4HVlpd5vXIJA==/lib/x86/libflutter.so (offset c58000) (???)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 00c73d1a /data/app/photole.offical.lavishmanya.photole-Y7oGTzQz0T4HVlpd5vXIJA==/lib/x86/libflutter.so (offset c58000) (???)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 00c73902 /data/app/photole.offical.lavishmanya.photole-Y7oGTzQz0T4HVlpd5vXIJA==/lib/x86/libflutter.so (offset c58000) (???)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 00c776d3 /data/app/photole.offical.lavishmanya.photole-Y7oGTzQz0T4HVlpd5vXIJA==/lib/x86/libflutter.so (offset c58000) (???)
F/shmanya.photol( 7550): runtime.cc:558] native: #10 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #11 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "ExoPlayerImplInternal:Handler" prio=10 tid=36 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c8c840 self=0xc9ffd000
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7693 nice=-16 cgrp=default sched=0/0 handle=0xba6bf970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 1058297700 420931551 4795 ) utm=59 stm=46 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xba5bc000-0xba5be000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: ep_poll+0x28e/0x33f
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_wait+0x96/0xb4
F/shmanya.photol( 7550): runtime.cc:558] kernel: SyS_epoll_pwait+0x93/0x114
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0007621b /system/lib/libc.so (__epoll_pwait+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00031e8d /system/lib/libc.so (epoll_wait+45)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 00013567 /system/lib/libutils.so (android::Looper::pollInner(int)+183)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001340b /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 000e414b /system/lib/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long long, int)+59)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.nativePollOnce(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.MessageQueue.next(MessageQueue.java:326)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.Looper.loop(Looper.java:160)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.HandlerThread.run(HandlerThread.java:65)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Loader:ExtractorMediaPeriod" prio=10 tid=37 Waiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c80248 self=0xeb6ede00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7694 nice=0 cgrp=default sched=0/0 handle=0xba5b9970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 139642493 141389119 252 ) utm=5 stm=8 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xba4b6000-0xba4b8000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0040fd36 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+630)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x00d4080b> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.parkFor$(Thread.java:2137)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x00d4080b> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at sun.misc.Unsafe.park(Unsafe.java:358)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2059)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "MediaCodec_looper" prio=10 tid=38 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c803b0 self=0xc99fca00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7695 nice=-10 cgrp=default sched=0/0 handle=0xba3ff970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 433539844 362110075 2673 ) utm=22 stm=21 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xba304000-0xba306000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00023555 /system/lib/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+133)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0008e3be /system/lib/libc.so (pthread_cond_wait+62)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001547e /system/lib/libstagefright_foundation.so (android::ALooper::loop()+510)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 0001594e /system/lib/libstagefright_foundation.so (android::ALooper::LooperThread::threadLoop()+46)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 0000e5ae /system/lib/libutils.so (android::Thread::_threadLoop(void*)+222)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #10 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "MediaCodec_looper" prio=10 tid=39 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c80438 self=0xbf4fd000
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7699 nice=-10 cgrp=default sched=0/0 handle=0xb7283970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 368120185 310180039 2537 ) utm=25 stm=11 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xb7188000-0xb718a000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00023555 /system/lib/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+133)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0008e3be /system/lib/libc.so (pthread_cond_wait+62)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0001547e /system/lib/libstagefright_foundation.so (android::ALooper::loop()+510)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 0001594e /system/lib/libstagefright_foundation.so (android::ALooper::LooperThread::threadLoop()+46)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 0000e5ae /system/lib/libutils.so (android::Thread::_threadLoop(void*)+222)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #10 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Loader:ExtractorMediaPeriod" prio=10 tid=41 Waiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c804c0 self=0xcb0fd800
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7749 nice=0 cgrp=default sched=0/0 handle=0xb59d4970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 83059035 194998135 346 ) utm=5 stm=3 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xb58d1000-0xb58d3000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0040fd36 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+630)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x083cf6e8> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.parkFor$(Thread.java:2137)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x083cf6e8> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at sun.misc.Unsafe.park(Unsafe.java:358)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2059)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Loader:ExtractorMediaPeriod" prio=10 tid=21 Waiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c80648 self=0xd55bc600
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=7818 nice=0 cgrp=default sched=0/0 handle=0xb2f63970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 84114439 13678732 30 ) utm=8 stm=0 core=1 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xb2e60000-0xb2e62000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0040fd36 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+630)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 004310b2 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+82)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x04a00101> (a com.google.android.exoplayer2.util.ConditionVariable)
F/shmanya.photol( 7550): runtime.cc:558] at com.google.android.exoplayer2.util.ConditionVariable.block(ConditionVariable.java:58)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x04a00101> (a com.google.android.exoplayer2.util.ConditionVariable)
F/shmanya.photol( 7550): runtime.cc:558] at com.google.android.exoplayer2.source.ExtractorMediaPeriod$ExtractingLoadable.load(ExtractorMediaPeriod.java:859)
F/shmanya.photol( 7550): runtime.cc:558] at com.google.android.exoplayer2.upstream.Loader$LoadTask.run(Loader.java:317)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "AudioTrack" prio=10 tid=40 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12f800c0 self=0xd5a2f800
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=8121 nice=-16 cgrp=default sched=0/0 handle=0xb6987970
V/DartMessenger( 7550): Received message from Dart over channel 'flutter.io/videoPlayer'
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 607505 1770956 2 ) utm=0 stm=0 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xb688c000-0xb688e000 stackSize=1010KB
V/DartMessenger( 7550): Deferring to registered handler to process message.
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b39 [vdso] (__kernel_vsyscall+9)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 00023555 /system/lib/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+133)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 0008e463 /system/lib/libc.so (pthread_cond_timedwait+115)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 00042950 /system/lib/libaudioclient.so (android::AudioTrack::AudioTrackThread::threadLoop()+512)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 0000e5ae /system/lib/libutils.so (android::Thread::_threadLoop(void*)+222)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 000741fb /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+171)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 0000df76 /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+246)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Loader:ExtractorMediaPeriod" prio=10 tid=42 Waiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12f80148 self=0xd49b2000
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=8130 nice=0 cgrp=default sched=0/0 handle=0xb57c8970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 40481728 84055295 133 ) utm=2 stm=2 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xb56c5000-0xb56c7000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0040fd36 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+630)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 00431125 /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+85)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x0034eba6> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.parkFor$(Thread.java:2137)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x0034eba6> (a java.lang.Object)
F/shmanya.photol( 7550): runtime.cc:558] at sun.misc.Unsafe.park(Unsafe.java:358)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:190)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2059)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1092)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "Loader:ExtractorMediaPeriod" prio=10 tid=43 Waiting
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12c808c8 self=0xd49b2600
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=8159 nice=0 cgrp=default sched=0/0 handle=0xbaeff970
F/shmanya.photol( 7550): runtime.cc:558] | state=S schedstat=( 24764102 40795739 68 ) utm=1 stm=1 core=3 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xbadfc000-0xbadfe000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait_queue_me+0xcb/0x11b
F/shmanya.photol( 7550): runtime.cc:558] kernel: futex_wait+0x120/0x25e
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_futex+0xbe/0x468
F/shmanya.photol( 7550): runtime.cc:558] kernel: compat_SyS_futex+0xb9/0x13b
F/shmanya.photol( 7550): runtime.cc:558] kernel: do_fast_syscall_32+0xd5/0x148
F/shmanya.photol( 7550): runtime.cc:558] kernel: sysenter_flags_fixed+0x8/0x12
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 00000b37 [vdso] (__kernel_vsyscall+7)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 000abbde /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+110)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 000abb63 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 0040fd36 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+630)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 00411d65 /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+453)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 004310b2 /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+82)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Object.wait(Native method)
F/shmanya.photol( 7550): runtime.cc:558] - waiting on <0x0eb919e7> (a com.google.android.exoplayer2.util.ConditionVariable)
F/shmanya.photol( 7550): runtime.cc:558] at com.google.android.exoplayer2.util.ConditionVariable.block(ConditionVariable.java:58)
F/shmanya.photol( 7550): runtime.cc:558] - locked <0x0eb919e7> (a com.google.android.exoplayer2.util.ConditionVariable)
F/shmanya.photol( 7550): runtime.cc:558] at com.google.android.exoplayer2.source.ExtractorMediaPeriod$ExtractingLoadable.load(ExtractorMediaPeriod.java:859)
F/shmanya.photol( 7550): runtime.cc:558] at com.google.android.exoplayer2.upstream.Loader$LoadTask.run(Loader.java:317)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] "AsyncTask #3" prio=10 tid=45 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=1 dsCount=0 flags=1 obj=0x12d8d2a0 self=0xc9fffa00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=8194 nice=10 cgrp=default sched=0/0 handle=0xb1f87970
F/shmanya.photol( 7550): runtime.cc:558] | state=R schedstat=( 86091895 30453167 132 ) utm=5 stm=3 core=1 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xb1e84000-0xb1e86000 stackSize=1042KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes=
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 0008feaf /system/lib/libc.so (pthread_mutex_lock+31)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 00446a75 /data/app/photole.offical.lavishmanya.photole-Y7oGTzQz0T4HVlpd5vXIJA==/lib/x86/libavcodec.so (???)
F/shmanya.photol( 7550): runtime.cc:558] at com.arthenica.mobileffmpeg.Config.nativeExecute(Native method)
F/shmanya.photol( 7550): runtime.cc:558] at com.arthenica.mobileffmpeg.FFmpeg.execute(FFmpeg.java:98)
F/shmanya.photol( 7550): runtime.cc:558] at com.arthenica.flutter.ffmpeg.FlutterFFmpegExecuteAsyncArgumentsTask.doInBackground(FlutterFFmpegExecuteAsyncArgumentsTask.java:54)
F/shmanya.photol( 7550): runtime.cc:558] at com.arthenica.flutter.ffmpeg.FlutterFFmpegExecuteAsyncArgumentsTask.doInBackground(FlutterFFmpegExecuteAsyncArgumentsTask.java:38)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.AsyncTask$2.call(AsyncTask.java:333)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.FutureTask.run(FutureTask.java:266)
F/shmanya.photol( 7550): runtime.cc:558] at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:245)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
F/shmanya.photol( 7550): runtime.cc:558] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
F/shmanya.photol( 7550): runtime.cc:558] at java.lang.Thread.run(Thread.java:764)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:558] Aborting thread:
F/shmanya.photol( 7550): runtime.cc:558] "Thread-7" prio=10 tid=44 Native
F/shmanya.photol( 7550): runtime.cc:558] | group="" sCount=0 dsCount=0 flags=0 obj=0x12c40000 self=0xcb0a3c00
F/shmanya.photol( 7550): runtime.cc:558] | sysTid=8190 nice=-10 cgrp=default sched=0/0 handle=0xb2085970
F/shmanya.photol( 7550): runtime.cc:558] | state=R schedstat=( 134361269 10631971 196 ) utm=5 stm=8 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:558] | stack=0xb1f8a000-0xb1f8c000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:558] | held mutexes= "abort lock"
F/shmanya.photol( 7550): runtime.cc:558] native: #00 pc 004152f6 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits>&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+198)
F/shmanya.photol( 7550): runtime.cc:558] native: #1 pc 0051048e /system/lib/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+382)
F/shmanya.photol( 7550): runtime.cc:558] native: #2 pc 0050b743 /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+83)
F/shmanya.photol( 7550): runtime.cc:558] native: #3 pc 004efe1b /system/lib/libart.so (art::AbortState::DumpThread(std::__1::basic_ostream<char, std::__1::char_traits>&, art::Thread*) const+59)
F/shmanya.photol( 7550): runtime.cc:558] native: #4 pc 004dc5a9 /system/lib/libart.so (art::Runtime::Abort(char const*)+409)
F/shmanya.photol( 7550): runtime.cc:558] native: #5 pc 005cd833 /system/lib/libart.so (ZNSt3__110__function6__funcIPFvPKcENS_9allocatorIS5_EES4_EclEOS3+35)
F/shmanya.photol( 7550): runtime.cc:558] native: #6 pc 00007ccc /system/lib/libbase.so (android::base::LogMessage::~LogMessage()+828)
F/shmanya.photol( 7550): runtime.cc:558] native: #7 pc 0031ab5f /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1775)
F/shmanya.photol( 7550): runtime.cc:558] native: #8 pc 0031ad21 /system/lib/libart.so (art::JavaVMExt::JniAbortV(char const*, char const*, char*)+113)
F/shmanya.photol( 7550): runtime.cc:558] native: #9 pc 000d60f7 /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::AbortF(char const*, ...)+71)
F/shmanya.photol( 7550): runtime.cc:558] native: #10 pc 000d4a5e /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::CheckPossibleHeapValue(art::ScopedObjectAccess&, char, art::(anonymous namespace)::JniValueType)+1230)
F/shmanya.photol( 7550): runtime.cc:558] native: #11 pc 000d3bdb /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::Check(art::ScopedObjectAccess&, bool, char const*, art::(anonymous namespace)::JniValueType*)+811)
F/shmanya.photol( 7550): runtime.cc:558] native: #12 pc 000df8b7 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewPrimitiveArray(char const*, _JNIEnv*, int, art::Primitive::Type)+903)
F/shmanya.photol( 7550): runtime.cc:558] native: #13 pc 000cb68b /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewByteArray(_JNIEnv*, int)+43)
F/shmanya.photol( 7550): runtime.cc:558] native: #14 pc 0000b659 /data/app/photole.offical.lavishmanya.photole-Y7oGTzQz0T4HVlpd5vXIJA==/lib/x86/libmobileffmpeg.so (callbackThreadFunction+585)
F/shmanya.photol( 7550): runtime.cc:558] native: #15 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:558] native: #16 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:558] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:558] Pending exception java.lang.RuntimeException: Methods marked with @UiThread must be executed on the main thread. Current thread: Thread-7
F/shmanya.photol( 7550): runtime.cc:558] at void io.flutter.embedding.engine.FlutterJNI.ensureRunningOnMainThread() (FlutterJNI.java:734)
F/shmanya.photol( 7550): runtime.cc:558] at void io.flutter.embedding.engine.FlutterJNI.dispatchPlatformMessage(java.lang.String, java.nio.ByteBuffer, int, int) (FlutterJNI.java:626)
F/shmanya.photol( 7550): runtime.cc:558] at void io.flutter.embedding.engine.dart.DartMessenger.send(java.lang.String, java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (DartMessenger.java:80)
F/shmanya.photol( 7550): runtime.cc:558] at void io.flutter.embedding.engine.dart.DartExecutor.send(java.lang.String, java.nio.ByteBuffer) (DartExecutor.java:172)
F/shmanya.photol( 7550): runtime.cc:558] at void io.flutter.view.FlutterNativeView.send(java.lang.String, java.nio.ByteBuffer) (FlutterNativeView.java:144)
F/shmanya.photol( 7550): runtime.cc:558] at void io.flutter.plugin.common.EventChannel$IncomingStreamRequestHandler$EventSinkImplementation.success(java.lang.Object) (EventChannel.java:226)
F/shmanya.photol( 7550): runtime.cc:558] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin.emitLogMessage(com.arthenica.mobileffmpeg.LogMessage) (FlutterFFmpegPlugin.java:271)
F/shmanya.photol( 7550): runtime.cc:558] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin$1.apply(com.arthenica.mobileffmpeg.LogMessage) (FlutterFFmpegPlugin.java:171)
F/shmanya.photol( 7550): runtime.cc:558] at void com.arthenica.mobileffmpeg.Config.log(int, byte[]) (Config.java:224)
F/shmanya.photol( 7550): runtime.cc:558]
F/shmanya.photol( 7550): runtime.cc:566] JNI DETECTED ERROR IN APPLICATION: JNI NewByteArray called with pending exception java.lang.RuntimeException: Methods marked with @UiThread must be executed on the main thread. Current thread: Thread-7
F/shmanya.photol( 7550): runtime.cc:566] at void io.flutter.embedding.engine.FlutterJNI.ensureRunningOnMainThread() (FlutterJNI.java:734)
F/shmanya.photol( 7550): runtime.cc:566] at void io.flutter.embedding.engine.FlutterJNI.dispatchPlatformMessage(java.lang.String, java.nio.ByteBuffer, int, int) (FlutterJNI.java:626)
F/shmanya.photol( 7550): runtime.cc:566] at void io.flutter.embedding.engine.dart.DartMessenger.send(java.lang.String, java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (DartMessenger.java:80)
F/shmanya.photol( 7550): runtime.cc:566] at void io.flutter.embedding.engine.dart.DartExecutor.send(java.lang.String, java.nio.ByteBuffer) (DartExecutor.java:172)
F/shmanya.photol( 7550): runtime.cc:566] at void io.flutter.view.FlutterNativeView.send(java.lang.String, java.nio.ByteBuffer) (FlutterNativeView.java:144)
F/shmanya.photol( 7550): runtime.cc:566] at void io.flutter.plugin.common.EventChannel$IncomingStreamRequestHandler$EventSinkImplementation.success(java.lang.Object) (EventChannel.java:226)
F/shmanya.photol( 7550): runtime.cc:566] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin.emitLogMessage(com.arthenica.mobileffmpeg.LogMessage) (FlutterFFmpegPlugin.java:271)
F/shmanya.photol( 7550): runtime.cc:566] at void com.arthenica.flutter.ffmpeg.FlutterFFmpegPlugin$1.apply(com.arthenica.mobileffmpeg.LogMessage) (FlutterFFmpegPlugin.java:171)
F/shmanya.photol( 7550): runtime.cc:566] at void com.arthenica.mobileffmpeg.Config.log(int, byte[]) (Config.java:224)
F/shmanya.photol( 7550): runtime.cc:566]
F/shmanya.photol( 7550): runtime.cc:566] in call to NewByteArray
F/shmanya.photol( 7550): runtime.cc:566] "Thread-7" prio=10 tid=44 Runnable
F/shmanya.photol( 7550): runtime.cc:566] | group="main" sCount=0 dsCount=0 flags=0 obj=0x12c40000 self=0xcb0a3c00
F/shmanya.photol( 7550): runtime.cc:566] | sysTid=8190 nice=-10 cgrp=default sched=0/0 handle=0xb2085970
F/shmanya.photol( 7550): runtime.cc:566] | state=R schedstat=( 1351140 625245 3 ) utm=0 stm=0 core=2 HZ=100
F/shmanya.photol( 7550): runtime.cc:566] | stack=0xb1f8a000-0xb1f8c000 stackSize=1010KB
F/shmanya.photol( 7550): runtime.cc:566] | held mutexes= "mutator lock"(shared held)
F/shmanya.photol( 7550): runtime.cc:566] native: #00 pc 004152f6 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits>&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+198)
F/shmanya.photol( 7550): runtime.cc:566] native: #1 pc 0051048e /system/lib/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+382)
F/shmanya.photol( 7550): runtime.cc:566] native: #2 pc 0050b743 /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+83)
F/shmanya.photol( 7550): runtime.cc:566] native: #3 pc 0031a8b0 /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1088)
F/shmanya.photol( 7550): runtime.cc:566] native: #4 pc 0031ad21 /system/lib/libart.so (art::JavaVMExt::JniAbortV(char const*, char const*, char*)+113)
F/shmanya.photol( 7550): runtime.cc:566] native: #5 pc 000d60f7 /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::AbortF(char const*, ...)+71)
F/shmanya.photol( 7550): runtime.cc:566] native: #6 pc 000d4a5e /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::CheckPossibleHeapValue(art::ScopedObjectAccess&, char, art::(anonymous namespace)::JniValueType)+1230)
F/shmanya.photol( 7550): runtime.cc:566] native: #7 pc 000d3bdb /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::Check(art::ScopedObjectAccess&, bool, char const*, art::(anonymous namespace)::JniValueType*)+811)
F/shmanya.photol( 7550): runtime.cc:566] native: #8 pc 000df8b7 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewPrimitiveArray(char const*, _JNIEnv*, int, art::Primitive::Type)+903)
F/shmanya.photol( 7550): runtime.cc:566] native: #9 pc 000cb68b /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewByteArray(_JNIEnv*, int)+43)
F/shmanya.photol( 7550): runtime.cc:566] native: #10 pc 0000b659 /data/app/photole.offical.lavishmanya.photole-Y7oGTzQz0T4HVlpd5vXIJA==/lib/x86/libmobileffmpeg.so (callbackThreadFunction+585)
F/shmanya.photol( 7550): runtime.cc:566] native: #11 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
F/shmanya.photol( 7550): runtime.cc:566] native: #12 pc 0002485b /system/lib/libc.so (__start_thread+75)
F/shmanya.photol( 7550): runtime.cc:566] (no managed stack frames)
F/shmanya.photol( 7550): runtime.cc:566]
F/libc ( 7550): Fatal signal 6 (SIGABRT), code -6 (SI_TKILL) in tid 8190 (Thread-7), pid 7550 (shmanya.photole)


Build fingerprint: 'google/sdk_gphone_x86/generic_x86:9/PSR1.180720.075/5124027:user/release-keys'
Revision: '0'
ABI: 'x86'
pid: 7550, tid: 8190, name: Thread-7 >>> photole.offical.lavishmanya.photole <<<
signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
Abort message: 'java_vm_ext.cc:542] JNI DETECTED ERROR IN APPLICATION: JNI NewByteArray called with pending exception java.lang.RuntimeException: Methods marked with @UiThread must be executed on the main thread. Current thread: Thread-7'
eax 00000000 ebx 00001d7e ecx 00001ffe edx 00000006
edi 00001d7e esi 00000236
ebp 00000e21 esp b20853a8 eip f5fcab39
backtrace:
#00 pc 00000b39 [vdso:f5fca000] (__kernel_vsyscall+9)
#1 pc 0001fdf8 /system/lib/libc.so (syscall+40)
#2 pc 00022ed3 /system/lib/libc.so (abort+115)
#3 pc 004dc8a6 /system/lib/libart.so (art::Runtime::Abort(char const*)+1174)
#4 pc 005cd833 /system/lib/libart.so (ZNSt3__110__function6__funcIPFvPKcENS_9allocatorIS5_EES4_EclEOS3+35)
#5 pc 00007ccc /system/lib/libbase.so (android::base::LogMessage::~LogMessage()+828)
#6 pc 0031ab5f /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1775)
#7 pc 0031ad21 /system/lib/libart.so (art::JavaVMExt::JniAbortV(char const*, char const*, char*)+113)
#8 pc 000d60f7 /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::AbortF(char const*, ...)+71)
#9 pc 000d4a5e /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::CheckPossibleHeapValue(art::ScopedObjectAccess&, char, art::(anonymous namespace)::JniValueType)+1230)
#10 pc 000d3bdb /system/lib/libart.so (art::(anonymous namespace)::ScopedCheck::Check(art::ScopedObjectAccess&, bool, char const*, art::(anonymous namespace)::JniValueType*)+811)
#11 pc 000df8b7 /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewPrimitiveArray(char const*, _JNIEnv*, int, art::Primitive::Type)+903)
#12 pc 000cb68b /system/lib/libart.so (art::(anonymous namespace)::CheckJNI::NewByteArray(_JNIEnv*, int)+43)
#13 pc 0000b659 /data/app/photole.offical.lavishmanya.photole-Y7oGTzQz0T4HVlpd5vXIJA==/lib/x86/libmobileffmpeg.so (callbackThreadFunction+585)
#14 pc 0008f065 /system/lib/libc.so (__pthread_start(void*)+53)
#15 pc 0002485b /system/lib/libc.so (__start_thread+75)
Lost connection to device.

` final FlutterFFmpeg _flutterFFmpeg = new FlutterFFmpeg();
var arguments = [
"-y",
"-i",
input,
"-an",
"-r",
"12",
"-ss",
start,
"-t",
end,
"-s",
o,
output + "/$d-%03d.jpg"
];
_flutterFFmpeg.executeWithArguments(arguments).then((rc) {
print(rc.toString());

`

input is video file
Here iam extracting images with specific orientation and with particular duration
When I execute this method the above is printed and the app is crashing
What can I Do?

Stream metadata does not parse from iOS files

Description
This may belong upstream in the mobile-ffmpeg repo.

iOS video files (on the device described in the logs below, either picked via image_picker or recorded via image_picker) do not have any stream metadata in the dictionary returned from getMediaInformation.

This happens despite the metadata appearing in the the rawInformation field. This is important because we use the rotate metadata to determine which dimension to limit when resizing.

Expected behavior
The info.stream[0].metadata is populated with the metadata of the stream

Current behavior
The info.stream[0].metadata was null

Logs
The info object:

{
  format : mov,mp4,m4a,3gp,3g2,mj2,
  streams: [
    {timeBase: 600, realFrameRate: 29.97, index: 0, codecTimeBase: 1200, fullCodec: h264 (avc1 / 0x31637661), fullFormat: yuv420p(tv, bt709), width: 1920, type: video, bitrate: 16083, averageFrameRate: 29.98, format: yuv420p, height: 1080, codec: h264},
    {fullCodec: aac (mp4a / 0x6134706d), sampleFormat: fltp, codec: aac, channelLayout: mono, type: audio, bitrate: 90, sampleRate: 44100, index: 1}, 
    {index: 2, codec: data: none, fullCodec: data: none (mebx / 0x7862656d)}, 
    {index: 3, codec: data: none, fullCodec: data: none (mebx / 0x7862656d)}
  ],
  duration: 3000,
  path: file:///private/var/mobile/Containers/Data/Application/815329F7-230E-4A39-8BF7-7C238D6C983C/tmp/57724050691__9EEED99F-4CD2-4631-8035-7F2D5C1CFC17.MOV,
  startTime: 0,
  metadata: {com.apple.quicktime.model: iPhone 6s, creation_time: 2019-04-18T00:35:07.000000Z, com.apple.quicktime.creationdate: 2019-04-17T14:35:06-1000, com.apple.quicktime.make: Apple, major_brand: qt, minor_version: 0, com.apple.quicktime.software: 12.2, compatible_brands: qt},
  bitrate: 16194
}

The rawInformation output:

rawInformation: Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'file:///private/var/mobile/Containers/Data/Application/815329F7-230E-4A39-8BF7-7C238D6C983C/tmp/57724050691__9EEED99F-4CD2-4631-8035-7F2D5C1CFC17.MOV':
flutter:   Metadata:
flutter:     major_brand     : qt
flutter:     minor_version   : 0
flutter:     compatible_brands: qt
flutter:     creation_time   : 2019-04-18T00:35:07.000000Z
flutter:     com.apple.quicktime.make: Apple
flutter:     com.apple.quicktime.model: iPhone 6s
flutter:     com.apple.quicktime.software: 12.2
flutter:     com.apple.quicktime.creationdate: 2019-04-17T14:35:06-1000
flutter:   Duration: 00:00:03.00, start: 0.000000, bitrate: 16194 kb/s
flutter:     Stream #0:0(und): Video: h264 (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x1080, 16083 kb/s, 29.98 fps, 29.97 tbr, 600 tbn, 1200 tbc (default)
flutter:     Metadata:
flutter:       rotate          : 90
flutter:       creation_time   : 2019-04-18T00:35:07.000000Z
flutter:       handler_name    : Core Media Video
flutter:       encoder         : H.264
flutter:     Side data:
flutter:       displaymatrix: rotation of -90.00 degrees
flutter:     Stream #0:1(und): Audio: aac (mp4a / 0x6134706D), 44100 Hz, mono, fltp, 90 kb/s (default)
flutter:     Metadata:
flutter:       creation_time   : 2019-04-18T00:35:07.000000Z
flutter:       handler_name    : Core Media Audio
flutter:     Stream #0:2(und): Data: none (mebx / 0x7862656D), 0 kb/s (default)
flutter:     Metadata:
flutter:       creation_time   : 2019-04-18T00:35:07.000000Z
flutter:       handler_name    : Core Media Metadata
flutter:     Stream #0:3(und): Data: none (mebx / 0x7862656D), 0 kb/s (default)
flutter:     Metadata:
flutter:       creation_time   : 2019-04-18T00:35:07.000000Z
flutter:       handler_name    : Core Media Metadata

Environment

Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel dev, v1.4.19, on Mac OS X 10.14.4 18E226, locale en-US)
[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
[✓] iOS toolchain - develop for iOS devices (Xcode 10.2.1)
[✓] Android Studio (version 3.3)
[✓] VS Code (version 1.33.1)
[✓] Connected device (1 available)

• No issues found!

Converted mp3 file not being read by any Music Player in the device

Description
I was able to convert an mp4 file to mp3 file using the following command
-i file1.mp4 -f mp3 -ab 192000 -acodec libmp3lame file2.mp3
But for some reason the converted mp3 file is not being read by any of the music player on my phone device. Do you have any idea , why that might be happening ? And have you faced the same issue ?

Expected behavior
The converted mp3 file should be readable by the music players

Current behavior
The converted mp3 file is not being read by the music players

Other
The weird thing is if i search for the mp3 file in my file manager it doesn't show up . But if i go the folder the file is there . And clicking on it plays the file.

Environment
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, v1.5.4-hotfix.2, on Mac OS X 10.12.6 16G1510, locale en-IN)
[!] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
✗ Android license status unknown.
Try re-installing or updating your Android SDK Manager.
See https://developer.android.com/studio/#downloads or visit
https://flutter.dev/setup/#android-setup for detailed instructions.
[!] iOS toolchain - develop for iOS devices
✗ Xcode installation is incomplete; a full installation is necessary for iOS
development.
Download at: https://developer.apple.com/xcode/download/
Or install Xcode via the App Store.
Once installed, run:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
✗ libimobiledevice and ideviceinstaller are not installed. To install with Brew, run:
brew update
brew install --HEAD usbmuxd
brew link usbmuxd
brew install --HEAD libimobiledevice
brew install ideviceinstaller
✗ ios-deploy not installed. To install:
brew install ios-deploy
! CocoaPods out of date (1.5.0 is recommended).
CocoaPods is used to retrieve the iOS platform side's plugin code that responds to
your plugin usage on the Dart side.
Without resolving iOS dependencies with CocoaPods, plugins will not work on iOS.
For more info, see https://flutter.dev/platform-plugins
To upgrade:
brew upgrade cocoapods
pod setup
[✓] Android Studio (version 3.3)
[✓] VS Code (version 1.27.2)
[!] Connected device
! No devices available

! Doctor found issues in 3 categories.
➜ downloader git:(master) ✗ flutter doctor output
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, v1.5.4-hotfix.2, on Mac OS X 10.12.6 16G1510, locale en-IN)
[!] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
✗ Android license status unknown.
Try re-installing or updating your Android SDK Manager.
See https://developer.android.com/studio/#downloads or visit
https://flutter.dev/setup/#android-setup for detailed instructions.
[!] iOS toolchain - develop for iOS devices
✗ Xcode installation is incomplete; a full installation is necessary for iOS
development.
Download at: https://developer.apple.com/xcode/download/
Or install Xcode via the App Store.
Once installed, run:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
✗ libimobiledevice and ideviceinstaller are not installed. To install with Brew, run:
brew update
brew install --HEAD usbmuxd
brew link usbmuxd
brew install --HEAD libimobiledevice
brew install ideviceinstaller
✗ ios-deploy not installed. To install:
brew install ios-deploy
! CocoaPods out of date (1.5.0 is recommended).
CocoaPods is used to retrieve the iOS platform side's plugin code that responds to
your plugin usage on the Dart side.
Without resolving iOS dependencies with CocoaPods, plugins will not work on iOS.
For more info, see https://flutter.dev/platform-plugins
To upgrade:
brew upgrade cocoapods
pod setup
[✓] Android Studio (version 3.3)
[✓] VS Code (version 1.27.2)
[✓] Connected device (1 available)

! Doctor found issues in 2 categories.

man.png: No such file or directory

I am new to FFmpeg and Flutter, I am trying to execute a cmd to overlap two images:

import 'package:flutter/material.dart';
import 'package:flutter_ffmpeg/flutter_ffmpeg.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  final FlutterFFmpeg _flutterFFmpeg = new FlutterFFmpeg();

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
          home: Scaffold(
        body: Container(
          child: Center(
              child: RaisedButton(
            onPressed: overlapImages,
            child: Text('Click Me'),
          )),
        ),
      ),
    );
  }

  overlapImages() {
    _flutterFFmpeg
        .execute(
            "-i man.png -i graduation.png -filter_complex 'overlay' out.png")
        .then((onValue) {
      print(onValue);
    });
  }
}

The file man.png and decoration.png are in assets folder at the project level. There is no documentation on how to make these assets available to flutter_ffmpeg package and where the output.png will be saved? I did look example file but being new to both Android Market and mobile ffmpeg I didn't get anything.

Can you just help me in setting this up?

Running pod install results in an error

Hi,

I'm currently trying to use flutter-ffmpeg, but the project compilation fails on pod install with the following error:

Include of non-modular header inside framework module 'flutter_ffmpeg.FlutterFFmpegPlugin': '/Users/arkivika/Workspace/flutter/courtius_training/ios/Pods/mobile-ffmpeg-video/mobileffmpeg.framework/Headers/MobileFFmpegConfig.h'

I'm including the dependency as follows:

flutter_ffmpeg:
git:
url: git://github.com/tanersener/flutter-ffmpeg.git
ref: development
path: packages/flutter_ffmpeg_video_lts

xcode Archive file not armv7 impl

image

  Showing All Messages
    "_OBJC_CLASS_$_MobileFFmpegConfig", referenced from:
        objc-class-ref in flutter_ffmpeg(FlutterFfmpegPlugin.o)
    "_OBJC_CLASS_$_MobileFFmpeg", referenced from:
        objc-class-ref in flutter_ffmpeg(FlutterFfmpegPlugin.o)
    "_OBJC_CLASS_$_ArchDetect", referenced from:
        objc-class-ref in flutter_ffmpeg(FlutterFfmpegPlugin.o)
  ld: symbol(s) not found for architecture armv7
  clang: error: linker command failed with exit code 1 (use -v to see invocation)

xcode run to real device(eg.iPad4) is ok,but build->Generic iOS Device is error.

Unable to make video from images in Nokia 6 phone.

Description
I am trying to make video from images but it is not working in Nokia 6 ophone. It is working fine in motoroal phone. Can you please help me to fix this problem?

It returns rc code 1 and nothing happens.

Getting standard output

Currently, getLastCommandOutput() returns ffmpeg's error output, but AFAIK there is no way to get the standard (raw) output. This would be useful in order to convert a file to a memory buffer instead of having to write it to a temporary file just to read the file again.

Can not use list_devices?

Description
It seems that flutter-ffmpeg can not use ffmpeg -list_devices true command.

Expected behavior
List the device, such as android camera.

Current behavior
Unrecognized option 'list_devices'

Environment
Channel stable, v1.2.1, on Microsoft Windows [Version 10.0.14393], locale zh-CN
Android SDK version 28.0.3

Other
Some way to publish rtmp stream from camera?

`perspective` error

Description
When I use perspective, I will get an error.
ffmpeg -i input.mp4 -y -vf "perspective=-100:-100:1200:0:0:1600:900:1920:enable='not(between(t,0,0))'" -c:a copy output.mp4

error:

No such filter: 'perspective'

[Question] Any way to easy remove unneeded native libraries from the build?

Hi,

once again great plugin! It helps me a lot with project I'm currently working on. Thanks!

[I did my tests only on Android, I'm not sure how to measure iOS - but maybe You will have some ideas how to solve this problem on iOS too?]

I have a question related to the output app size. Adding this plugin to project increasing my app size a lot. I did some tests (using apk analyzer) and turns out that this plugin adds a lot of native libraries:
native_libraries

As You can see, some of them are really heavy, and when we sum up them they are more than 60% of app size. I'm using current Github development branch as a plugin source.

Is there any easy way to remove unneeded native libraries? For example, in my app I just want to merge a couple of jpg files into one .mp4 file (using mpeg4 codec) and add background music to it from .aac file.
I guess that I'm using only a small part of those libraries.
If there is no option to configure this plugin, can You help me with detection which library is for what? There is an option to exclude files from Gradle build file https://stackoverflow.com/a/37110505/2372631 so maybe I will be able to use this as a workaround (if only I will know what is safe to exclude).

Greetings!

see "use_frameworks!" problem

I'm happy to see this problem, because there is a solution at last, but I'm not a professional IOS development engineer. I can't complete the steps described in the problem to achieve the final result. I hope I can perfect a very beautiful example.

How to expand kind of codec ?

Description
I want about using mp3 and its codec libmp3lame. but it doesn't have this codec or lib

Logs
Unknown encoder 'libmp3lame'

Environment
flutter_ffmpeg:
git:
url: git://github.com/tanersener/flutter-ffmpeg.git
ref: development

Can't use flutter-ffmpeg in Android 6

error while running

Execution failed for task ':app:processDebugManifest'.

Manifest merger failed : uses-sdk:minSdkVersion 23 cannot be smaller than version 24 declared in library [:flutter_ffmpeg]

How can i use this plugin in Android 6 or 5.
Thanks in advance.

Can't build for iOS

Description
Can't build for iOS

Expected behavior
I'm able to build for iOS

Current behavior
When running flutter build ios

Building social.openbook.app for device (ios-release)...
Automatically signing iOS for device deployment using specified development team
in Xcode project: GAR7B57RXU
Running pod install...                                              3.1s
Running Xcode build...

Xcode build done.                                            2.6s
Failed to build iOS app
Error output from Xcode build:
↳
    ** BUILD FAILED **


Xcode's output:


↳
    === BUILD TARGET Pods-Runner OF PROJECT Pods WITH CONFIGURATION Release ===
    ld: warning: linking against a dylib which is not safe for use in application
    extensions:
    /Users/lifenautjoe/Documents/code/libraries/flutter/bin/cache/artifacts/engine
    /ios-release/Flutter.framework/Flutter
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /gmp.framework/gmp, missing required architecture armv7 in file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /gmp.framework/gmp (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /gnutls.framework/gnutls, missing required architecture armv7 in file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /gnutls.framework/gnutls (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libavcodec.framework/libavcodec, missing required architecture armv7 in file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libavcodec.framework/libavcodec (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libavdevice.framework/libavdevice, missing required architecture armv7 in
    file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libavdevice.framework/libavdevice (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libavfilter.framework/libavfilter, missing required architecture armv7 in
    file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libavfilter.framework/libavfilter (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libavformat.framework/libavformat, missing required architecture armv7 in
    file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libavformat.framework/libavformat (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libavutil.framework/libavutil, missing required architecture armv7 in file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libavutil.framework/libavutil (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libcharset.framework/libcharset, missing required architecture armv7 in file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libcharset.framework/libcharset (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libhogweed.framework/libhogweed, missing required architecture armv7 in file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libhogweed.framework/libhogweed (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libiconv.framework/libiconv, missing required architecture armv7 in file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libiconv.framework/libiconv (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libswresample.framework/libswresample, missing required architecture armv7 in
    file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libswresample.framework/libswresample (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libnettle.framework/libnettle, missing required architecture armv7 in file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libnettle.framework/libnettle (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libswscale.framework/libswscale, missing required architecture armv7 in file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /libswscale.framework/libswscale (3 slices)
    ld: warning: ignoring file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /mobileffmpeg.framework/mobileffmpeg, missing required architecture armv7 in
    file
    /Users/lifenautjoe/Documents/code/okuna/okuna-app/ios/Pods/mobile-ffmpeg-https
    /mobileffmpeg.framework/mobileffmpeg (3 slices)
    Undefined symbols for architecture armv7:
      "_OBJC_CLASS_$_MobileFFmpegConfig", referenced from:
          objc-class-ref in libflutter_ffmpeg.a(FlutterFfmpegPlugin.o)
      "_OBJC_CLASS_$_MobileFFmpeg", referenced from:
          objc-class-ref in libflutter_ffmpeg.a(FlutterFfmpegPlugin.o)
      "_OBJC_CLASS_$_ArchDetect", referenced from:
          objc-class-ref in libflutter_ffmpeg.a(FlutterFfmpegPlugin.o)
    ld: symbol(s) not found for architecture armv7
    clang: error: linker command failed with exit code 1 (use -v to see
    invocation)

Environment
Flutter doctor

[✓] Flutter (Channel dev, v1.9.7, on Mac OS X 10.14.6 18G84, locale en-NL)
    • Flutter version 1.9.7 at /Users/lifenautjoe/Documents/code/libraries/flutter
    • Framework revision 4984d1a33d (7 days ago), 2019-08-28 17:04:07 -0700
    • Engine revision f52c0b9270
    • Dart version 2.5.0

[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
    • Android SDK at /Users/lifenautjoe/Library/Android/sdk
    • Android NDK location not configured (optional; useful for native profiling
      support)
    • Platform android-29, build-tools 28.0.3
    • Java binary at: /Applications/Android
      Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 10.2)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 10.2, Build version 10E125
    • CocoaPods version 1.7.5

[✓] Android Studio (version 3.3)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin version 33.4.1
    • Dart plugin version 182.5215
    • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01)

[✓] IntelliJ IDEA Ultimate Edition (version 2018.3.5)
    • IntelliJ at /Applications/IntelliJ IDEA.app
    • Flutter plugin version 33.3.2
    • Dart plugin version 183.5912.23

[✓] Connected device (1 available)
    • 🥑 • 1d548d079169fde4d329284ea2448a5b8982eaf3 • ios • iOS 12.4

Camera access

Wich release has camera accces? (if any) it is not clear in documentacion, what does "x" and "-" mean?

Main Release | LTS Release
Android API Level | 24 | 21
Android Camera Access | x | -

Width/height problem

Description
The width and height are occasionally flipped. I have noticed
"rotate" -> "90" and "displaymatrix" -> "rotation of -90.00 degrees" are present in the meta data returned.

Expected behavior
Is this a bug? if it is, is there a short term bug free method of using the rotate/display matrix to determine the true width/height of the video?

Current behavior
The width and the height are sometimes opposite.

Crash on iOS

The app is crashing sometimes in iOS when I call getMediaInformation(path). And it has no error message, it just totally crash. It's working fine in android.

Future<Map<dynamic, dynamic>> getMediaInformation(String path) async {
    return await _flutterFFmpeg.getMediaInformation(path);
  }

AndroidX issue

Hi, there:
when I try to import it into my project, it always has this error:

Android resource linking failed
warn: removing resource xxx:plurals/error_over_count without required default value.
warn: removing resource xx:string/error_over_original_count without required default value.
warn: removing resource xx:string/error_over_original_size without required default value.
/Users/xxx/.gradle/caches/transforms-1/files-1.1/appcompat-1.0.0-beta01.aar/a72b39a6c9ce382df7d164bcabc15bdd/res/values-v28/values-v28.xml:9:5-12:13: AAPT: error: resource android:attr/dialogCornerRadius not found.

/Users/xxx/Desktop/work/xxx/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v28/values-v28.xml:11: AAPT: error: resource android:attr/dialogCornerRadius not found.

/Users/xxx/.gradle/caches/transforms-1/files-1.1/design-26.1.0.aar/9482e8475c07035520c8d8edf16e5ac6/res/values/values.xml:159:5-202: AAPT: error: resource android:attr/fontVariationSettings not found.

/Users/xxx/.gradle/caches/transforms-1/files-1.1/design-26.1.0.aar/9482e8475c07035520c8d8edf16e5ac6/res/values/values.xml:159:5-202: AAPT: error: resource android:attr/ttcIndex not found.

error: failed linking references.


The Gradle failure may have been because of AndroidX incompatibilities in this Flutter app.
See https://goo.gl/CP92wY for more information on the problem and how to fix it.


that says I have to upgrade my whole flutter project to AndroidX, but right now, I can't , any suggestion.

Thanks

Always fill the issue template

It is not possible to find the cause of an error without knowing the details of your environment, without understanding what you are trying to achieve or which steps failed for you.

So, please fill out the issue template provided when creating an issue. Issues which do not fill out the issue template are ignored.

error minsdk24

the project have minds 21 and targetsdk 28

when run build
flutter build app --release
have this error

  • What went wrong:
    Execution failed for task ':app:processReleaseManifest'.

Manifest merger failed : uses-sdk:minSdkVersion 21 cannot be smaller than version 24 declared in library [com.arthenica:mobile-ffmpeg-https:4.2.1] /Users/YahiaAgwa/.gradle/caches/transforms-1/files-1.1/mobile-ffmpeg-https-4.2.1.aar/a7b6ca1ab27c2612e90bb9e88826dd44/AndroidManifest.xml as the library might be using APIs not available in 21
Suggestion: use a compatible library with a minSdk of at most 21,
or increase this project's minSdk version to at least 24,
or use tools:overrideLibrary="com.arthenica.mobileffmpeg" to force usage (may lead to runtime failures)

filter_complex

Description
Can't get filter_complex to work properly

Expected behavior
Final video should have both moved_video's audio and moved_audio's audio

Current behavior
The result.mp4's audio is the same as moved_video.mp4's audio

Screenshots

Logs

D/flutter-ffmpeg(25786): Running FFmpeg with arguments: [-i, /data/user/0/com.gotyalabs.video_transform/cache/moved_video.mp4, -i, /data/user/0/com.gotyalabs.video_transform/cache/moved_audio.mp3, -filter_complex, [0:a][1:a]amerge=inputs=2[a], -map, 0:v, -map, [a], -c:v, copy, -c:a, aac, -strict, experimental, -b:a, 192k, -ac, 2, -shortest, /data/user/0/com.gotyalabs.video_transform/cache/result.mp4].
I/flutter (25786): ffmpeg version v4.2-dev-1156
I/flutter (25786):  Copyright (c) 2000-2019 the FFmpeg developers
I/flutter (25786): 
I/flutter (25786):   built with Android (5058415 based on r339409) clang version 8.0.2 (https://android.googlesource.com/toolchain/clang 40173bab62ec746213857d083c0e8b0abb568790) (https://android.googlesource.com/toolchain/llvm 7a6618d69e7e8111e1d49dc9e7813767c5ca756a) (based on LLVM 8.0.2svn)
I/flutter (25786):   configuration: --cross-prefix=i686-linux-android- --sysroot=/files/android-sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/sysroot --prefix=/home/taner/Projects/mobile-ffmpeg/prebuilt/android-x86/ffmpeg --pkg-config=/usr/bin/pkg-config --enable-version3 --arch=i686 --cpu=i686 --cc=i686-linux-android24-clang --cxx=i686-linux-android24-clang++ --target-os=android --disable-neon --disable-asm --disable-inline-asm --enable-cross-compile --enable-pic --enable-jni --enable-optimizations --enable-swscale --enable-shared --disable-v4l2-m2m --disable-outdev=v4l2 --disable-outdev=fbdev --disable-indev=v4l2 --disable-indev=fbdev --enable-small --disable-openssl --disable-xmm-clobber-test --disable-debug --enable-lto --disable-neon-clobber-test --disable-programs --disable-postproc --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-static --disable-sndio --disable-schannel --disable-securetransport --disable-xlib --disable-cuda --disable-cuvid --disable-nvenc --di
I/flutter (25786):   libavutil      56. 26.100 / 56. 26.100
I/flutter (25786):   libavcodec     58. 47.106 / 58. 47.106
I/flutter (25786):   libavformat    58. 26.101 / 58. 26.101
I/flutter (25786):   libavdevice    58.  7.100 / 58.  7.100
I/flutter (25786):   libavfilter     7. 48.100 /  7. 48.100
I/flutter (25786):   libswscale      5.  4.100 /  5.  4.100
I/flutter (25786):   libswresample   3.  4.100 /  3.  4.100
D/flutter-ffmpeg(25786): FFmpeg exited with rc: 1
I/flutter (25786): Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/data/user/0/com.gotyalabs.video_transform/cache/moved_video.mp4':
I/flutter (25786): EXECUTED
I/flutter (25786): FROM ASSETS
I/flutter (25786): FFmpeg process exited with rc 1
I/ExoPlayerImpl(25786): Release 7e7f9dd [ExoPlayerLib/2.9.6] [generic_x86, Android SDK built for x86, Google, 28] [goog.exo.core]
I/flutter (25786):   Metadata:
I/flutter (25786):     major_brand     : 
D/SurfaceUtils(25786): disconnecting from surface 0xbe5fa008, reason disconnectFromSurface
D/gralloc_ranchu(25786): gralloc_unregister_buffer: exiting HostConnection (is buffer-handling thread)
D/        (25786): HostConnection::get() New Host Connection established 0xc93fcc00, tid 25844
I/flutter (25786): isom
D/gralloc_ranchu(25786): gralloc_unregister_buffer: exiting HostConnection (is buffer-handling thread)
D/        (25786): HostConnection::get() New Host Connection established 0xc93fcc00, tid 25844
D/gralloc_ranchu(25786): gralloc_unregister_buffer: exiting HostConnection (is buffer-handling thread)
D/        (25786): HostConnection::get() New Host Connection established 0xc93fcc00, tid 25844
I/flutter (25786): 
D/gralloc_ranchu(25786): gralloc_unregister_buffer: exiting HostConnection (is buffer-handling thread)
D/        (25786): HostConnection::get() New Host Connection established 0xc93fcc00, tid 25844
I/flutter (25786):     minor_version   : 
D/gralloc_ranchu(25786): gralloc_unregister_buffer: exiting HostConnection (is buffer-handling thread)
D/        (25786): HostConnection::get() New Host Connection established 0xc93fcc00, tid 25844
D/gralloc_ranchu(25786): gralloc_unregister_buffer: exiting HostConnection (is buffer-handling thread)
I/flutter (25786): 512
I/flutter (25786): 
I/flutter (25786):     compatible_brands: 
I/flutter (25786): isomiso2avc1mp41
I/flutter (25786): 
I/flutter (25786):     creation_time   : 
I/flutter (25786): 1970-01-01T00:00:00.000000Z
I/ExoPlayerImpl(25786): Init 2ef56d9 [ExoPlayerLib/2.9.6] [generic_x86, Android SDK built for x86, Google, 28]
I/flutter (25786): 
I/flutter (25786):     encoder         : 
I/flutter (25786): Lavf53.24.2
I/flutter (25786): 
I/flutter (25786):   Duration: 
I/flutter (25786): 00:00:13.50
I/flutter (25786): , start: 
I/flutter (25786): 0.000000
I/flutter (25786): , bitrate: 
I/flutter (25786): 1248 kb/s
I/flutter (25786): 
I/flutter (25786):     Stream #0:0
I/flutter (25786): (und)
I/flutter (25786): : Video: h264 (avc1 / 0x31637661), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 862 kb/s
I/flutter (25786): , 
I/flutter (25786): 25 fps, 
I/flutter (25786): 25 tbr, 
I/flutter (25786): 12800 tbn, 
I/flutter (25786): 50 tbc
I/flutter (25786):  (default)
I/flutter (25786): 
I/flutter (25786):     Metadata:
I/flutter (25786):       creation_time   : 
I/flutter (25786): 1970-01-01T00:00:00.000000Z
I/flutter (25786): 
I/flutter (25786):       handler_name    : 
I/flutter (25786): VideoHandler
I/flutter (25786): 
D/MediaCodecInfo(25786): NoSupport [sizeAndRate.support, 1280x720x-1.0] [OMX.google.mpeg4.decoder, video/mp4v-es] [generic_x86, Android SDK built for x86, Google, 28]
D/MediaCodecInfo(25786): NoSupport [sizeAndRate.support, 1280x720x-1.0] [OMX.google.mpeg4.decoder, video/mp4v-es] [generic_x86, Android SDK built for x86, Google, 28]
I/flutter (25786):     Stream #0:1
I/flutter (25786): (und)
I/flutter (25786): : Audio: aac (mp4a / 0x6134706D), 48000 Hz, 5.1, fltp, 381 kb/s
I/flutter (25786):  (default)
I/flutter (25786): 
I/flutter (25786):     Metadata:
I/flutter (25786):       creation_time   : 
I/flutter (25786): 1970-01-01T00:00:00.000000Z
I/flutter (25786): 
I/flutter (25786):       handler_name    : 
I/flutter (25786): SoundHandler
I/OMXClient(25786): IOmx service obtained
D/SurfaceUtils(25786): connecting to surface 0xcd07e008, reason connectToSurface
I/MediaCodec(25786): [OMX.google.mpeg4.decoder] setting surface generation to 26404866
D/SurfaceUtils(25786): disconnecting from surface 0xcd07e008, reason connectToSurface(reconnect)
D/SurfaceUtils(25786): connecting to surface 0xcd07e008, reason connectToSurface(reconnect)
E/ACodec  (25786): [OMX.google.mpeg4.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010
I/ACodec  (25786): codec does not support config priority (err -1010)
I/flutter (25786): 
I/flutter (25786): Input #1, mp3, from '/data/user/0/com.gotyalabs.video_transform/cache/moved_audio.mp3':
I/flutter (25786):   Metadata:
I/flutter (25786):     genre           : 
I/flutter (25786): Cinematic
I/flutter (25786): 
I/flutter (25786):     album           : 
I/flutter (25786): YouTube Audio Library
I/flutter (25786): 
I/flutter (25786):     title           : 
I/flutter (25786): Impact Moderato
I/flutter (25786): 
I/flutter (25786):     artist          : 
I/flutter (25786): Kevin MacLeod
I/flutter (25786): 
I/flutter (25786):   Duration: 
I/flutter (25786): 00:00:27.25
I/flutter (25786): , start: 
I/flutter (25786): 0.034531
I/flutter (25786): , bitrate: 
I/flutter (25786): 224 kb/s
I/flutter (25786): 
I/flutter (25786):     Stream #1:0
I/flutter (25786): : Audio: mp3, 32000 Hz, stereo, fltp, 224 kb/s
I/flutter (25786): 
I/flutter (25786):     Metadata:
I/flutter (25786):       encoder         : 
I/flutter (25786): LAME3.99r
I/OMXClient(25786): IOmx service obtained
I/flutter (25786): 
I/flutter (25786): Not overwriting - exiting
D/MediaCodec(25786): [OMX.google.mpeg4.decoder] setting dataspace on output surface to #104
I/ACodec  (25786): codec does not support config priority (err -2147483648)
I/ACodec  (25786): codec does not support config operating rate (err -2147483648)
W/MapperHal(25786): buffer descriptor with invalid usage bits 0x2000
D/        (25786): HostConnection::get() New Host Connection established 0xc43d2a80, tid 25857
D/SoftwareRenderer(25786): setting dataspace on output surface to #104
W/MapperHal(25786): buffer descriptor with invalid usage bits 0x2000
W/MapperHal(25786): buffer descriptor with invalid usage bits 0x2000
D/AudioTrack(25786): stop() called with 648192 frames delivered

Environment
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, v1.5.4-hotfix.2, on Mac OS X 10.13.6 17G65, locale en-AR)
[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
[✓] iOS toolchain - develop for iOS devices (Xcode 10.1)
[✓] Android Studio (version 3.4)
[✓] Connected device (1 available)

• No issues found!

Other
Tested on console, works as expected, the result.mp4 has both audio streams:
ffmpeg -i SampleVideo_1280x720_2mb.mp4 -i test.mp3 -filter_complex "[0:a][1:a]amerge=inputs=2[a]" -map 0:v -map "[a]" -c:v copy -c:a aac -strict experimental -b:a 192k -ac 2 -shortest result.mp4

iOS build failed after adding "use_frameworks!"

My podfile:

platform :ios, '9.3'

target 'Runner' do
use_frameworks!
flutter_application_path = '../'
eval(File.read(File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')), binding)
end
pre_install do |installer|
# workaround for CocoaPods/CocoaPods#3289
Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
end

When I add "use_frameworks!" in podfile I get follow error.

While building module 'flutter_ffmpeg' imported from /Users/aleksandar/Projects/flutter-comment-wall/.ios/Flutter/FlutterPluginRegistrant/Classes/GeneratedPluginRegistrant.m:7:
    In file included from <module-includes>:1:
    In file included from /Users/aleksandar/Projects/flutter-comment-wall/.ios/Pods/Target Support Files/flutter_ffmpeg/flutter_ffmpeg-umbrella.h:13:
    /Users/aleksandar/.pub-cache/git/flutter-ffmpeg-e6631d4ed08b817f44d41ff03469f6ce482feb14/packages/flutter_ffmpeg_min-gpl_lts/ios/Classes/FlutterFFmpegPlugin.h:21:9: error: include of non-modular header
    inside framework module 'flutter_ffmpeg.FlutterFFmpegPlugin': '/Users/aleksandar/Projects/flutter-comment-wall/.ios/Pods/mobile-ffmpeg-min-gpl/mobileffmpeg.framework/Headers/MobileFFmpegConfig.h'
    [-Werror,-Wnon-modular-include-in-framework-module]
    #import <mobileffmpeg/MobileFFmpegConfig.h>
            ^

Pubspec.yaml

git:
  url: git://github.com/tanersener/flutter-ffmpeg.git
  ref: v0.2.3
  path: packages/flutter_ffmpeg_min-gpl_lts

Flutter (Channel stable, v1.5.4-hotfix.2, on Mac OS X 10.14.5 18F203)

After I tried https://stackoverflow.com/questions/27776497/include-of-non-modular-header-inside-framework-module I got this:

Undefined symbols for architecture arm64:
  "_OBJC_CLASS_$_MobileFFmpegConfig", referenced from:
      objc-class-ref in flutter_ffmpeg(FlutterFfmpegPlugin.o)
  "_OBJC_CLASS_$_MobileFFmpeg", referenced from:
      objc-class-ref in flutter_ffmpeg(FlutterFfmpegPlugin.o)
  "_OBJC_CLASS_$_ArchDetect", referenced from:
      objc-class-ref in flutter_ffmpeg(FlutterFfmpegPlugin.o)
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Possible to use libx264?

Hi there,

In the examples, the 'mpeg4' encoder is always used. However, on the internet most examples have 'libx264' which seems to be the norm. However, when I try to use this I always get "Unknown encoder 'libx264'"

Is this because this encoder is not built into the package? If so, what other encoders can I use.

Thanks!

Desktop command doesn't work on mobile

Command that works on the Desktop doesn't work with flutter_ffmpeg

macOS ffmpeg command

ffmpeg -i trudy.mp4 -vf 'fps=1, scale=120:120:force_original_aspect_ratio=decrease' thumb%d.png

Creates a 120 longest side thumbnail for every second of video.

flutter_ffmpeg command

ffmpeg -i /private/var/mobile/Containers/Data/Application/F4CBC902-553E-4240-A852-53178223D235/tmp/9979E51A-DF2B-46E3-AFE6-7A7317CD2A84.MOV -vf 'fps=0.33419977720014854, scale=120:120:force_original_aspect_ratio=decrease' /var/mobile/Containers/Data/Application/F4CBC902-553E-4240-A852-53178223D235/Library/Caches/ffmpeg-thumbnailsXERYzx/thumb%d.png

returns

flutter: Unable to find a suitable output format for 'ffmpeg'
flutter: ffmpeg: Invalid argument

Is this due to the quotes in strings limitation? tanersener/mobile-ffmpeg#190 How am I supposed to do the multiple video filters without strings?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.