0

B2G/firefox os を新しい (HTC Desire HD) デバイスに移植しようとしているときに、このエラーが発生しました。誰かがそれの意味や手動でバイパスする方法を説明できますか? これが完全な パスビンです。ありがとうございました

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
4

1 に答える 1

0

aps_ops が以下のように更新されているかどうかを確認してください。

名前空間 {

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,
};

}; // 名前空間

于 2014-01-30T06:58:49.997 に答える