| 797 | } |
| 798 | |
| 799 | LSResult BEAVPlayer::LsErrorHandler(LSResult error, LSSession *session, LSStreamlist *streamlist, LSStreamfile *streamfile, void *userdata) |
| 800 | { |
| 801 | if (error != LS_STREAMFILE_ERROR_ABORTED) |
| 802 | { |
| 803 | SCE_DBG_LOG_ERROR("[LsErrorHandler] %d", error); |
| 804 | s_liblsInterface.lsSetErrorHandler(0xFFFFFFFF, NULL, NULL); |
| 805 | (static_cast<BEAVPlayer *>(userdata))->SetInitState(InitState_InitFail); |
| 806 | } |
| 807 | return LS_OK; |
| 808 | } |
| 809 | |
| 810 | LSResult BEAVPlayer::LsStatusHandler(LSStatus status, LSSession *session, LSStreamlist *streamlist, LSStreamfile *streamfile, void *userdata) |
| 811 | { |
nothing calls this directly
no test coverage detected