首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >B2G/安卓构建错误AudioPolicyService.cpp

B2G/安卓构建错误AudioPolicyService.cpp
EN

Stack Overflow用户
提问于 2013-09-05 03:16:46
回答 1查看 351关注 0票数 0

当我尝试将B2G/firefox操作系统移植到一个新的(HTC desire HD)设备上时,我遇到了这个错误。有人能解释一下它的含义吗?或者如何手动绕过它?这是完整的pastbin。谢谢

代码语言:javascript
复制
target thumb C++: libaudioflinger <= frameworks/base/services/audioflinger/AudioPolicyService.cpp
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: sorry, unimplemented: non-trivial designated initializers not supported
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: warning: missing initializer for member 'audio_policy_service_ops::set_voice_volume'
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: warning: missing initializer for member 'audio_policy_service_ops::move_effects'
frameworks/base/services/audioflinger/AudioPolicyService.cpp:1684: warning: missing initializer for member 'audio_policy_service_ops::set_fm_volume'
make: *** [out/target/product/ace/obj/SHARED_LIBRARIES/libaudioflinger_intermediates/AudioPolicyService.o] Error 1
EN

回答 1

Stack Overflow用户

发布于 2014-01-30 14:58:50

请检查aps_ops是否有更新,如下所示:

命名空间{

代码语言:javascript
复制
struct audio_policy_service_ops aps_ops = {
    open_output           : aps_open_output,
    open_duplicate_output : aps_open_dup_output,
    close_output          : aps_close_output,
    suspend_output        : aps_suspend_output,
    restore_output        : aps_restore_output,
    open_input            : aps_open_input,
    close_input           : aps_close_input,
    set_stream_volume     : aps_set_stream_volume,
    set_stream_output     : aps_set_stream_output,
    set_parameters        : aps_set_parameters,
    get_parameters        : aps_get_parameters,
    start_tone            : aps_start_tone,
    stop_tone             : aps_stop_tone,
    set_voice_volume      : aps_set_voice_volume,
    move_effects          : aps_move_effects,
    set_fm_volume         : aps_set_fm_volume,
    load_hw_module        : aps_load_hw_module,
    open_output_on_module : aps_open_output_on_module,
    open_input_on_module  : aps_open_input_on_module,
};

};//命名空间

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/18621989

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档