实例介绍
opencore框架实现wav和amr的转换 AmrInputStream AmrInputStream AmrInputStream
【实例截图】
【核心代码】
opencore框架实现wav和amr的转换
└── zzAmr
├── AndroidManifest.xml
├── bin
│ ├── AndroidManifest.xml
│ ├── R.txt
│ ├── classes
│ │ ├── android
│ │ │ └── support
│ │ │ └── v7
│ │ │ └── appcompat
│ │ │ ├── R$anim.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$bool.class
│ │ │ ├── R$color.class
│ │ │ ├── R$dimen.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$integer.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$string.class
│ │ │ ├── R$style.class
│ │ │ ├── R$styleable.class
│ │ │ └── R.class
│ │ └── com
│ │ └── hikvh
│ │ └── media
│ │ ├── AmrInputStream.class
│ │ ├── BuildConfig.class
│ │ ├── KCacheUtils.class
│ │ ├── MainActivity$1.class
│ │ ├── MainActivity$2.class
│ │ ├── MainActivity.class
│ │ ├── R$anim.class
│ │ ├── R$attr.class
│ │ ├── R$bool.class
│ │ ├── R$color.class
│ │ ├── R$dimen.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$integer.class
│ │ ├── R$layout.class
│ │ ├── R$menu.class
│ │ ├── R$string.class
│ │ ├── R$style.class
│ │ ├── R$styleable.class
│ │ ├── R.class
│ │ ├── WavUtils.class
│ │ ├── amr
│ │ │ ├── AmrDecoder.class
│ │ │ ├── AmrEncoder$Mode.class
│ │ │ └── AmrEncoder.class
│ │ └── sound
│ │ ├── Codec.class
│ │ ├── Filer.class
│ │ ├── Recorder.class
│ │ ├── SoundMan$1.class
│ │ ├── SoundMan$SingletonHolder.class
│ │ ├── SoundMan.class
│ │ ├── Supporter$AmrConsumer.class
│ │ ├── Supporter$FileConsumer.class
│ │ ├── Supporter$OnOffSwitcher.class
│ │ ├── Supporter$PcmConsumer.class
│ │ ├── Supporter.class
│ │ └── Uploader.class
│ ├── classes.dex
│ ├── dexedLibs
│ │ ├── android-support-v4-e32ff8b8da47f91b2b2e0d0a5e9b9432.jar
│ │ └── appcompat_v7-9424afcf2afcc25d94d14e902fe5d492.jar
│ ├── jarlist.cache
│ ├── res
│ │ └── crunch
│ │ ├── drawable-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ └── ic_launcher.png
│ │ └── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── resources.ap_
│ └── zzAmr.apk
├── gen
│ ├── android
│ │ └── support
│ │ └── v7
│ │ └── appcompat
│ │ └── R.java
│ └── com
│ └── hikvh
│ └── media
│ ├── BuildConfig.java
│ └── R.java
├── ic_launcher-web.png
├── jni
│ ├── Android.mk
│ ├── Application.mk
│ ├── amr_decoder.cpp
│ ├── amr_encoder.cpp
│ ├── interf_dec.h
│ ├── interf_enc.h
│ ├── opencore
│ │ └── codecs_v2
│ │ └── audio
│ │ └── gsm_amr
│ │ ├── amr_nb
│ │ │ ├── common
│ │ │ │ ├── Android.mk
│ │ │ │ ├── include
│ │ │ │ │ ├── abs_s.h
│ │ │ │ │ ├── add.h
│ │ │ │ │ ├── az_lsp.h
│ │ │ │ │ ├── basic_op.h
│ │ │ │ │ ├── basic_op_arm_gcc_v5.h
│ │ │ │ │ ├── basic_op_c_equivalent.h
│ │ │ │ │ ├── basicop_malloc.h
│ │ │ │ │ ├── bitno_tab.h
│ │ │ │ │ ├── bitreorder_tab.h
│ │ │ │ │ ├── bytesused.h
│ │ │ │ │ ├── cnst.h
│ │ │ │ │ ├── cnst_vad.h
│ │ │ │ │ ├── d_gain_c.h
│ │ │ │ │ ├── d_gain_p.h
│ │ │ │ │ ├── d_plsf.h
│ │ │ │ │ ├── div_s.h
│ │ │ │ │ ├── dtx_common_def.h
│ │ │ │ │ ├── frame.h
│ │ │ │ │ ├── frame_type_3gpp.h
│ │ │ │ │ ├── gc_pred.h
│ │ │ │ │ ├── get_const_tbls.h
│ │ │ │ │ ├── gmed_n.h
│ │ │ │ │ ├── gsm_amr_typedefs.h
│ │ │ │ │ ├── int_lpc.h
│ │ │ │ │ ├── int_lsf.h
│ │ │ │ │ ├── inv_sqrt.h
│ │ │ │ │ ├── l_add.h
│ │ │ │ │ ├── l_add_c.h
│ │ │ │ │ ├── l_comp.h
│ │ │ │ │ ├── l_extract.h
│ │ │ │ │ ├── l_mac.h
│ │ │ │ │ ├── l_msu.h
│ │ │ │ │ ├── l_mult.h
│ │ │ │ │ ├── l_negate.h
│ │ │ │ │ ├── l_shl.h
│ │ │ │ │ ├── l_shr.h
│ │ │ │ │ ├── l_shr_r.h
│ │ │ │ │ ├── l_sub.h
│ │ │ │ │ ├── log2.h
│ │ │ │ │ ├── log2_norm.h
│ │ │ │ │ ├── lsfwt.h
│ │ │ │ │ ├── lsp.h
│ │ │ │ │ ├── lsp_az.h
│ │ │ │ │ ├── lsp_lsf.h
│ │ │ │ │ ├── lsp_tab.h
│ │ │ │ │ ├── mac_32.h
│ │ │ │ │ ├── mode.h
│ │ │ │ │ ├── mpy_32.h
│ │ │ │ │ ├── mpy_32_16.h
│ │ │ │ │ ├── mult.h
│ │ │ │ │ ├── mult_r.h
│ │ │ │ │ ├── n_proc.h
│ │ │ │ │ ├── negate.h
│ │ │ │ │ ├── norm_l.h
│ │ │ │ │ ├── norm_s.h
│ │ │ │ │ ├── oper_32b.h
│ │ │ │ │ ├── p_ol_wgh.h
│ │ │ │ │ ├── pow2.h
│ │ │ │ │ ├── pred_lt.h
│ │ │ │ │ ├── pvgsmamr.h
│ │ │ │ │ ├── q_plsf.h
│ │ │ │ │ ├── q_plsf_3_tbl.h
│ │ │ │ │ ├── q_plsf_5_tbl.h
│ │ │ │ │ ├── qgain475_tab.h
│ │ │ │ │ ├── qua_gain.h
│ │ │ │ │ ├── qua_gain_tbl.h
│ │ │ │ │ ├── reorder.h
│ │ │ │ │ ├── residu.h
│ │ │ │ │ ├── reverse_bits.h
│ │ │ │ │ ├── round.h
│ │ │ │ │ ├── set_zero.h
│ │ │ │ │ ├── shl.h
│ │ │ │ │ ├── shr.h
│ │ │ │ │ ├── shr_r.h
│ │ │ │ │ ├── sqrt_l.h
│ │ │ │ │ ├── sub.h
│ │ │ │ │ ├── syn_filt.h
│ │ │ │ │ ├── typedef.h
│ │ │ │ │ ├── vad.h
│ │ │ │ │ ├── weight_a.h
│ │ │ │ │ ├── window_tab.h
│ │ │ │ │ └── wmf_to_ets.h
│ │ │ │ └── src
│ │ │ │ ├── add.cpp
│ │ │ │ ├── az_lsp.cpp
│ │ │ │ ├── bitno_tab.cpp
│ │ │ │ ├── bitreorder_tab.cpp
│ │ │ │ ├── bits2prm.cpp
│ │ │ │ ├── c2_9pf_tab.cpp
│ │ │ │ ├── copy.cpp
│ │ │ │ ├── div_32.cpp
│ │ │ │ ├── div_s.cpp
│ │ │ │ ├── extract_h.cpp
│ │ │ │ ├── extract_l.cpp
│ │ │ │ ├── gains_tbl.cpp
│ │ │ │ ├── gc_pred.cpp
│ │ │ │ ├── get_const_tbls.cpp
│ │ │ │ ├── gmed_n.cpp
│ │ │ │ ├── gray_tbl.cpp
│ │ │ │ ├── grid_tbl.cpp
│ │ │ │ ├── int_lpc.cpp
│ │ │ │ ├── inv_sqrt.cpp
│ │ │ │ ├── inv_sqrt_tbl.cpp
│ │ │ │ ├── l_abs.cpp
│ │ │ │ ├── l_deposit_h.cpp
│ │ │ │ ├── l_deposit_l.cpp
│ │ │ │ ├── l_shr_r.cpp
│ │ │ │ ├── log2.cpp
│ │ │ │ ├── log2_norm.cpp
│ │ │ │ ├── log2_tbl.cpp
│ │ │ │ ├── lsfwt.cpp
│ │ │ │ ├── lsp.cpp
│ │ │ │ ├── lsp_az.cpp
│ │ │ │ ├── lsp_lsf.cpp
│ │ │ │ ├── lsp_lsf_tbl.cpp
│ │ │ │ ├── lsp_tab.cpp
│ │ │ │ ├── mult_r.cpp
│ │ │ │ ├── negate.cpp
│ │ │ │ ├── norm_l.cpp
│ │ │ │ ├── norm_s.cpp
│ │ │ │ ├── overflow_tbl.cpp
│ │ │ │ ├── ph_disp_tab.cpp
│ │ │ │ ├── pow2.cpp
│ │ │ │ ├── pow2_tbl.cpp
│ │ │ │ ├── pred_lt.cpp
│ │ │ │ ├── q_plsf.cpp
│ │ │ │ ├── q_plsf_3.cpp
│ │ │ │ ├── q_plsf_3_tbl.cpp
│ │ │ │ ├── q_plsf_5.cpp
│ │ │ │ ├── q_plsf_5_tbl.cpp
│ │ │ │ ├── qua_gain_tbl.cpp
│ │ │ │ ├── r_fft.cpp
│ │ │ │ ├── reorder.cpp
│ │ │ │ ├── residu.cpp
│ │ │ │ ├── round.cpp
│ │ │ │ ├── set_zero.cpp
│ │ │ │ ├── shr.cpp
│ │ │ │ ├── shr_r.cpp
│ │ │ │ ├── sqrt_l.cpp
│ │ │ │ ├── sqrt_l_tbl.cpp
│ │ │ │ ├── sub.cpp
│ │ │ │ ├── syn_filt.cpp
│ │ │ │ ├── vad1.cpp
│ │ │ │ ├── vad2.cpp
│ │ │ │ ├── weight_a.cpp
│ │ │ │ └── window_tab.cpp
│ │ │ ├── dec
│ │ │ │ ├── Android.mk
│ │ │ │ ├── include
│ │ │ │ │ ├── decoder_gsm_amr.h
│ │ │ │ │ └── pvamrnbdecoder_api.h
│ │ │ │ └── src
│ │ │ │ ├── a_refl.cpp
│ │ │ │ ├── a_refl.h
│ │ │ │ ├── agc.cpp
│ │ │ │ ├── agc.h
│ │ │ │ ├── amrdecode.cpp
│ │ │ │ ├── amrdecode.h
│ │ │ │ ├── b_cn_cod.cpp
│ │ │ │ ├── b_cn_cod.h
│ │ │ │ ├── bgnscd.cpp
│ │ │ │ ├── bgnscd.h
│ │ │ │ ├── c_g_aver.cpp
│ │ │ │ ├── c_g_aver.h
│ │ │ │ ├── d1035pf.cpp
│ │ │ │ ├── d1035pf.h
│ │ │ │ ├── d2_11pf.cpp
│ │ │ │ ├── d2_11pf.h
│ │ │ │ ├── d2_9pf.cpp
│ │ │ │ ├── d2_9pf.h
│ │ │ │ ├── d3_14pf.cpp
│ │ │ │ ├── d3_14pf.h
│ │ │ │ ├── d4_17pf.cpp
│ │ │ │ ├── d4_17pf.h
│ │ │ │ ├── d8_31pf.cpp
│ │ │ │ ├── d8_31pf.h
│ │ │ │ ├── d_gain_c.cpp
│ │ │ │ ├── d_gain_p.cpp
│ │ │ │ ├── d_plsf.cpp
│ │ │ │ ├── d_plsf_3.cpp
│ │ │ │ ├── d_plsf_5.cpp
│ │ │ │ ├── dec_amr.cpp
│ │ │ │ ├── dec_amr.h
│ │ │ │ ├── dec_gain.cpp
│ │ │ │ ├── dec_gain.h
│ │ │ │ ├── dec_input_format_tab.cpp
│ │ │ │ ├── dec_lag3.cpp
│ │ │ │ ├── dec_lag3.h
│ │ │ │ ├── dec_lag6.cpp
│ │ │ │ ├── dec_lag6.h
│ │ │ │ ├── decoder_gsm_amr.cpp
│ │ │ │ ├── dtx_dec.cpp
│ │ │ │ ├── dtx_dec.h
│ │ │ │ ├── ec_gains.cpp
│ │ │ │ ├── ec_gains.h
│ │ │ │ ├── ex_ctrl.cpp
│ │ │ │ ├── ex_ctrl.h
│ │ │ │ ├── gsmamr_dec.h
│ │ │ │ ├── if2_to_ets.cpp
│ │ │ │ ├── if2_to_ets.h
│ │ │ │ ├── int_lsf.cpp
│ │ │ │ ├── lsp_avg.cpp
│ │ │ │ ├── lsp_avg.h
│ │ │ │ ├── ph_disp.cpp
│ │ │ │ ├── ph_disp.h
│ │ │ │ ├── post_pro.cpp
│ │ │ │ ├── post_pro.h
│ │ │ │ ├── preemph.cpp
│ │ │ │ ├── preemph.h
│ │ │ │ ├── pstfilt.cpp
│ │ │ │ ├── pstfilt.h
│ │ │ │ ├── pvgsmamrdecoder.cpp
│ │ │ │ ├── pvgsmamrdecoder.h
│ │ │ │ ├── pvgsmamrdecoder_dpi.h
│ │ │ │ ├── qgain475_tab.cpp
│ │ │ │ ├── sp_dec.cpp
│ │ │ │ ├── sp_dec.h
│ │ │ │ └── wmf_to_ets.cpp
│ │ │ └── enc
│ │ │ ├── Android.mk
│ │ │ ├── include
│ │ │ │ └── gsmamr_encoder_wrapper.h
│ │ │ └── src
│ │ │ ├── amrencode.cpp
│ │ │ ├── amrencode.h
│ │ │ ├── autocorr.cpp
│ │ │ ├── autocorr.h
│ │ │ ├── c1035pf.cpp
│ │ │ ├── c1035pf.h
│ │ │ ├── c2_11pf.cpp
│ │ │ ├── c2_11pf.h
│ │ │ ├── c2_9pf.cpp
│ │ │ ├── c2_9pf.h
│ │ │ ├── c3_14pf.cpp
│ │ │ ├── c3_14pf.h
│ │ │ ├── c4_17pf.cpp
│ │ │ ├── c4_17pf.h
│ │ │ ├── c8_31pf.cpp
│ │ │ ├── c8_31pf.h
│ │ │ ├── calc_cor.cpp
│ │ │ ├── calc_cor.h
│ │ │ ├── calc_en.cpp
│ │ │ ├── calc_en.h
│ │ │ ├── cbsearch.cpp
│ │ │ ├── cbsearch.h
│ │ │ ├── cl_ltp.cpp
│ │ │ ├── cl_ltp.h
│ │ │ ├── cod_amr.cpp
│ │ │ ├── cod_amr.h
│ │ │ ├── convolve.cpp
│ │ │ ├── convolve.h
│ │ │ ├── cor_h.cpp
│ │ │ ├── cor_h.h
│ │ │ ├── cor_h_x.cpp
│ │ │ ├── cor_h_x.h
│ │ │ ├── cor_h_x2.cpp
│ │ │ ├── cor_h_x2.h
│ │ │ ├── corrwght_tab.cpp
│ │ │ ├── div_32.cpp
│ │ │ ├── div_32.h
│ │ │ ├── dtx_enc.cpp
│ │ │ ├── dtx_enc.h
│ │ │ ├── enc_lag3.cpp
│ │ │ ├── enc_lag3.h
│ │ │ ├── enc_lag6.cpp
│ │ │ ├── enc_lag6.h
│ │ │ ├── enc_output_format_tab.cpp
│ │ │ ├── ets_to_if2.cpp
│ │ │ ├── ets_to_if2.h
│ │ │ ├── ets_to_wmf.cpp
│ │ │ ├── ets_to_wmf.h
│ │ │ ├── g_adapt.cpp
│ │ │ ├── g_adapt.h
│ │ │ ├── g_code.cpp
│ │ │ ├── g_code.h
│ │ │ ├── g_pitch.cpp
│ │ │ ├── g_pitch.h
│ │ │ ├── gain_q.cpp
│ │ │ ├── gain_q.h
│ │ │ ├── gsmamr_enc.h
│ │ │ ├── gsmamr_encoder_wrapper.cpp
│ │ │ ├── hp_max.cpp
│ │ │ ├── hp_max.h
│ │ │ ├── inter_36.cpp
│ │ │ ├── inter_36.h
│ │ │ ├── inter_36_tab.cpp
│ │ │ ├── inter_36_tab.h
│ │ │ ├── l_abs.cpp
│ │ │ ├── l_abs.h
│ │ │ ├── l_comp.cpp
│ │ │ ├── l_extract.cpp
│ │ │ ├── l_negate.cpp
│ │ │ ├── lag_wind.cpp
│ │ │ ├── lag_wind.h
│ │ │ ├── lag_wind_tab.cpp
│ │ │ ├── lag_wind_tab.h
│ │ │ ├── levinson.cpp
│ │ │ ├── levinson.h
│ │ │ ├── lflg_upd.cpp
│ │ │ ├── lpc.cpp
│ │ │ ├── lpc.h
│ │ │ ├── ol_ltp.cpp
│ │ │ ├── ol_ltp.h
│ │ │ ├── p_ol_wgh.cpp
│ │ │ ├── pitch_fr.cpp
│ │ │ ├── pitch_fr.h
│ │ │ ├── pitch_ol.cpp
│ │ │ ├── pitch_ol.h
│ │ │ ├── pre_big.cpp
│ │ │ ├── pre_big.h
│ │ │ ├── pre_proc.cpp
│ │ │ ├── pre_proc.h
│ │ │ ├── prm2bits.cpp
│ │ │ ├── prm2bits.h
│ │ │ ├── q_gain_c.cpp
│ │ │ ├── q_gain_c.h
│ │ │ ├── q_gain_p.cpp
│ │ │ ├── q_gain_p.h
│ │ │ ├── qgain475.cpp
│ │ │ ├── qgain475.h
│ │ │ ├── qgain795.cpp
│ │ │ ├── qgain795.h
│ │ │ ├── qua_gain.cpp
│ │ │ ├── s10_8pf.cpp
│ │ │ ├── s10_8pf.h
│ │ │ ├── set_sign.cpp
│ │ │ ├── set_sign.h
│ │ │ ├── sid_sync.cpp
│ │ │ ├── sid_sync.h
│ │ │ ├── sp_enc.cpp
│ │ │ ├── sp_enc.h
│ │ │ ├── spreproc.cpp
│ │ │ ├── spreproc.h
│ │ │ ├── spstproc.cpp
│ │ │ ├── spstproc.h
│ │ │ ├── ton_stab.cpp
│ │ │ ├── ton_stab.h
│ │ │ ├── vad1.cpp
│ │ │ ├── vad1.h
│ │ │ └── vad2.h
│ │ └── common
│ │ └── dec
│ │ ├── Android.mk
│ │ └── include
│ │ └── pvgsmamrdecoderinterface.h
│ ├── oscl
│ │ ├── oscl_aostatus.h
│ │ ├── oscl_aostatus.inl
│ │ ├── oscl_assert.h
│ │ ├── oscl_assert.inl
│ │ ├── oscl_base.h
│ │ ├── oscl_base_alloc.h
│ │ ├── oscl_base_macros.h
│ │ ├── oscl_bin_stream.h
│ │ ├── oscl_bin_stream.inl
│ │ ├── oscl_byte_order.h
│ │ ├── oscl_byte_order.inl
│ │ ├── oscl_configfile_list.h
│ │ ├── oscl_defalloc.h
│ │ ├── oscl_dll.h
│ │ ├── oscl_dns.h
│ │ ├── oscl_double_list.h
│ │ ├── oscl_double_list.inl
│ │ ├── oscl_errno.h
│ │ ├── oscl_errno.inl
│ │ ├── oscl_error.h
│ │ ├── oscl_error_allocator.h
│ │ ├── oscl_error_codes.h
│ │ ├── oscl_error_imp.h
│ │ ├── oscl_error_imp_cppexceptions.h
│ │ ├── oscl_error_imp_fatalerror.h
│ │ ├── oscl_error_imp_jumps.h
│ │ ├── oscl_error_trapcleanup.h
│ │ ├── oscl_exception.h
│ │ ├── oscl_exclusive_ptr.h
│ │ ├── oscl_file_cache.h
│ │ ├── oscl_file_dir_utils.h
│ │ ├── oscl_file_find.h
│ │ ├── oscl_file_handle.h
│ │ ├── oscl_file_io.h
│ │ ├── oscl_file_manager.h
│ │ ├── oscl_file_server.h
│ │ ├── oscl_file_types.h
│ │ ├── oscl_heapbase.h
│ │ ├── oscl_heapbase.inl
│ │ ├── oscl_init.h
│ │ ├── oscl_int64_utils.h
│ │ ├── oscl_library_common.h
│ │ ├── oscl_library_list.h
│ │ ├── oscl_linked_list.h
│ │ ├── oscl_lock_base.h
│ │ ├── oscl_map.h
│ │ ├── oscl_math.h
│ │ ├── oscl_math.inl
│ │ ├── oscl_media_data.h
│ │ ├── oscl_media_status.h
│ │ ├── oscl_mem.h
│ │ ├── oscl_mem.inl
│ │ ├── oscl_mem_audit.h
│ │ ├── oscl_mem_auto_ptr.h
│ │ ├── oscl_mem_basic_functions.h
│ │ ├── oscl_mem_basic_functions.inl
│ │ ├── oscl_mem_inst.h
│ │ ├── oscl_mem_mempool.h
│ │ ├── oscl_mempool_allocator.h
│ │ ├── oscl_mutex.h
│ │ ├── oscl_namestring.h
│ │ ├── oscl_opaque_type.h
│ │ ├── oscl_priqueue.h
│ │ ├── oscl_procstatus.h
│ │ ├── oscl_queue.h
│ │ ├── oscl_rand.h
│ │ ├── oscl_rand.inl
│ │ ├── oscl_refcounter.h
│ │ ├── oscl_refcounter_memfrag.h
│ │ ├── oscl_registry_access_client.h
│ │ ├── oscl_registry_client.h
│ │ ├── oscl_registry_serv_impl.h
│ │ ├── oscl_registry_serv_impl_global.h
│ │ ├── oscl_registry_serv_impl_tls.h
│ │ ├── oscl_registry_types.h
│ │ ├── oscl_scheduler.h
│ │ ├── oscl_scheduler_ao.h
│ │ ├── oscl_scheduler_aobase.h
│ │ ├── oscl_scheduler_readyq.h
│ │ ├── oscl_scheduler_threadcontext.h
│ │ ├── oscl_scheduler_tuneables.h
│ │ ├── oscl_scheduler_types.h
│ │ ├── oscl_semaphore.h
│ │ ├── oscl_shared_lib_interface.h
│ │ ├── oscl_shared_library.h
│ │ ├── oscl_shared_ptr.h
│ │ ├── oscl_singleton.h
│ │ ├── oscl_snprintf.h
│ │ ├── oscl_socket.h
│ │ ├── oscl_socket_types.h
│ │ ├── oscl_stdstring.h
│ │ ├── oscl_str_ptr_len.h
│ │ ├── oscl_string.h
│ │ ├── oscl_string_containers.h
│ │ ├── oscl_string_rep.h
│ │ ├── oscl_string_uri.h
│ │ ├── oscl_string_utf8.h
│ │ ├── oscl_string_utils.h
│ │ ├── oscl_string_xml.h
│ │ ├── oscl_tagtree.h
│ │ ├── oscl_thread.h
│ │ ├── oscl_tickcount.h
│ │ ├── oscl_tickcount.inl
│ │ ├── oscl_time.h
│ │ ├── oscl_time.inl
│ │ ├── oscl_timer.h
│ │ ├── oscl_tls.h
│ │ ├── oscl_tree.h
│ │ ├── oscl_types.h
│ │ ├── oscl_utf8conv.h
│ │ ├── oscl_uuid.h
│ │ ├── oscl_vector.h
│ │ ├── osclconfig.h
│ │ ├── osclconfig_ansi_memory.h
│ │ ├── osclconfig_check.h
│ │ ├── osclconfig_compiler_warnings.h
│ │ ├── osclconfig_error.h
│ │ ├── osclconfig_error_check.h
│ │ ├── osclconfig_global_new_delete.h
│ │ ├── osclconfig_global_placement_new.h
│ │ ├── osclconfig_io.h
│ │ ├── osclconfig_io_check.h
│ │ ├── osclconfig_ix86.h
│ │ ├── osclconfig_lib.h
│ │ ├── osclconfig_lib_check.h
│ │ ├── osclconfig_limits_typedefs.h
│ │ ├── osclconfig_memory.h
│ │ ├── osclconfig_memory_check.h
│ │ ├── osclconfig_no_os.h
│ │ ├── osclconfig_proc.h
│ │ ├── osclconfig_proc_check.h
│ │ ├── osclconfig_proc_unix_android.h
│ │ ├── osclconfig_proc_unix_common.h
│ │ ├── osclconfig_time.h
│ │ ├── osclconfig_time_check.h
│ │ ├── osclconfig_unix_android.h
│ │ ├── osclconfig_unix_common.h
│ │ ├── osclconfig_util.h
│ │ └── osclconfig_util_check.h
│ └── wrapper.cpp
├── libs
│ ├── armeabi
│ │ └── libamr-codec.so
│ └── armeabi-v7a
│ └── libamr-codec.so
├── proguard-project.txt
├── project.properties
├── res
│ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── layout
│ │ └── activity_main.xml
│ ├── menu
│ │ └── main.xml
│ ├── values
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── values-v11
│ │ └── styles.xml
│ ├── values-v14
│ │ └── styles.xml
│ └── values-w820dp
│ └── dimens.xml
└── src
└── com
└── hikvh
└── media
├── AmrInputStream.java
├── KCacheUtils.java
├── MainActivity.java
├── WavUtils.java
├── amr
│ ├── AmrDecoder.java
│ └── AmrEncoder.java
└── sound
├── Codec.java
├── Filer.java
├── Recorder.java
├── SoundMan.java
├── Supporter.java
└── Uploader.java
66 directories, 576 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论