Changeset 3982 for pjproject/trunk/pjmedia/src/test/mips_test.c
- Timestamp:
- Mar 22, 2012 9:56:52 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/test/mips_test.c
r3841 r3982 794 794 } 795 795 796 #if PJMEDIA_HAS_G711_CODEC 796 797 /* G.711 benchmark */ 797 798 static pjmedia_port* g711_encode_decode( pj_pool_t *pool, … … 807 808 samples_per_frame, flags, te); 808 809 } 810 #endif 809 811 810 812 /* GSM benchmark */ 813 #if PJMEDIA_HAS_GSM_CODEC 811 814 static pjmedia_port* gsm_encode_decode( pj_pool_t *pool, 812 815 unsigned clock_rate, … … 821 824 samples_per_frame, flags, te); 822 825 } 823 826 #endif 827 828 #if PJMEDIA_HAS_ILBC_CODEC 824 829 static pj_status_t ilbc_init(pjmedia_endpt *endpt) 825 830 { … … 840 845 channel_count, samples_per_frame, flags, te); 841 846 } 842 847 #endif 848 849 #if PJMEDIA_HAS_SPEEX_CODEC 843 850 /* Speex narrowband benchmark */ 844 851 static pjmedia_port* speex8_encode_decode(pj_pool_t *pool, … … 870 877 samples_per_frame, flags, te); 871 878 } 872 879 #endif 880 881 #if PJMEDIA_HAS_G722_CODEC 873 882 /* G.722 benchmark benchmark */ 874 883 static pjmedia_port* g722_encode_decode(pj_pool_t *pool, … … 884 893 samples_per_frame, flags, te); 885 894 } 895 #endif 886 896 887 897 #if PJMEDIA_HAS_G7221_CODEC … … 1797 1807 } 1798 1808 1809 #if PJMEDIA_HAS_G711_CODEC 1799 1810 /* G.711 stream, no SRTP */ 1800 1811 static pjmedia_port* create_stream_pcmu( pj_pool_t *pool, … … 1871 1882 samples_per_frame, flags, te); 1872 1883 } 1873 1884 #endif 1885 1886 #if PJMEDIA_HAS_GSM_CODEC 1874 1887 /* GSM stream */ 1875 1888 static pjmedia_port* create_stream_gsm( pj_pool_t *pool, … … 1946 1959 samples_per_frame, flags, te); 1947 1960 } 1948 1961 #endif 1962 1963 #if PJMEDIA_HAS_G722_CODEC 1949 1964 /* G722 stream */ 1950 1965 static pjmedia_port* create_stream_g722( pj_pool_t *pool, … … 1961 1976 samples_per_frame, flags, te); 1962 1977 } 1963 1978 #endif 1979 1980 #if PJMEDIA_HAS_G7221_CODEC 1964 1981 /* G722.1 stream */ 1965 #if PJMEDIA_HAS_G7221_CODEC1966 1982 static pjmedia_port* create_stream_g7221( pj_pool_t *pool, 1967 1983 unsigned clock_rate,
Note: See TracChangeset
for help on using the changeset viewer.