Android ServiceManager Waiting for service media.audio_flinger
I am working on an application that uses a video view to show a video. The video plays fine but for some reason on my G2 I am having an issue where after I close the app it will crash if I start it again. My Log is getting flooded with these calls:
These two stop if I manually force close my app.
INFO/ServiceManager(9007): Waiting for sevice media.player...
WARN/IMediaDeathNotifier(9007): Media player service not published, waiting...
These two just keep flooding in. I can't seem to find a way to get them to stop actually, short of restarting my device. The top one is appearing more often, at a rate of 5 to 1.
INFO/ServiceManager(1302): Waiting for sevice media.audio_flinger...
开发者_运维技巧WARN/AudioSystem(1302): AudioFlinger not published, waiting...
Does anyone have any clue as to what might cause this behavior? Is there some sort of resources associated to VideoView that I should be releasing?
This same app works just fine and does not do this on my Galaxy Tablet.
Edit: This is actually causing any app that tries to use play media to timeout forceclose including the stock android Music app.
精彩评论