Complete list of MediaPlayer error codes

后端 未结 3 1428
小鲜肉
小鲜肉 2020-12-24 06:34

I\'m implementing a MediaPlayer. Everything goes smoothly BUT each time I encounter a new error it can be very hard to find its meaning. The official doc is lac

相关标签:
3条回答
  • 2020-12-24 06:40

    Your can find them in the source code here. And compare your error number with every constants given there

    0 讨论(0)
  • 2020-12-24 06:48

    Just go through these pvmf return codes and the complete explanation of each error.

    0 讨论(0)
  • 2020-12-24 07:01

    There are several places where the errors are defined.

    • In theory, everything should be defined in MediaPlayer.java
    • but some codes are just defined in C, and not accessible in the Java land, see MediaErrors.h
    • and also pvmf_return_codes.h
    0 讨论(0)
提交回复
热议问题