13

who can please explain what it is? I use adb

W/IMGMapper(21885): set:488 set: Unset optional value from type CTA861_3 W/IMGMapper(21885): set:488 set: Unset optional value from type SMPTE2094_40

PogDev
  • 151
  • 3
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Jan 30 '23 at 07:29
  • yor need to run android app over wifi in android studio? – Esmaeil Ahmadipour Jan 30 '23 at 08:28
  • 4
    It seems some android source code files like [this file](https://android.googlesource.com/platform/frameworks/av/+/master/media/codec2/sfplugin/Codec2Buffer.cpp) or [this one](https://cs.android.com/android/platform/superproject/+/master:out/soong/.intermediates/hardware/interfaces/graphics/mapper/4.0/android.hardware.graphics.mapper@4.0_genc++_headers/gen/android/hardware/graphics/mapper/4.0/IMapper.h;l=468;drc=85468a34f119e699f604718701d2ff8721d3105c) contain the types mentioned in the warning messages `SMPTE2094_40 SMPTE2086 CTA861_3`. However, I don't know why nor how to get rid of them. – luvzfootball Jan 31 '23 at 10:24
  • Using Xamarin Android I'm seeing these messages in my output window as well. Would love to get rit of it, because it really happens a lot. – Sander Feb 07 '23 at 10:10
  • I have a similar issue with Android jetpack compose. Didn't notice it in the logs before but recently it's all over and spamming – HaMiD Sani Feb 17 '23 at 05:38
  • 3
    Similar issue here with my cordova app... i get same 3 messages over and over IMGMapper W set:488 set: Unset optional value from type SMPTE2086, * CTA861_3, * SMPTE2094_40 – Michael Fever Mar 23 '23 at 11:59

3 Answers3

4

I have a workaround.

If you are working in Android Studio, you can fight back against this message from spamming your console by doing the following.

When the app is launched and you see these three messages spamming, right click on one of the messages, and click Fold Lines Like This. Screenshot of console showing a context menu open with a highlighted option for 'fold lines like this'.

You will be prompted to add a new rule for folding console lines. Accept the new rule by clicking OK. Screenshot of Android Studio window open for adding a new console fold rule.

After repeating this for the following two IMGMapper lines, your console will look much better! Screenshot of Android Studio window open with all three console fold rules in place.

I know it's not a real solution. But if this issue is still haunting you, this workaround may help. I figure other IDEs must also have filtering options for the console as well.

Fraune
  • 74
  • 4
1

My workaround is to right-click on my app's tag and specifically add it to the filter so everything else is filtered out. Still not a solution though.

enter image description here

HaMiD Sani
  • 360
  • 4
  • 19
0

A solution whilst in the midst of another problem presented itself.

Disable the following setting: Settings -> Build, Execution, Deployment -> Debugger -> "Enable adb mDNS for wireless debugging"

I no longer have those log items and also my device does not disconnect, all my problems solved with one tickbox.

more information in: Android Studio Disconnects From Physical Device

Ozoid
  • 149
  • 1
  • 11