Miguel Borges de Freitas

Results 148 comments of Miguel Borges de Freitas

@emveepee still relevant for omega?

Removing the macOS label as this is a general bug related to Kodi UI resize happens on multiple platforms (unsure if it affects windows or only gl)

@worksg please fill the "To reproduce" section properly, you don't provide any info regarding the way to reproduce. What file are you trying to cast/stream and via what app? What...

I don't think you can solve this (searched a lot back then). Afaik this is handled internally in the os for a list of authorized apps only...

They use https://github.com/nevyn/SPMediaKeyTap if memory serves me well

> > Maybe an internal AVPlayer object that does nothing can help. > > my assumption was almost correct: in a sample project I can control AVPlayer with the play/pause...

> > Unfortunately I don't have much time at the moment > > no problem of course, you're not obliged to implement it :) > > > really a small...

> > I believe the lib only does this to resign the key to other apps if the app is not focused and another one was focused before > >...

hey @sarbes unfortunately [128145148d19de3cbd282ece3f5f4a62d0ee449e](https://github.com/xbmc/xbmc/pull/24508/commits/128145148d19de3cbd282ece3f5f4a62d0ee449e) caused a regression for teletext in Android: ![image](https://github.com/xbmc/xbmc/assets/7375276/c751ce7c-caaa-4036-83d5-37a68e111a7c) Can you please take a look at what could have been the problem? Sorry for just noticing this...

Seems that replacing (https://github.com/xbmc/xbmc/pull/24508/commits/128145148d19de3cbd282ece3f5f4a62d0ee449e#diff-88cdcf1e381bae35b048066ed25c1e7996e70bdf5ab0d703daa26608c65e5342R35-R36): ``` if (!CServiceBroker::GetRenderSystem()->SupportsNPOT((m_textureFormat & KD_TEX_FMT_TYPE_MASK) != KD_TEX_FMT_S3TC)) ``` with ``` if (!CServiceBroker::GetRenderSystem()->SupportsNPOT((m_format & XB_FMT_DXT_MASK) != 0)) ``` Fixes the problem. Or, in other words, avoiding this...