2012-01-29 3 views
0

Как я могу передавать аудио с mms: // address?
Я пытаюсь построить WunderRadio на устройстве iOS 5, но у меня много ошибок. я получил эту ошибку, когда я пытался построить цель WunderRadio:Звук MMS на iOS 5

Undefined symbols for architecture armv7: 
"_Status_SetNewStatusByKey", referenced from: 
    -[WunderRadioAppDelegate applicationDidReceiveMemoryWarning:] in WunderRadioAppDelegate.o 
"_OBJC_CLASS_$_WebAudioPlayer", referenced from: 
objc-class-ref in SkinViewController.o 
"_Status_GetCurrentStatus", referenced from: 
    -[LevelMeterView updateBargraph:] in LevelMeterView.o 
"_gStreamingAudioPlayerTimerMax", referenced from: 
    -[PreferenceViewController initWithNibName:bundle:] in PreferenceViewController.o 
    -[PreferenceViewController makemp3Buffer:] in PreferenceViewController.o 
"_Status_SetNewStatusString", referenced from: 
    -[SkinViewController setShowingPlay:] in SkinViewController.o 
"_CMAudioPlayerAudioIsAvailableNotification", referenced from: 
    -[DebugController gotRunNotification:] in DebugController.o 
    -[DebugController gotLngNotification:] in DebugController.o 
"_ExpandString", referenced from: 
    -[DebugController runPressed:] in DebugController.o 
    -[DebugController lngPressed:] in DebugController.o 
    -[SkinViewController expandString:] in SkinViewController.o 
"_OBJC_CLASS_$_URLBackgroundOperation", referenced from: 
    objc-class-ref in SkinViewController.o 
"_CMAudioPlayerAudioIsDoneNotification", referenced from: 
    -[DebugController gotLngNotification:] in DebugController.o 
"_OBJC_CLASS_$_RadioTimeBrowser", referenced from: 
    objc-class-ref in WunderRadioAppDelegate.o 
    objc-class-ref in SkinViewController.o 
"_OBJC_CLASS_$_Reachability", referenced from: 
    objc-class-ref in WunderRadioAppDelegate.o 
"_CMAudioPlayerAudioDidStopNotification", referenced from: 
    -[DebugController gotLngNotification:] in DebugController.o 
    -[SkinViewController initWithNibName:bundle:] in SkinViewController.o 
"_OBJC_CLASS_$_EnhancedAlertView", referenced from: 
    objc-class-ref in DebugController.o 
"_OBJC_CLASS_$_FavoriteViewController", referenced from: 
    objc-class-ref in WunderRadioAppDelegate.o 
"_OBJC_CLASS_$_WXRadioItem", referenced from: 
    objc-class-ref in WunderRadioAppDelegate.o 
    objc-class-ref in SkinViewController.o 
"_CMAudioPlayerAudioDidPlayNotification", referenced from: 
    -[SkinViewController initWithNibName:bundle:] in SkinViewController.o 
"_OBJC_CLASS_$_WBSettingsManager", referenced from: 
    objc-class-ref in WunderRadioAppDelegate.o 
    objc-class-ref in PreferenceViewController.o 
"_OBJC_CLASS_$_MusicViewController", referenced from: 
    objc-class-ref in WunderRadioAppDelegate.o 
"_OBJC_CLASS_$_WebViewController", referenced from: 
    objc-class-ref in WunderRadioAppDelegate.o 
"_OBJC_CLASS_$_SettingsAndKeyChainStorage", referenced from: 
    objc-class-ref in WunderRadioAppDelegate.o 
    objc-class-ref in DebugController.o 
    objc-class-ref in SkinViewController.o 
ld: symbol(s) not found for architecture armv7 
collect2: ld returned 1 exit status 

Любые идеи, чтобы решить эту проблему или другие решения для потоковой передачи ммс: //?

Благодаря

+0

Вы не располагаете достаточной информацией, чтобы помочь вам. В целом, похоже, что в вашем проекте отсутствует несколько файлов реализации. Используете ли вы стороннюю библиотеку или какой-либо предварительный проект в своем приложении? – Till

+0

Да, я использую проекты WunderRadio, последнюю версию: http://wunderradio.com/code.html Я использую эту ссылку (для ios 4.2) для сборки: http://jackieqi.wordpress.com/2010/11/ 29/build-wunder-radio-1-9-on-xcode-3-2-5-and-ios-sdk-4-2/​​ – enfix

+0

Знаете ли вы, что этот проект WunderRadio в основном представляет собой простую оболочку FFMPEG, которая как известно, не соответствуют условиям лицензирования Apple iTunes? -> ваш проект, возможно, будет отклонен при использовании этого материала. – Till

ответ

0

«_Status_SetNewStatusByKey» не определен в любом месте (есть на самом деле предупреждение об этом)

Вы можете удалить его, он удаляется в новых версиях в любом случае.

Смежные вопросы