|
|
|
|
@ -818,7 +818,8 @@ public final class IjkMediaPlayer extends AbstractMediaPlayer { |
|
|
|
|
player.notifyOnInfo(msg.arg1, msg.arg2); |
|
|
|
|
return; |
|
|
|
|
case MEDIA_TIMED_TEXT: |
|
|
|
|
player.notifyOnTimedText(IjkTimedText.create((msg.arg1 >= 2 || msg.obj == null) ? "" : msg.obj.toString())); |
|
|
|
|
player.notifyOnTimedText(msg.obj == null ? null : IjkTimedText.create(msg.obj.toString())); |
|
|
|
|
//player.notifyOnTimedText(IjkTimedText.create((msg.arg1 >= 2 || msg.obj == null) ? "" : msg.obj.toString()));
|
|
|
|
|
return; |
|
|
|
|
case MEDIA_NOP: // interface test message - ignore
|
|
|
|
|
break; |
|
|
|
|
|