stream windows media content to iPhone App

2019-09-12 17:24发布

I am currently working on a streaming app which should receive a Windows Media Video stream. I am using libmms to encode the stream.

I took the Wunderradio as reference project. When trying to build the app I get the following error:

Undefined symbols for architecture armv7: "_Status_SetNewStatusString", referenced from: _report_progress in liblibmms.a(mms.o) "_gStopFFMPEG", referenced from: _fallback_io_read in liblibmms.a(mms.o) ld: symbol(s) not found for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see invocation)

Maybe someone knows what it means and how to fix it?

Thanks for any kind of help and have a nice day., MrBr.

2条回答
欢心
2楼-- · 2019-09-12 17:56

"_Status_SetNewStatusString" is not defined in the mms.c, there's a warning about it

You can delete it, it's not used in the new versions anyway.

查看更多
兄弟一词,经得起流年.
3楼-- · 2019-09-12 17:58

This error occured because of not including the dependencies of the FFMPEG library into the project.

After including it the error is gone and it builds without compiler errors.

查看更多
登录 后发表回答