Home
last modified time | relevance | path

Searched refs:opus (Results 1 – 25 of 37) sorted by relevance

12

/external/libopus/
DMakefile.am52 pkginclude_HEADERS = include/opus.h include/opus_multistream.h include/opus_types.h include/opus_de…
119 opus.pc.in \
120 opus-uninstalled.pc.in \
121 opus.m4 \
128 win32/VS2010/opus.vcxproj \
141 win32/VS2010/opus.vcxproj.filters \
144 win32/VS2010/opus.sln \
149 pkgconfig_DATA = opus.pc
152 m4data_DATA = opus.m4
155 opus check-opus install-opus: export NO_DOXYGEN = 1 target
[all …]
Dopus.m413 AC_ARG_WITH(opus,AC_HELP_STRING([--with-opus=PFX],[Prefix where opus is installed (optional)]), opu… optwith
14 AC_ARG_WITH(opus-libraries,AC_HELP_STRING([--with-opus-libraries=DIR],[Directory where the opus lib…
15 AC_ARG_WITH(opus-includes,AC_HELP_STRING([--with-opus-includes=DIR],[Directory where the opus heade…
16 …AC_HELP_STRING([--disable-opustest],[Do not try to compile and run a test opus program]),, enable_…
64 #include <opus.h>
93 #include <opus.h>
DREADME.android1 * current source is based on libopus 1.1 stable (http://downloads.xiph.org/releases/opus/opus-1.1.t…
2 * libopus is BSD-licensed - http://www.opus-codec.org/license/
DREADME23 http://tools.ietf.org/html/draft-spittka-payload-rtp-opus
34 An opus-tools package is available which provides encoding and decoding of
38 https://git.xiph.org/?p=opus-tools.git
40 http://opus-codec.org/
53 % git clone git://git.opus-codec.org/opus.git
54 % cd opus
95 input and output are little-endian signed 16-bit PCM files or opus
109 http://opus-codec.org/testvectors/opus_testvectors.tar.gz
113 % curl -O http://opus-codec.org/testvectors/opus_testvectors.tar.gz
DREADME.version1 URL: http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz
Dopus.pc.in10 URL: http://opus-codec.org/
16 Cflags: -I${includedir}/opus
Dopus_headers.mk2 include/opus.h \
Dopus_sources.mk1 OPUS_SOURCES = src/opus.c \
Dopus-uninstalled.pc.in6 Name: opus uninstalled
DMakefile.in61 $(srcdir)/config.h.in $(srcdir)/opus-uninstalled.pc.in \
62 $(srcdir)/opus.pc.in $(srcdir)/opus_headers.mk \
116 CONFIG_CLEAN_FILES = opus.pc opus-uninstalled.pc celt/arm/armopts.s
223 silk/float/sort_FLP.c src/opus.c src/opus_decoder.c \
315 am__objects_12 = src/opus.lo src/opus_decoder.lo src/opus_encoder.lo \
529 am__pkginclude_HEADERS_DIST = include/opus.h \
825 OPUS_SOURCES = src/opus.c src/opus_decoder.c src/opus_encoder.c \
914 include/opus.h \
924 pkginclude_HEADERS = include/opus.h include/opus_multistream.h \
960 opus.pc.in \
[all …]
Dconfigure.ac15 AC_INIT([opus],[CURRENT_VERSION],[opus@xiph.org]) package
419 opus.pc
420 opus-uninstalled.pc
DMakefile.unix84 LIB_NAME = opus
DAndroid.mk130 src/opus.c \
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
Dopus.gypi17 '<(opus_dir)/opus.gyp:opus'
20 '<(opus_dir)/opus.gyp:opus',
31 # Mozilla provides its own build of the opus library.
33 '$(DIST)/include/opus',
/external/libopus/doc/
DMakefile.am3 DOCINPUTS = $(top_srcdir)/include/opus.h \
42 $(RM) $(DESTDIR)$(mandir)/man3/opus_*.3 $(DESTDIR)$(mandir)/man3/opus.h.3
DMakefile.in210 DOCINPUTS = $(top_srcdir)/include/opus.h \
444 @HAVE_DOXYGEN_TRUE@ $(RM) $(DESTDIR)$(mandir)/man3/opus_*.3 $(DESTDIR)$(mandir)/man3/opus.h.3
/external/webrtc/webrtc/modules/audio_coding/
DBUILD.gn728 "codecs/opus/audio_decoder_opus.cc",
729 "codecs/opus/audio_decoder_opus.h",
730 "codecs/opus/audio_encoder_opus.cc",
731 "codecs/opus/audio_encoder_opus.h",
732 "codecs/opus/opus_inst.h",
733 "codecs/opus/opus_interface.c",
734 "codecs/opus/opus_interface.h",
751 include_dirs = [ getenv("DIST") + "/include/opus" ]
758 "//third_party/opus/src/celt",
759 "//third_party/opus/src/src",
Daudio_coding.gypi135 'includes': ['codecs/opus/opus.gypi',],
Daudio_coding_tests.gypi29 'codecs/opus/opus_speed_test.cc',
/external/webrtc/talk/media/webrtc/
Dwebrtcvoiceengine_unittest.cc530 webrtc::CodecInst opus; in TEST_F() local
531 cricket::WebRtcVoiceEngine::ToCodecInst(kOpusCodec, &opus); in TEST_F()
533 EXPECT_EQ(2, opus.channels); in TEST_F()
534 EXPECT_EQ(111, opus.pltype); in TEST_F()
535 EXPECT_STREQ("opus", opus.plname); in TEST_F()
536 opus.pltype = 0; in TEST_F()
537 EXPECT_EQ(0, voe_.GetRecPayloadType(channel_num, opus)); in TEST_F()
538 EXPECT_EQ(111, opus.pltype); in TEST_F()
553 webrtc::CodecInst opus; in TEST_F() local
554 cricket::WebRtcVoiceEngine::ToCodecInst(kOpusCodec, &opus); in TEST_F()
[all …]
/external/webrtc/talk/app/webrtc/
Dwebrtcsdp_unittest.cc555 AudioCodec opus(111, "opus", 48000, 0, 2, 3); in WebRtcSdpTest() local
556 audio_desc_->AddCodec(opus); in WebRtcSdpTest()
1276 cricket::AudioCodec opus = acd->codecs()[0]; in TestDeserializeCodecParams() local
1277 EXPECT_EQ("opus", opus.name); in TestDeserializeCodecParams()
1278 EXPECT_EQ(111, opus.id); in TestDeserializeCodecParams()
1279 VerifyCodecParameter(opus.params, "minptime", params.min_ptime); in TestDeserializeCodecParams()
1280 VerifyCodecParameter(opus.params, "stereo", params.stereo); in TestDeserializeCodecParams()
1281 VerifyCodecParameter(opus.params, "sprop-stereo", params.sprop_stereo); in TestDeserializeCodecParams()
1282 VerifyCodecParameter(opus.params, "useinbandfec", params.useinband); in TestDeserializeCodecParams()
1283 VerifyCodecParameter(opus.params, "maxaveragebitrate", in TestDeserializeCodecParams()
[all …]
/external/webrtc/
D.gn47 "//third_party/opus/BUILD.gn",
D.gitignore128 /third_party/opus
/external/libopus/win32/VS2010/
Dopus.sln4 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opus", "opus.vcxproj", "{219EC965-228A-1824-17…
/external/webrtc/webrtc/build/
Dwebrtc.gni110 rtc_opus_dir = "//third_party/opus"

12