├── .clang-format ├── .cproject ├── .github └── ISSUE_TEMPLATE │ └── bug_report.yml ├── .gitignore ├── .project ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.txt ├── Makefile.am ├── README.md ├── acinclude.m4 ├── autogen.sh ├── cmake ├── FindAom.cmake ├── FindArts.cmake ├── FindBCG729.cmake ├── FindBCMatroska2.cmake ├── FindBV16.cmake ├── FindCamApi.cmake ├── FindDav1d.cmake ├── FindFFMpeg.cmake ├── FindGSM.cmake ├── FindLibYUV.cmake ├── FindOpus.cmake ├── FindPCAP.cmake ├── FindPortAudio.cmake ├── FindPulseAudio.cmake ├── FindQSA.cmake ├── FindQnxAudioManager.cmake ├── FindQtAngle.cmake ├── FindSRTP.cmake ├── FindScreen.cmake ├── FindSpanDSP.cmake ├── FindSpeex.cmake ├── FindSpeexDSP.cmake ├── FindTheora.cmake ├── FindTurboJpeg.cmake ├── FindV4L.cmake ├── FindVPX.cmake ├── FindXfixes.cmake ├── FindXinerama.cmake ├── FindZXing.cmake └── Mediastreamer2Config.cmake.in ├── config.rpath ├── configure.ac ├── debian ├── changelog ├── compat ├── control ├── copyright ├── libmediastreamer-dev.docs ├── libmediastreamer-dev.install ├── libmediastreamer2.install ├── mkdeb.sh ├── patches │ └── series ├── rules ├── source │ ├── format │ └── include-binaries └── watch ├── define-filters.awk ├── define-ms_base_filter_descs.awk ├── define-ms_voip_filter_descs.awk ├── extract-filters-names.awk ├── help ├── .gitignore ├── CMakeLists.txt ├── Doxyfile.in ├── Makefile.am ├── doxygen.dox ├── filters.dox └── ht0-buildagraph.dox ├── include ├── .gitignore ├── CMakeLists.txt ├── MSVC │ ├── inttypes.h │ └── stdint.h ├── Makefile.am ├── OpenGL │ ├── EGL │ │ ├── egl.h │ │ ├── eglext.h │ │ └── eglplatform.h │ ├── GLES2 │ │ ├── gl2.h │ │ ├── gl2ext.h │ │ └── gl2platform.h │ ├── GLES3 │ │ ├── gl3.h │ │ ├── gl31.h │ │ ├── gl32.h │ │ └── gl3platform.h │ ├── KHR │ │ └── khrplatform.h │ ├── LICENSE │ ├── README.md │ └── angle_windowsstore.h └── mediastreamer2 │ ├── .gitignore │ ├── Makefile.am │ ├── allfilters.h │ ├── android_utils.h │ ├── baudot.h │ ├── bitratecontrol.h │ ├── bits_rw.h │ ├── box-plot.h │ ├── devices.h │ ├── dsptools.h │ ├── dtls_srtp.h │ ├── dtmfgen.h │ ├── flowcontrol.h │ ├── formats.h │ ├── ice.h │ ├── mediastream.h │ ├── ms_srtp.h │ ├── msanalysedisplay.h │ ├── msasync.h │ ├── msaudiomixer.h │ ├── mschanadapter.h │ ├── mscngdtx.h │ ├── mscodecutils.h │ ├── mscommon.h │ ├── msconference.h │ ├── msequalizer.h │ ├── mseventqueue.h │ ├── msextdisplay.h │ ├── msfactory.h │ ├── msfileplayer.h │ ├── msfilerec.h │ ├── msfilter.h │ ├── msgenericplc.h │ ├── msinterfaces.h │ ├── msitc.h │ ├── msjava.h │ ├── msjpegwriter.h │ ├── msmediaplayer.h │ ├── msmediarecorder.h │ ├── msmire.h │ ├── msogl.h │ ├── msogl_functions.h │ ├── mspacketrouter.h │ ├── mspcapfileplayer.h │ ├── msqrcodereader.h │ ├── msqueue.h │ ├── msrtp.h │ ├── msrtt4103.h │ ├── msscreensharing.h │ ├── mssndcard.h │ ├── mstee.h │ ├── msticker.h │ ├── mstonedetector.h │ ├── msudp.h │ ├── msutils.h │ ├── msv4l.h │ ├── msvaddtx.h │ ├── msvideo.h │ ├── msvideoout.h │ ├── msvideopresets.h │ ├── msvideoqualitycontroller.h │ ├── msvolume.h │ ├── mswebcam.h │ ├── qualityindicator.h │ ├── rfc3984.h │ ├── stun.h │ ├── upnp_igd.h │ ├── video-aggregator.h │ ├── x11_helper.h │ └── zrtp.h ├── java ├── .classpath ├── .project ├── AndroidManifest.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── mediastreamerSdk.gradle ├── proguard.cfg └── src │ └── org │ └── linphone │ └── mediastream │ ├── AACFilter.java │ ├── Factory.java │ ├── Log.java │ ├── MediastreamException.java │ ├── MediastreamerAndroidContext.java │ ├── Version.java │ └── video │ ├── AndroidVideoWindowImpl.java │ ├── capture │ ├── AndroidVideoApi5JniWrapper.java │ ├── AndroidVideoApi8JniWrapper.java │ ├── AndroidVideoApi9JniWrapper.java │ ├── CaptureTextureView.java │ └── hwconf │ │ ├── AndroidCameraConfiguration.java │ │ ├── AndroidCameraConfigurationReader21.java │ │ ├── AndroidCameraConfigurationReader5.java │ │ ├── AndroidCameraConfigurationReader9.java │ │ └── Hacks.java │ └── display │ ├── GL2JNIView.java │ └── OpenGLESDisplay.java ├── m4 ├── Makefile.am ├── gettext.m4 ├── ld-output-def.m4 ├── obsolete.m4 └── po.m4 ├── mediastreamer-config.h.cmake ├── mediastreamer.pc.in ├── mediastreamer2.spec.in ├── pkg.list ├── po ├── .gitignore ├── ChangeLog ├── LINGUAS ├── POTFILES.in ├── POTFILES.skip ├── cs.po ├── de.po ├── es.po ├── fr.po ├── hu.po ├── it.po ├── ja.po ├── nl.po ├── pl.po ├── pt_BR.po ├── ru.po ├── sv.po └── zh_CN.po ├── src ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── YCbCr_to_RGB.frag ├── android │ ├── AudioRecord.cpp │ ├── AudioRecord.h │ ├── AudioSystem.cpp │ ├── AudioSystem.h │ ├── AudioTrack.cpp │ ├── AudioTrack.h │ ├── String8.cpp │ ├── String8.h │ ├── android-display-bad.cpp │ ├── android-display.c │ ├── android-opengl-display.c │ ├── android-texture-display.c │ ├── android_mediacodec.cpp │ ├── android_mediacodec.h │ ├── androidsound.cpp │ ├── androidsound_depr.cpp │ ├── androidsound_opensles.cpp │ ├── androidsound_utils.cpp │ ├── androidsound_utils_depr.cpp │ ├── androidvideo.cpp │ ├── audio.h │ ├── hardware_echo_canceller.cpp │ ├── loader.cpp │ ├── loader.h │ └── media │ │ ├── NdkMediaCodec.h │ │ ├── NdkMediaCrypto.h │ │ ├── NdkMediaDrm.h │ │ ├── NdkMediaError.h │ │ ├── NdkMediaExtractor.h │ │ ├── NdkMediaFormat.h │ │ ├── NdkMediaMuxer.h │ │ └── README.txt ├── audiofilters │ ├── aac-eld-android.cpp │ ├── aac-eld.c │ ├── alaw.c │ ├── alsa.c │ ├── aqsnd.m │ ├── arts.c │ ├── asyncrw.c │ ├── asyncrw.h │ ├── audiomixer.c │ ├── bv16.c │ ├── chanadapt.c │ ├── devices.c │ ├── dtmfgen.c │ ├── equalizer.c │ ├── flowcontrol.c │ ├── g711.c │ ├── g711.h │ ├── g726.c │ ├── g729.c │ ├── genericplc.c │ ├── genericplc.h │ ├── gsm.c │ ├── l16.c │ ├── macsnd.c │ ├── msfileplayer.c │ ├── msfilerec.c │ ├── msg722.c │ ├── msgenericplc.c │ ├── msiounit.mm │ ├── msopus.c │ ├── msresample.c │ ├── msspeex.c │ ├── msvaddtx.c │ ├── msvolume.c │ ├── oss.c │ ├── pasnd.c │ ├── pulseaudio.c │ ├── qsa.c │ ├── speexec.c │ ├── tonedetector.cpp │ ├── ulaw.c │ ├── waveheader.h │ ├── winsnd.c │ ├── winsnd2.c │ ├── winsnd3.c │ └── winsndds.cpp ├── base │ ├── eventqueue.c │ ├── msasync.c │ ├── mscommon.c │ ├── msfactory.c │ ├── msfilter.c │ ├── msqueue.c │ ├── mssndcard.c │ ├── msticker.c │ ├── msvideopresets.c │ ├── mswebcam.c │ └── mtu.c ├── baudot │ ├── baudot_context.h │ ├── baudot_decoding_context.cpp │ ├── baudot_decoding_context.h │ ├── baudot_detector_filter.cpp │ ├── baudot_encoding_context.cpp │ ├── baudot_encoding_context.h │ ├── baudot_filters.h │ └── baudot_generator_filter.cpp ├── crypto │ ├── dtls_srtp.cpp │ ├── ms_srtp.cpp │ └── zrtp.c ├── dxfilter.cpp ├── dxfilter.h ├── filter-template.c ├── generate_descs_header.cmake ├── generate_yuv2rgb_header.cmake ├── libsrtp.map ├── otherfilters │ ├── itc.c │ ├── join.c │ ├── mspcapfileplayer.c │ ├── msrtp.c │ ├── msudp.c │ ├── rfc4103_sink.c │ ├── rfc4103_source.c │ ├── tee.c │ └── void.c ├── screen_transform.vert ├── upnp │ ├── upnp_igd.c │ ├── upnp_igd_cmd.c │ ├── upnp_igd_private.h │ ├── upnp_igd_utils.c │ └── upnp_igd_utils.h ├── utils │ ├── _kiss_fft_guts.h │ ├── apple_utils.h │ ├── apple_utils.m │ ├── audiodiff.c │ ├── bits_rw.c │ ├── box-plot.c │ ├── dsptools.c │ ├── fd_portab.h │ ├── ffmpeg-priv.c │ ├── ffmpeg-priv.h │ ├── filter-interface │ │ ├── decoder-filter.h │ │ ├── encoder-filter.h │ │ └── filter-base.h │ ├── filter-wrapper │ │ ├── decoding-filter-wrapper.cpp │ │ ├── decoding-filter-wrapper.h │ │ ├── encoding-filter-wrapper.cpp │ │ ├── encoding-filter-wrapper.h │ │ └── filter-wrapper-base.h │ ├── g722.h │ ├── g722_decode.c │ ├── g722_encode.c │ ├── goertzel_state.cpp │ ├── goertzel_state.h │ ├── jpgloader-ffmpeg.c │ ├── jpgloader-stub.c │ ├── jpgloader-turbojpeg.c │ ├── key-frame-indicator │ │ ├── header-extension-key-frame-indicator.cpp │ │ ├── header-extension-key-frame-indicator.h │ │ ├── key-frame-indicator.h │ │ ├── vp8-key-frame-indicator.cpp │ │ └── vp8-key-frame-indicator.h │ ├── kiss_fft.c │ ├── kiss_fft.h │ ├── kiss_fftr.c │ ├── kiss_fftr.h │ ├── mkv_reader.cpp │ ├── mkv_reader.h │ ├── msjava.c │ ├── opengl_debug.h │ ├── opengl_functions.c │ ├── opengl_functions.h │ ├── opengles_display.c │ ├── opengles_display.h │ ├── pcap_sender.c │ ├── pcap_sender.h │ ├── shader_util.c │ ├── shader_util.h │ ├── srtp_prefix.h │ ├── stream_regulator.c │ ├── stream_regulator.h │ ├── vfw-missing.h │ └── x11_helper.c ├── videofilters │ ├── av1 │ │ ├── decoder │ │ │ ├── av1-decoder-filter.cpp │ │ │ ├── av1-decoder-filter.h │ │ │ ├── av1-decoder.cpp │ │ │ └── av1-decoder.h │ │ ├── encoder │ │ │ ├── av1-encoder-filter.cpp │ │ │ ├── av1-encoder-filter.h │ │ │ ├── av1-encoder.cpp │ │ │ └── av1-encoder.h │ │ └── obu │ │ │ ├── obu-key-frame-indicator.cpp │ │ │ ├── obu-key-frame-indicator.h │ │ │ ├── obu-packer.cpp │ │ │ ├── obu-packer.h │ │ │ ├── obu-unpacker.cpp │ │ │ ├── obu-unpacker.h │ │ │ ├── obuparse.c │ │ │ └── obuparse.h │ ├── avfound-capture.m │ ├── bb10_capture.cpp │ ├── bb10_display.cpp │ ├── drawdib-display.c │ ├── dummy_codec.c │ ├── extdisplay.c │ ├── ffmpegjpegwriter.c │ ├── generic_opengl_display.c │ ├── glxvideo.c │ ├── h264dec.cpp │ ├── h26x │ │ ├── CMakeLists.txt │ │ ├── h264-nal-packer.cpp │ │ ├── h264-nal-packer.h │ │ ├── h264-nal-unpacker.cpp │ │ ├── h264-nal-unpacker.h │ │ ├── h264-utils.cpp │ │ ├── h264-utils.h │ │ ├── h265-nal-packer.cpp │ │ ├── h265-nal-packer.h │ │ ├── h265-nal-unpacker.cpp │ │ ├── h265-nal-unpacker.h │ │ ├── h265-utils.cpp │ │ ├── h265-utils.h │ │ ├── h26x-decoder-filter.cpp │ │ ├── h26x-decoder-filter.h │ │ ├── h26x-decoder.h │ │ ├── h26x-encoder-filter.cpp │ │ ├── h26x-encoder-filter.h │ │ ├── h26x-encoder.h │ │ ├── h26x-utils.cpp │ │ ├── h26x-utils.h │ │ ├── media-codec-decoder.cpp │ │ ├── media-codec-decoder.h │ │ ├── media-codec-encoder.cpp │ │ ├── media-codec-encoder.h │ │ ├── media-codec-h264-decoder.cpp │ │ ├── media-codec-h264-decoder.h │ │ ├── media-codec-h264-encoder.cpp │ │ ├── media-codec-h265-decoder.cpp │ │ ├── media-codec-h265-decoder.h │ │ ├── media-codec-h265-encoder.cpp │ │ ├── nal-packer.cpp │ │ ├── nal-packer.h │ │ ├── nal-unpacker.cpp │ │ ├── nal-unpacker.h │ │ ├── rfc3984.cpp │ │ ├── videotoolbox-decoder.cpp │ │ ├── videotoolbox-decoder.h │ │ ├── videotoolbox-encoder.cpp │ │ ├── videotoolbox-encoder.h │ │ ├── videotoolbox-h264-utilities.cpp │ │ ├── videotoolbox-h264-utilities.h │ │ ├── videotoolbox-h265-utilities.cpp │ │ ├── videotoolbox-h265-utilities.h │ │ ├── videotoolbox-utils.cpp │ │ ├── videotoolbox-utils.h │ │ └── videotoolbox.cpp │ ├── ioscapture.m │ ├── iosdisplay.mm │ ├── mire.c │ ├── mkv.cpp │ ├── msanalysedisplay.c │ ├── msdscap.cc │ ├── msmfoundationcap.cpp │ ├── msmfoundationcap.h │ ├── msosxdisplay.m │ ├── msqogl.cpp │ ├── msqogl.h │ ├── msscreensharing.cpp │ ├── msscreensharing_mac.h │ ├── msscreensharing_mac.mm │ ├── msscreensharing_private.h │ ├── msscreensharing_win.cpp │ ├── msscreensharing_win.h │ ├── msscreensharing_x11.cpp │ ├── msscreensharing_x11.h │ ├── msturbojpeg.cpp │ ├── msv4l.c │ ├── msv4l2.c │ ├── multimedia-container-interface.h │ ├── nowebcam.c │ ├── packet-router.cpp │ ├── packet-router.h │ ├── pixconv.c │ ├── qtcapture.m │ ├── sizeconv.c │ ├── smff │ │ ├── player.cpp │ │ ├── recorder.cpp │ │ ├── smff.cpp │ │ └── smff.h │ ├── theora.c │ ├── turbojpegwriter.c │ ├── video-aggregator.c │ ├── videodec.c │ ├── videoenc.c │ ├── videoout.c │ ├── videorouter.c │ ├── vp8.c │ ├── wincevideods.c │ ├── winvideo.c │ ├── winvideo2.c │ ├── winvideods.c │ ├── x11video.c │ └── zxing_qrcode.cpp ├── voip │ ├── audioconference.c │ ├── audiostream.c │ ├── audiostreamvolumes.cpp │ ├── bandwidthcontroller.c │ ├── bitratecontrol.c │ ├── bitratedriver.c │ ├── ice.c │ ├── ioshardware.h │ ├── ioshardware.m │ ├── layouts.c │ ├── layouts.h │ ├── mediastream.c │ ├── msiframerequestslimiter.c │ ├── msmediaplayer.c │ ├── msmediarecorder.c │ ├── msvideo.c │ ├── msvideo_neon.c │ ├── msvideo_neon.h │ ├── msvideoqualitycontroller.c │ ├── msvoip.c │ ├── msvoip_jni.cc │ ├── nowebcam.h │ ├── nowebcamCIF.jpg │ ├── offeranswer.c │ ├── private.h │ ├── qosanalyzer.c │ ├── qosanalyzer.h │ ├── qrcodesite.jpg │ ├── qualityindicator.c │ ├── rfc2429.h │ ├── rfc4103_textstream.c │ ├── ringstream.c │ ├── scaler_arm.S │ ├── stun.c │ ├── turn_tcp.cpp │ ├── turn_tcp.h │ ├── video-conference.cpp │ ├── video-conference.h │ ├── video-decoder.h │ ├── video-encoder.h │ ├── video-endpoint.cpp │ ├── video_preset_high_fps.c │ ├── videostarter.c │ ├── videostream.c │ ├── vp8rtpfmt.c │ └── vp8rtpfmt.h ├── yuv2rgb.fs └── yuv2rgb.vs ├── tester ├── CMakeLists.txt ├── Makefile.am ├── filters │ ├── framemarking_tester.c │ └── framemarking_tester.h ├── images │ ├── qrcodesite.jpg │ ├── qrcodesite_captured.jpg │ ├── qrcodesite_inclined.jpg │ └── qrcodesite_screen.jpg ├── mediastreamer2_adaptive_tester.c ├── mediastreamer2_aec3_tester.c ├── mediastreamer2_audio_stream_tester.c ├── mediastreamer2_basic_audio_tester.c ├── mediastreamer2_baudot_tester.cpp ├── mediastreamer2_codec_impl_testers.c ├── mediastreamer2_double_encryption_tester.cpp ├── mediastreamer2_framework_tester.c ├── mediastreamer2_h26x_tools_tester.cpp ├── mediastreamer2_jitterbuffer_tester.c ├── mediastreamer2_neon_tester.c ├── mediastreamer2_player_tester.c ├── mediastreamer2_qrcode_tester.c ├── mediastreamer2_recorder_tester.c ├── mediastreamer2_sound_card_tester.c ├── mediastreamer2_tester.c ├── mediastreamer2_tester.h ├── mediastreamer2_tester_cocoa.m ├── mediastreamer2_tester_ios.m ├── mediastreamer2_tester_private.c ├── mediastreamer2_tester_private.h ├── mediastreamer2_tester_utils.cpp ├── mediastreamer2_tester_utils.h ├── mediastreamer2_tester_windows.cpp ├── mediastreamer2_tester_windows.h ├── mediastreamer2_text_stream_tester.c ├── mediastreamer2_video_stream_tester.c ├── raw │ ├── h265-iframe │ └── h265-parameter-sets-frame ├── scenarios │ ├── congestion │ │ ├── audio-80-75-0c60.pcapng │ │ ├── audio-80-75-0f35c95f120.pcapng │ │ ├── video-160-0-0a5f30.pcapng │ │ ├── video-160-120-0f20c60.pcapng │ │ └── video-160-90-0a5c30.pcapng │ ├── firstvalid.pcapng │ ├── h264_missing_pps_in_second_i_frame.pcap │ ├── h264_one_nalu_per_frame.pcap │ ├── h264_one_nalu_per_frame_with_corrupted_idr.pcap │ ├── opus-edge-congestion20_60_40.pcapng │ ├── opus-poor-quality.pcapng │ ├── pcmu_8k_no_jitter.pcap │ ├── poor_jitter_quality_22.pcapng │ ├── poor_jitter_quality_22_filter.pcapng │ ├── rtp-120late-1000total.pcapng │ ├── rtp-240late-2000total.pcapng │ ├── rtp-534late-24loss-7000total.pcapng │ ├── rtp-60late-500total.pcapng │ └── secondvalid.pcapng ├── smff_tester.cpp └── sounds │ ├── README.md │ ├── arpeggio_8000_mono.wav │ ├── baudot_alphabet_silence.wav │ ├── baudot_mono_alphabet_letter_by_letter_us.wav │ ├── baudot_mono_alphabet_us.wav │ ├── baudot_mono_digits_us.wav │ ├── baudot_stereo_alphabet_us.wav │ ├── bird_44100_stereo.wav │ ├── chimes_48000_stereo.wav │ ├── echo_delay_change.wav │ ├── echo_double_talk.wav │ ├── echo_simple_talk.wav │ ├── farend_double_talk.wav │ ├── farend_simple_talk.wav │ ├── hello16000-1s.wav │ ├── hello16000.wav │ ├── hello8000-1s.wav │ ├── hello8000.wav │ ├── hello_opus.mka │ ├── hello_pcmu.mka │ ├── laserrocket_16000_mono.wav │ ├── nearend_double_talk.wav │ ├── nearend_simple_talk.wav │ ├── nylon_48000_mono.wav │ ├── owl_44100_mono.wav │ ├── piano_8000_stereo.wav │ ├── punch_16000_stereo.wav │ ├── sintel_trailer_opus_h264.mkv │ ├── sintel_trailer_opus_vp8.mkv │ ├── sintel_trailer_pcmu_h264.mkv │ ├── test_silence_voice_16000.wav │ ├── test_silence_voice_32000.wav │ ├── test_silence_voice_44100.wav │ ├── test_silence_voice_48000.wav │ ├── test_silence_voice_8000.wav │ └── white_noise.wav └── tools ├── .gitignore ├── Android.mk ├── CMakeLists.txt ├── Makefile.am ├── audio └── aec │ ├── aec_files.py │ ├── aec_metrics.py │ ├── aec_tests.py │ ├── audio_analysis.py │ ├── audio_signal.py │ ├── main.py │ ├── poetry.lock │ └── pyproject.toml ├── bench.c ├── common.c ├── common.h ├── echo.c ├── filters_graph.py ├── ios ├── en.lproj │ ├── InfoPlist.strings │ ├── MainWindow.xib │ └── mediastreamViewController.xib ├── mediastream-Info.plist ├── mediastream-Prefix.pch ├── mediastream-tester-Info.plist ├── mediastreamAppDelegate.h ├── mediastreamAppDelegate.m ├── mediastreamViewController.h └── mediastreamViewController.m ├── mediastream.c ├── mediastream_cocoa.m ├── mkvstream.c ├── msaudiocmp.c ├── mtudiscover.c ├── pcap_playback.c ├── pcap_player_cocoa.m ├── player.c ├── recorder.c ├── ring.c ├── ring_jni.c ├── test_x11window.c ├── tones.c ├── videodisplay.c └── xxd.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/.clang-format -------------------------------------------------------------------------------- /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/.cproject -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/.project -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/README.md -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/autogen.sh -------------------------------------------------------------------------------- /cmake/FindAom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindAom.cmake -------------------------------------------------------------------------------- /cmake/FindArts.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindArts.cmake -------------------------------------------------------------------------------- /cmake/FindBCG729.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindBCG729.cmake -------------------------------------------------------------------------------- /cmake/FindBCMatroska2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindBCMatroska2.cmake -------------------------------------------------------------------------------- /cmake/FindBV16.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindBV16.cmake -------------------------------------------------------------------------------- /cmake/FindCamApi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindCamApi.cmake -------------------------------------------------------------------------------- /cmake/FindDav1d.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindDav1d.cmake -------------------------------------------------------------------------------- /cmake/FindFFMpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindFFMpeg.cmake -------------------------------------------------------------------------------- /cmake/FindGSM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindGSM.cmake -------------------------------------------------------------------------------- /cmake/FindLibYUV.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindLibYUV.cmake -------------------------------------------------------------------------------- /cmake/FindOpus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindOpus.cmake -------------------------------------------------------------------------------- /cmake/FindPCAP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindPCAP.cmake -------------------------------------------------------------------------------- /cmake/FindPortAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindPortAudio.cmake -------------------------------------------------------------------------------- /cmake/FindPulseAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindPulseAudio.cmake -------------------------------------------------------------------------------- /cmake/FindQSA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindQSA.cmake -------------------------------------------------------------------------------- /cmake/FindQnxAudioManager.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindQnxAudioManager.cmake -------------------------------------------------------------------------------- /cmake/FindQtAngle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindQtAngle.cmake -------------------------------------------------------------------------------- /cmake/FindSRTP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindSRTP.cmake -------------------------------------------------------------------------------- /cmake/FindScreen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindScreen.cmake -------------------------------------------------------------------------------- /cmake/FindSpanDSP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindSpanDSP.cmake -------------------------------------------------------------------------------- /cmake/FindSpeex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindSpeex.cmake -------------------------------------------------------------------------------- /cmake/FindSpeexDSP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindSpeexDSP.cmake -------------------------------------------------------------------------------- /cmake/FindTheora.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindTheora.cmake -------------------------------------------------------------------------------- /cmake/FindTurboJpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindTurboJpeg.cmake -------------------------------------------------------------------------------- /cmake/FindV4L.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindV4L.cmake -------------------------------------------------------------------------------- /cmake/FindVPX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindVPX.cmake -------------------------------------------------------------------------------- /cmake/FindXfixes.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindXfixes.cmake -------------------------------------------------------------------------------- /cmake/FindXinerama.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindXinerama.cmake -------------------------------------------------------------------------------- /cmake/FindZXing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/FindZXing.cmake -------------------------------------------------------------------------------- /cmake/Mediastreamer2Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/cmake/Mediastreamer2Config.cmake.in -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/config.rpath -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/libmediastreamer-dev.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/debian/libmediastreamer-dev.docs -------------------------------------------------------------------------------- /debian/libmediastreamer-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/debian/libmediastreamer-dev.install -------------------------------------------------------------------------------- /debian/libmediastreamer2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/debian/libmediastreamer2.install -------------------------------------------------------------------------------- /debian/mkdeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/debian/mkdeb.sh -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/source/include-binaries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/debian/source/include-binaries -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/debian/watch -------------------------------------------------------------------------------- /define-filters.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/define-filters.awk -------------------------------------------------------------------------------- /define-ms_base_filter_descs.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/define-ms_base_filter_descs.awk -------------------------------------------------------------------------------- /define-ms_voip_filter_descs.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/define-ms_voip_filter_descs.awk -------------------------------------------------------------------------------- /extract-filters-names.awk: -------------------------------------------------------------------------------- 1 | BEGIN { FS="[()]" ; }; /^\t*MS_FILTER_DESC_EXPORT/{ printf("%s\n", $2) } -------------------------------------------------------------------------------- /help/.gitignore: -------------------------------------------------------------------------------- 1 | Doxyfile 2 | -------------------------------------------------------------------------------- /help/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/help/CMakeLists.txt -------------------------------------------------------------------------------- /help/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/help/Doxyfile.in -------------------------------------------------------------------------------- /help/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/help/Makefile.am -------------------------------------------------------------------------------- /help/doxygen.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/help/doxygen.dox -------------------------------------------------------------------------------- /help/filters.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/help/filters.dox -------------------------------------------------------------------------------- /help/ht0-buildagraph.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/help/ht0-buildagraph.dox -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/.gitignore -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/MSVC/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/MSVC/inttypes.h -------------------------------------------------------------------------------- /include/MSVC/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/MSVC/stdint.h -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=mediastreamer2 2 | -------------------------------------------------------------------------------- /include/OpenGL/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/EGL/egl.h -------------------------------------------------------------------------------- /include/OpenGL/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/EGL/eglext.h -------------------------------------------------------------------------------- /include/OpenGL/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/EGL/eglplatform.h -------------------------------------------------------------------------------- /include/OpenGL/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/GLES2/gl2.h -------------------------------------------------------------------------------- /include/OpenGL/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/GLES2/gl2ext.h -------------------------------------------------------------------------------- /include/OpenGL/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/GLES2/gl2platform.h -------------------------------------------------------------------------------- /include/OpenGL/GLES3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/GLES3/gl3.h -------------------------------------------------------------------------------- /include/OpenGL/GLES3/gl31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/GLES3/gl31.h -------------------------------------------------------------------------------- /include/OpenGL/GLES3/gl32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/GLES3/gl32.h -------------------------------------------------------------------------------- /include/OpenGL/GLES3/gl3platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/GLES3/gl3platform.h -------------------------------------------------------------------------------- /include/OpenGL/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/KHR/khrplatform.h -------------------------------------------------------------------------------- /include/OpenGL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/LICENSE -------------------------------------------------------------------------------- /include/OpenGL/README.md: -------------------------------------------------------------------------------- 1 | angle.windowsstore\2.1.13 -------------------------------------------------------------------------------- /include/OpenGL/angle_windowsstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/OpenGL/angle_windowsstore.h -------------------------------------------------------------------------------- /include/mediastreamer2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/.gitignore -------------------------------------------------------------------------------- /include/mediastreamer2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/Makefile.am -------------------------------------------------------------------------------- /include/mediastreamer2/allfilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/allfilters.h -------------------------------------------------------------------------------- /include/mediastreamer2/android_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/android_utils.h -------------------------------------------------------------------------------- /include/mediastreamer2/baudot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/baudot.h -------------------------------------------------------------------------------- /include/mediastreamer2/bitratecontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/bitratecontrol.h -------------------------------------------------------------------------------- /include/mediastreamer2/bits_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/bits_rw.h -------------------------------------------------------------------------------- /include/mediastreamer2/box-plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/box-plot.h -------------------------------------------------------------------------------- /include/mediastreamer2/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/devices.h -------------------------------------------------------------------------------- /include/mediastreamer2/dsptools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/dsptools.h -------------------------------------------------------------------------------- /include/mediastreamer2/dtls_srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/dtls_srtp.h -------------------------------------------------------------------------------- /include/mediastreamer2/dtmfgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/dtmfgen.h -------------------------------------------------------------------------------- /include/mediastreamer2/flowcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/flowcontrol.h -------------------------------------------------------------------------------- /include/mediastreamer2/formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/formats.h -------------------------------------------------------------------------------- /include/mediastreamer2/ice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/ice.h -------------------------------------------------------------------------------- /include/mediastreamer2/mediastream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mediastream.h -------------------------------------------------------------------------------- /include/mediastreamer2/ms_srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/ms_srtp.h -------------------------------------------------------------------------------- /include/mediastreamer2/msanalysedisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msanalysedisplay.h -------------------------------------------------------------------------------- /include/mediastreamer2/msasync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msasync.h -------------------------------------------------------------------------------- /include/mediastreamer2/msaudiomixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msaudiomixer.h -------------------------------------------------------------------------------- /include/mediastreamer2/mschanadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mschanadapter.h -------------------------------------------------------------------------------- /include/mediastreamer2/mscngdtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mscngdtx.h -------------------------------------------------------------------------------- /include/mediastreamer2/mscodecutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mscodecutils.h -------------------------------------------------------------------------------- /include/mediastreamer2/mscommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mscommon.h -------------------------------------------------------------------------------- /include/mediastreamer2/msconference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msconference.h -------------------------------------------------------------------------------- /include/mediastreamer2/msequalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msequalizer.h -------------------------------------------------------------------------------- /include/mediastreamer2/mseventqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mseventqueue.h -------------------------------------------------------------------------------- /include/mediastreamer2/msextdisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msextdisplay.h -------------------------------------------------------------------------------- /include/mediastreamer2/msfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msfactory.h -------------------------------------------------------------------------------- /include/mediastreamer2/msfileplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msfileplayer.h -------------------------------------------------------------------------------- /include/mediastreamer2/msfilerec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msfilerec.h -------------------------------------------------------------------------------- /include/mediastreamer2/msfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msfilter.h -------------------------------------------------------------------------------- /include/mediastreamer2/msgenericplc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msgenericplc.h -------------------------------------------------------------------------------- /include/mediastreamer2/msinterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msinterfaces.h -------------------------------------------------------------------------------- /include/mediastreamer2/msitc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msitc.h -------------------------------------------------------------------------------- /include/mediastreamer2/msjava.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msjava.h -------------------------------------------------------------------------------- /include/mediastreamer2/msjpegwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msjpegwriter.h -------------------------------------------------------------------------------- /include/mediastreamer2/msmediaplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msmediaplayer.h -------------------------------------------------------------------------------- /include/mediastreamer2/msmediarecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msmediarecorder.h -------------------------------------------------------------------------------- /include/mediastreamer2/msmire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msmire.h -------------------------------------------------------------------------------- /include/mediastreamer2/msogl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msogl.h -------------------------------------------------------------------------------- /include/mediastreamer2/msogl_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msogl_functions.h -------------------------------------------------------------------------------- /include/mediastreamer2/mspacketrouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mspacketrouter.h -------------------------------------------------------------------------------- /include/mediastreamer2/mspcapfileplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mspcapfileplayer.h -------------------------------------------------------------------------------- /include/mediastreamer2/msqrcodereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msqrcodereader.h -------------------------------------------------------------------------------- /include/mediastreamer2/msqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msqueue.h -------------------------------------------------------------------------------- /include/mediastreamer2/msrtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msrtp.h -------------------------------------------------------------------------------- /include/mediastreamer2/msrtt4103.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msrtt4103.h -------------------------------------------------------------------------------- /include/mediastreamer2/msscreensharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msscreensharing.h -------------------------------------------------------------------------------- /include/mediastreamer2/mssndcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mssndcard.h -------------------------------------------------------------------------------- /include/mediastreamer2/mstee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mstee.h -------------------------------------------------------------------------------- /include/mediastreamer2/msticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msticker.h -------------------------------------------------------------------------------- /include/mediastreamer2/mstonedetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mstonedetector.h -------------------------------------------------------------------------------- /include/mediastreamer2/msudp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msudp.h -------------------------------------------------------------------------------- /include/mediastreamer2/msutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msutils.h -------------------------------------------------------------------------------- /include/mediastreamer2/msv4l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msv4l.h -------------------------------------------------------------------------------- /include/mediastreamer2/msvaddtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msvaddtx.h -------------------------------------------------------------------------------- /include/mediastreamer2/msvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msvideo.h -------------------------------------------------------------------------------- /include/mediastreamer2/msvideoout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msvideoout.h -------------------------------------------------------------------------------- /include/mediastreamer2/msvideopresets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msvideopresets.h -------------------------------------------------------------------------------- /include/mediastreamer2/msvideoqualitycontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msvideoqualitycontroller.h -------------------------------------------------------------------------------- /include/mediastreamer2/msvolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/msvolume.h -------------------------------------------------------------------------------- /include/mediastreamer2/mswebcam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/mswebcam.h -------------------------------------------------------------------------------- /include/mediastreamer2/qualityindicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/qualityindicator.h -------------------------------------------------------------------------------- /include/mediastreamer2/rfc3984.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/rfc3984.h -------------------------------------------------------------------------------- /include/mediastreamer2/stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/stun.h -------------------------------------------------------------------------------- /include/mediastreamer2/upnp_igd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/upnp_igd.h -------------------------------------------------------------------------------- /include/mediastreamer2/video-aggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/video-aggregator.h -------------------------------------------------------------------------------- /include/mediastreamer2/x11_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/x11_helper.h -------------------------------------------------------------------------------- /include/mediastreamer2/zrtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/include/mediastreamer2/zrtp.h -------------------------------------------------------------------------------- /java/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/.classpath -------------------------------------------------------------------------------- /java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/.project -------------------------------------------------------------------------------- /java/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/AndroidManifest.xml -------------------------------------------------------------------------------- /java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/gradlew -------------------------------------------------------------------------------- /java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/gradlew.bat -------------------------------------------------------------------------------- /java/mediastreamerSdk.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/mediastreamerSdk.gradle -------------------------------------------------------------------------------- /java/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/proguard.cfg -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/AACFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/AACFilter.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/Factory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/Factory.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/Log.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/MediastreamException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/MediastreamException.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/MediastreamerAndroidContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/MediastreamerAndroidContext.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/Version.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/Version.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/AndroidVideoWindowImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/AndroidVideoWindowImpl.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/capture/AndroidVideoApi5JniWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/capture/AndroidVideoApi5JniWrapper.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/capture/AndroidVideoApi8JniWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/capture/AndroidVideoApi8JniWrapper.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/capture/AndroidVideoApi9JniWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/capture/AndroidVideoApi9JniWrapper.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/capture/CaptureTextureView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/capture/CaptureTextureView.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/capture/hwconf/AndroidCameraConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/capture/hwconf/AndroidCameraConfiguration.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/capture/hwconf/AndroidCameraConfigurationReader21.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/capture/hwconf/AndroidCameraConfigurationReader21.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/capture/hwconf/AndroidCameraConfigurationReader5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/capture/hwconf/AndroidCameraConfigurationReader5.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/capture/hwconf/AndroidCameraConfigurationReader9.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/capture/hwconf/AndroidCameraConfigurationReader9.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/capture/hwconf/Hacks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/capture/hwconf/Hacks.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/display/GL2JNIView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/display/GL2JNIView.java -------------------------------------------------------------------------------- /java/src/org/linphone/mediastream/video/display/OpenGLESDisplay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/java/src/org/linphone/mediastream/video/display/OpenGLESDisplay.java -------------------------------------------------------------------------------- /m4/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=\ 2 | obsolete.m4 3 | -------------------------------------------------------------------------------- /m4/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/m4/gettext.m4 -------------------------------------------------------------------------------- /m4/ld-output-def.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/m4/ld-output-def.m4 -------------------------------------------------------------------------------- /m4/obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/m4/obsolete.m4 -------------------------------------------------------------------------------- /m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/m4/po.m4 -------------------------------------------------------------------------------- /mediastreamer-config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/mediastreamer-config.h.cmake -------------------------------------------------------------------------------- /mediastreamer.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/mediastreamer.pc.in -------------------------------------------------------------------------------- /mediastreamer2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/mediastreamer2.spec.in -------------------------------------------------------------------------------- /pkg.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/pkg.list -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/.gitignore -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | fr it de ja es pl cs nl sv pt_BR hu ru zh_CN 2 | -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/POTFILES.skip -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/YCbCr_to_RGB.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/YCbCr_to_RGB.frag -------------------------------------------------------------------------------- /src/android/AudioRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/AudioRecord.cpp -------------------------------------------------------------------------------- /src/android/AudioRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/AudioRecord.h -------------------------------------------------------------------------------- /src/android/AudioSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/AudioSystem.cpp -------------------------------------------------------------------------------- /src/android/AudioSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/AudioSystem.h -------------------------------------------------------------------------------- /src/android/AudioTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/AudioTrack.cpp -------------------------------------------------------------------------------- /src/android/AudioTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/AudioTrack.h -------------------------------------------------------------------------------- /src/android/String8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/String8.cpp -------------------------------------------------------------------------------- /src/android/String8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/String8.h -------------------------------------------------------------------------------- /src/android/android-display-bad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/android-display-bad.cpp -------------------------------------------------------------------------------- /src/android/android-display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/android-display.c -------------------------------------------------------------------------------- /src/android/android-opengl-display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/android-opengl-display.c -------------------------------------------------------------------------------- /src/android/android-texture-display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/android-texture-display.c -------------------------------------------------------------------------------- /src/android/android_mediacodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/android_mediacodec.cpp -------------------------------------------------------------------------------- /src/android/android_mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/android_mediacodec.h -------------------------------------------------------------------------------- /src/android/androidsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/androidsound.cpp -------------------------------------------------------------------------------- /src/android/androidsound_depr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/androidsound_depr.cpp -------------------------------------------------------------------------------- /src/android/androidsound_opensles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/androidsound_opensles.cpp -------------------------------------------------------------------------------- /src/android/androidsound_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/androidsound_utils.cpp -------------------------------------------------------------------------------- /src/android/androidsound_utils_depr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/androidsound_utils_depr.cpp -------------------------------------------------------------------------------- /src/android/androidvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/androidvideo.cpp -------------------------------------------------------------------------------- /src/android/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/audio.h -------------------------------------------------------------------------------- /src/android/hardware_echo_canceller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/hardware_echo_canceller.cpp -------------------------------------------------------------------------------- /src/android/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/loader.cpp -------------------------------------------------------------------------------- /src/android/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/loader.h -------------------------------------------------------------------------------- /src/android/media/NdkMediaCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/media/NdkMediaCodec.h -------------------------------------------------------------------------------- /src/android/media/NdkMediaCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/media/NdkMediaCrypto.h -------------------------------------------------------------------------------- /src/android/media/NdkMediaDrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/media/NdkMediaDrm.h -------------------------------------------------------------------------------- /src/android/media/NdkMediaError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/media/NdkMediaError.h -------------------------------------------------------------------------------- /src/android/media/NdkMediaExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/media/NdkMediaExtractor.h -------------------------------------------------------------------------------- /src/android/media/NdkMediaFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/media/NdkMediaFormat.h -------------------------------------------------------------------------------- /src/android/media/NdkMediaMuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/media/NdkMediaMuxer.h -------------------------------------------------------------------------------- /src/android/media/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/android/media/README.txt -------------------------------------------------------------------------------- /src/audiofilters/aac-eld-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/aac-eld-android.cpp -------------------------------------------------------------------------------- /src/audiofilters/aac-eld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/aac-eld.c -------------------------------------------------------------------------------- /src/audiofilters/alaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/alaw.c -------------------------------------------------------------------------------- /src/audiofilters/alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/alsa.c -------------------------------------------------------------------------------- /src/audiofilters/aqsnd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/aqsnd.m -------------------------------------------------------------------------------- /src/audiofilters/arts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/arts.c -------------------------------------------------------------------------------- /src/audiofilters/asyncrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/asyncrw.c -------------------------------------------------------------------------------- /src/audiofilters/asyncrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/asyncrw.h -------------------------------------------------------------------------------- /src/audiofilters/audiomixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/audiomixer.c -------------------------------------------------------------------------------- /src/audiofilters/bv16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/bv16.c -------------------------------------------------------------------------------- /src/audiofilters/chanadapt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/chanadapt.c -------------------------------------------------------------------------------- /src/audiofilters/devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/devices.c -------------------------------------------------------------------------------- /src/audiofilters/dtmfgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/dtmfgen.c -------------------------------------------------------------------------------- /src/audiofilters/equalizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/equalizer.c -------------------------------------------------------------------------------- /src/audiofilters/flowcontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/flowcontrol.c -------------------------------------------------------------------------------- /src/audiofilters/g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/g711.c -------------------------------------------------------------------------------- /src/audiofilters/g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/g711.h -------------------------------------------------------------------------------- /src/audiofilters/g726.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/g726.c -------------------------------------------------------------------------------- /src/audiofilters/g729.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/g729.c -------------------------------------------------------------------------------- /src/audiofilters/genericplc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/genericplc.c -------------------------------------------------------------------------------- /src/audiofilters/genericplc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/genericplc.h -------------------------------------------------------------------------------- /src/audiofilters/gsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/gsm.c -------------------------------------------------------------------------------- /src/audiofilters/l16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/l16.c -------------------------------------------------------------------------------- /src/audiofilters/macsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/macsnd.c -------------------------------------------------------------------------------- /src/audiofilters/msfileplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/msfileplayer.c -------------------------------------------------------------------------------- /src/audiofilters/msfilerec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/msfilerec.c -------------------------------------------------------------------------------- /src/audiofilters/msg722.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/msg722.c -------------------------------------------------------------------------------- /src/audiofilters/msgenericplc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/msgenericplc.c -------------------------------------------------------------------------------- /src/audiofilters/msiounit.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/msiounit.mm -------------------------------------------------------------------------------- /src/audiofilters/msopus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/msopus.c -------------------------------------------------------------------------------- /src/audiofilters/msresample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/msresample.c -------------------------------------------------------------------------------- /src/audiofilters/msspeex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/msspeex.c -------------------------------------------------------------------------------- /src/audiofilters/msvaddtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/msvaddtx.c -------------------------------------------------------------------------------- /src/audiofilters/msvolume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/msvolume.c -------------------------------------------------------------------------------- /src/audiofilters/oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/oss.c -------------------------------------------------------------------------------- /src/audiofilters/pasnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/pasnd.c -------------------------------------------------------------------------------- /src/audiofilters/pulseaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/pulseaudio.c -------------------------------------------------------------------------------- /src/audiofilters/qsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/qsa.c -------------------------------------------------------------------------------- /src/audiofilters/speexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/speexec.c -------------------------------------------------------------------------------- /src/audiofilters/tonedetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/tonedetector.cpp -------------------------------------------------------------------------------- /src/audiofilters/ulaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/ulaw.c -------------------------------------------------------------------------------- /src/audiofilters/waveheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/waveheader.h -------------------------------------------------------------------------------- /src/audiofilters/winsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/winsnd.c -------------------------------------------------------------------------------- /src/audiofilters/winsnd2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/winsnd2.c -------------------------------------------------------------------------------- /src/audiofilters/winsnd3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/winsnd3.c -------------------------------------------------------------------------------- /src/audiofilters/winsndds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/audiofilters/winsndds.cpp -------------------------------------------------------------------------------- /src/base/eventqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/base/eventqueue.c -------------------------------------------------------------------------------- /src/base/msasync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/base/msasync.c -------------------------------------------------------------------------------- /src/base/mscommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/base/mscommon.c -------------------------------------------------------------------------------- /src/base/msfactory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/base/msfactory.c -------------------------------------------------------------------------------- /src/base/msfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/base/msfilter.c -------------------------------------------------------------------------------- /src/base/msqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/base/msqueue.c -------------------------------------------------------------------------------- /src/base/mssndcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/base/mssndcard.c -------------------------------------------------------------------------------- /src/base/msticker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/base/msticker.c -------------------------------------------------------------------------------- /src/base/msvideopresets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/base/msvideopresets.c -------------------------------------------------------------------------------- /src/base/mswebcam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/base/mswebcam.c -------------------------------------------------------------------------------- /src/base/mtu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/base/mtu.c -------------------------------------------------------------------------------- /src/baudot/baudot_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/baudot/baudot_context.h -------------------------------------------------------------------------------- /src/baudot/baudot_decoding_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/baudot/baudot_decoding_context.cpp -------------------------------------------------------------------------------- /src/baudot/baudot_decoding_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/baudot/baudot_decoding_context.h -------------------------------------------------------------------------------- /src/baudot/baudot_detector_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/baudot/baudot_detector_filter.cpp -------------------------------------------------------------------------------- /src/baudot/baudot_encoding_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/baudot/baudot_encoding_context.cpp -------------------------------------------------------------------------------- /src/baudot/baudot_encoding_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/baudot/baudot_encoding_context.h -------------------------------------------------------------------------------- /src/baudot/baudot_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/baudot/baudot_filters.h -------------------------------------------------------------------------------- /src/baudot/baudot_generator_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/baudot/baudot_generator_filter.cpp -------------------------------------------------------------------------------- /src/crypto/dtls_srtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/crypto/dtls_srtp.cpp -------------------------------------------------------------------------------- /src/crypto/ms_srtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/crypto/ms_srtp.cpp -------------------------------------------------------------------------------- /src/crypto/zrtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/crypto/zrtp.c -------------------------------------------------------------------------------- /src/dxfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/dxfilter.cpp -------------------------------------------------------------------------------- /src/dxfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/dxfilter.h -------------------------------------------------------------------------------- /src/filter-template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/filter-template.c -------------------------------------------------------------------------------- /src/generate_descs_header.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/generate_descs_header.cmake -------------------------------------------------------------------------------- /src/generate_yuv2rgb_header.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/generate_yuv2rgb_header.cmake -------------------------------------------------------------------------------- /src/libsrtp.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/libsrtp.map -------------------------------------------------------------------------------- /src/otherfilters/itc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/otherfilters/itc.c -------------------------------------------------------------------------------- /src/otherfilters/join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/otherfilters/join.c -------------------------------------------------------------------------------- /src/otherfilters/mspcapfileplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/otherfilters/mspcapfileplayer.c -------------------------------------------------------------------------------- /src/otherfilters/msrtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/otherfilters/msrtp.c -------------------------------------------------------------------------------- /src/otherfilters/msudp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/otherfilters/msudp.c -------------------------------------------------------------------------------- /src/otherfilters/rfc4103_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/otherfilters/rfc4103_sink.c -------------------------------------------------------------------------------- /src/otherfilters/rfc4103_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/otherfilters/rfc4103_source.c -------------------------------------------------------------------------------- /src/otherfilters/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/otherfilters/tee.c -------------------------------------------------------------------------------- /src/otherfilters/void.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/otherfilters/void.c -------------------------------------------------------------------------------- /src/screen_transform.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/screen_transform.vert -------------------------------------------------------------------------------- /src/upnp/upnp_igd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/upnp/upnp_igd.c -------------------------------------------------------------------------------- /src/upnp/upnp_igd_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/upnp/upnp_igd_cmd.c -------------------------------------------------------------------------------- /src/upnp/upnp_igd_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/upnp/upnp_igd_private.h -------------------------------------------------------------------------------- /src/upnp/upnp_igd_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/upnp/upnp_igd_utils.c -------------------------------------------------------------------------------- /src/upnp/upnp_igd_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/upnp/upnp_igd_utils.h -------------------------------------------------------------------------------- /src/utils/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/_kiss_fft_guts.h -------------------------------------------------------------------------------- /src/utils/apple_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/apple_utils.h -------------------------------------------------------------------------------- /src/utils/apple_utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/apple_utils.m -------------------------------------------------------------------------------- /src/utils/audiodiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/audiodiff.c -------------------------------------------------------------------------------- /src/utils/bits_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/bits_rw.c -------------------------------------------------------------------------------- /src/utils/box-plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/box-plot.c -------------------------------------------------------------------------------- /src/utils/dsptools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/dsptools.c -------------------------------------------------------------------------------- /src/utils/fd_portab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/fd_portab.h -------------------------------------------------------------------------------- /src/utils/ffmpeg-priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/ffmpeg-priv.c -------------------------------------------------------------------------------- /src/utils/ffmpeg-priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/ffmpeg-priv.h -------------------------------------------------------------------------------- /src/utils/filter-interface/decoder-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/filter-interface/decoder-filter.h -------------------------------------------------------------------------------- /src/utils/filter-interface/encoder-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/filter-interface/encoder-filter.h -------------------------------------------------------------------------------- /src/utils/filter-interface/filter-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/filter-interface/filter-base.h -------------------------------------------------------------------------------- /src/utils/filter-wrapper/decoding-filter-wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/filter-wrapper/decoding-filter-wrapper.cpp -------------------------------------------------------------------------------- /src/utils/filter-wrapper/decoding-filter-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/filter-wrapper/decoding-filter-wrapper.h -------------------------------------------------------------------------------- /src/utils/filter-wrapper/encoding-filter-wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/filter-wrapper/encoding-filter-wrapper.cpp -------------------------------------------------------------------------------- /src/utils/filter-wrapper/encoding-filter-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/filter-wrapper/encoding-filter-wrapper.h -------------------------------------------------------------------------------- /src/utils/filter-wrapper/filter-wrapper-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/filter-wrapper/filter-wrapper-base.h -------------------------------------------------------------------------------- /src/utils/g722.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/g722.h -------------------------------------------------------------------------------- /src/utils/g722_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/g722_decode.c -------------------------------------------------------------------------------- /src/utils/g722_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/g722_encode.c -------------------------------------------------------------------------------- /src/utils/goertzel_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/goertzel_state.cpp -------------------------------------------------------------------------------- /src/utils/goertzel_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/goertzel_state.h -------------------------------------------------------------------------------- /src/utils/jpgloader-ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/jpgloader-ffmpeg.c -------------------------------------------------------------------------------- /src/utils/jpgloader-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/jpgloader-stub.c -------------------------------------------------------------------------------- /src/utils/jpgloader-turbojpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/jpgloader-turbojpeg.c -------------------------------------------------------------------------------- /src/utils/key-frame-indicator/header-extension-key-frame-indicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/key-frame-indicator/header-extension-key-frame-indicator.cpp -------------------------------------------------------------------------------- /src/utils/key-frame-indicator/header-extension-key-frame-indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/key-frame-indicator/header-extension-key-frame-indicator.h -------------------------------------------------------------------------------- /src/utils/key-frame-indicator/key-frame-indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/key-frame-indicator/key-frame-indicator.h -------------------------------------------------------------------------------- /src/utils/key-frame-indicator/vp8-key-frame-indicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/key-frame-indicator/vp8-key-frame-indicator.cpp -------------------------------------------------------------------------------- /src/utils/key-frame-indicator/vp8-key-frame-indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/key-frame-indicator/vp8-key-frame-indicator.h -------------------------------------------------------------------------------- /src/utils/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/kiss_fft.c -------------------------------------------------------------------------------- /src/utils/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/kiss_fft.h -------------------------------------------------------------------------------- /src/utils/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/kiss_fftr.c -------------------------------------------------------------------------------- /src/utils/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/kiss_fftr.h -------------------------------------------------------------------------------- /src/utils/mkv_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/mkv_reader.cpp -------------------------------------------------------------------------------- /src/utils/mkv_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/mkv_reader.h -------------------------------------------------------------------------------- /src/utils/msjava.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/msjava.c -------------------------------------------------------------------------------- /src/utils/opengl_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/opengl_debug.h -------------------------------------------------------------------------------- /src/utils/opengl_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/opengl_functions.c -------------------------------------------------------------------------------- /src/utils/opengl_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/opengl_functions.h -------------------------------------------------------------------------------- /src/utils/opengles_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/opengles_display.c -------------------------------------------------------------------------------- /src/utils/opengles_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/opengles_display.h -------------------------------------------------------------------------------- /src/utils/pcap_sender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/pcap_sender.c -------------------------------------------------------------------------------- /src/utils/pcap_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/pcap_sender.h -------------------------------------------------------------------------------- /src/utils/shader_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/shader_util.c -------------------------------------------------------------------------------- /src/utils/shader_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/shader_util.h -------------------------------------------------------------------------------- /src/utils/srtp_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/srtp_prefix.h -------------------------------------------------------------------------------- /src/utils/stream_regulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/stream_regulator.c -------------------------------------------------------------------------------- /src/utils/stream_regulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/stream_regulator.h -------------------------------------------------------------------------------- /src/utils/vfw-missing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/vfw-missing.h -------------------------------------------------------------------------------- /src/utils/x11_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/utils/x11_helper.c -------------------------------------------------------------------------------- /src/videofilters/av1/decoder/av1-decoder-filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/decoder/av1-decoder-filter.cpp -------------------------------------------------------------------------------- /src/videofilters/av1/decoder/av1-decoder-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/decoder/av1-decoder-filter.h -------------------------------------------------------------------------------- /src/videofilters/av1/decoder/av1-decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/decoder/av1-decoder.cpp -------------------------------------------------------------------------------- /src/videofilters/av1/decoder/av1-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/decoder/av1-decoder.h -------------------------------------------------------------------------------- /src/videofilters/av1/encoder/av1-encoder-filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/encoder/av1-encoder-filter.cpp -------------------------------------------------------------------------------- /src/videofilters/av1/encoder/av1-encoder-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/encoder/av1-encoder-filter.h -------------------------------------------------------------------------------- /src/videofilters/av1/encoder/av1-encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/encoder/av1-encoder.cpp -------------------------------------------------------------------------------- /src/videofilters/av1/encoder/av1-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/encoder/av1-encoder.h -------------------------------------------------------------------------------- /src/videofilters/av1/obu/obu-key-frame-indicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/obu/obu-key-frame-indicator.cpp -------------------------------------------------------------------------------- /src/videofilters/av1/obu/obu-key-frame-indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/obu/obu-key-frame-indicator.h -------------------------------------------------------------------------------- /src/videofilters/av1/obu/obu-packer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/obu/obu-packer.cpp -------------------------------------------------------------------------------- /src/videofilters/av1/obu/obu-packer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/obu/obu-packer.h -------------------------------------------------------------------------------- /src/videofilters/av1/obu/obu-unpacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/obu/obu-unpacker.cpp -------------------------------------------------------------------------------- /src/videofilters/av1/obu/obu-unpacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/obu/obu-unpacker.h -------------------------------------------------------------------------------- /src/videofilters/av1/obu/obuparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/obu/obuparse.c -------------------------------------------------------------------------------- /src/videofilters/av1/obu/obuparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/av1/obu/obuparse.h -------------------------------------------------------------------------------- /src/videofilters/avfound-capture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/avfound-capture.m -------------------------------------------------------------------------------- /src/videofilters/bb10_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/bb10_capture.cpp -------------------------------------------------------------------------------- /src/videofilters/bb10_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/bb10_display.cpp -------------------------------------------------------------------------------- /src/videofilters/drawdib-display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/drawdib-display.c -------------------------------------------------------------------------------- /src/videofilters/dummy_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/dummy_codec.c -------------------------------------------------------------------------------- /src/videofilters/extdisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/extdisplay.c -------------------------------------------------------------------------------- /src/videofilters/ffmpegjpegwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/ffmpegjpegwriter.c -------------------------------------------------------------------------------- /src/videofilters/generic_opengl_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/generic_opengl_display.c -------------------------------------------------------------------------------- /src/videofilters/glxvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/glxvideo.c -------------------------------------------------------------------------------- /src/videofilters/h264dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h264dec.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/CMakeLists.txt -------------------------------------------------------------------------------- /src/videofilters/h26x/h264-nal-packer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h264-nal-packer.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/h264-nal-packer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h264-nal-packer.h -------------------------------------------------------------------------------- /src/videofilters/h26x/h264-nal-unpacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h264-nal-unpacker.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/h264-nal-unpacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h264-nal-unpacker.h -------------------------------------------------------------------------------- /src/videofilters/h26x/h264-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h264-utils.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/h264-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h264-utils.h -------------------------------------------------------------------------------- /src/videofilters/h26x/h265-nal-packer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h265-nal-packer.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/h265-nal-packer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h265-nal-packer.h -------------------------------------------------------------------------------- /src/videofilters/h26x/h265-nal-unpacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h265-nal-unpacker.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/h265-nal-unpacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h265-nal-unpacker.h -------------------------------------------------------------------------------- /src/videofilters/h26x/h265-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h265-utils.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/h265-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h265-utils.h -------------------------------------------------------------------------------- /src/videofilters/h26x/h26x-decoder-filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h26x-decoder-filter.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/h26x-decoder-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h26x-decoder-filter.h -------------------------------------------------------------------------------- /src/videofilters/h26x/h26x-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h26x-decoder.h -------------------------------------------------------------------------------- /src/videofilters/h26x/h26x-encoder-filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h26x-encoder-filter.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/h26x-encoder-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h26x-encoder-filter.h -------------------------------------------------------------------------------- /src/videofilters/h26x/h26x-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h26x-encoder.h -------------------------------------------------------------------------------- /src/videofilters/h26x/h26x-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h26x-utils.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/h26x-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/h26x-utils.h -------------------------------------------------------------------------------- /src/videofilters/h26x/media-codec-decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/media-codec-decoder.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/media-codec-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/media-codec-decoder.h -------------------------------------------------------------------------------- /src/videofilters/h26x/media-codec-encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/media-codec-encoder.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/media-codec-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/media-codec-encoder.h -------------------------------------------------------------------------------- /src/videofilters/h26x/media-codec-h264-decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/media-codec-h264-decoder.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/media-codec-h264-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/media-codec-h264-decoder.h -------------------------------------------------------------------------------- /src/videofilters/h26x/media-codec-h264-encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/media-codec-h264-encoder.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/media-codec-h265-decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/media-codec-h265-decoder.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/media-codec-h265-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/media-codec-h265-decoder.h -------------------------------------------------------------------------------- /src/videofilters/h26x/media-codec-h265-encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/media-codec-h265-encoder.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/nal-packer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/nal-packer.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/nal-packer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/nal-packer.h -------------------------------------------------------------------------------- /src/videofilters/h26x/nal-unpacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/nal-unpacker.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/nal-unpacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/nal-unpacker.h -------------------------------------------------------------------------------- /src/videofilters/h26x/rfc3984.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/rfc3984.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/videotoolbox-decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/videotoolbox-decoder.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/videotoolbox-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/videotoolbox-decoder.h -------------------------------------------------------------------------------- /src/videofilters/h26x/videotoolbox-encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/videotoolbox-encoder.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/videotoolbox-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/videotoolbox-encoder.h -------------------------------------------------------------------------------- /src/videofilters/h26x/videotoolbox-h264-utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/videotoolbox-h264-utilities.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/videotoolbox-h264-utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/videotoolbox-h264-utilities.h -------------------------------------------------------------------------------- /src/videofilters/h26x/videotoolbox-h265-utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/videotoolbox-h265-utilities.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/videotoolbox-h265-utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/videotoolbox-h265-utilities.h -------------------------------------------------------------------------------- /src/videofilters/h26x/videotoolbox-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/videotoolbox-utils.cpp -------------------------------------------------------------------------------- /src/videofilters/h26x/videotoolbox-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/videotoolbox-utils.h -------------------------------------------------------------------------------- /src/videofilters/h26x/videotoolbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/h26x/videotoolbox.cpp -------------------------------------------------------------------------------- /src/videofilters/ioscapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/ioscapture.m -------------------------------------------------------------------------------- /src/videofilters/iosdisplay.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/iosdisplay.mm -------------------------------------------------------------------------------- /src/videofilters/mire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/mire.c -------------------------------------------------------------------------------- /src/videofilters/mkv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/mkv.cpp -------------------------------------------------------------------------------- /src/videofilters/msanalysedisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msanalysedisplay.c -------------------------------------------------------------------------------- /src/videofilters/msdscap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msdscap.cc -------------------------------------------------------------------------------- /src/videofilters/msmfoundationcap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msmfoundationcap.cpp -------------------------------------------------------------------------------- /src/videofilters/msmfoundationcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msmfoundationcap.h -------------------------------------------------------------------------------- /src/videofilters/msosxdisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msosxdisplay.m -------------------------------------------------------------------------------- /src/videofilters/msqogl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msqogl.cpp -------------------------------------------------------------------------------- /src/videofilters/msqogl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msqogl.h -------------------------------------------------------------------------------- /src/videofilters/msscreensharing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msscreensharing.cpp -------------------------------------------------------------------------------- /src/videofilters/msscreensharing_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msscreensharing_mac.h -------------------------------------------------------------------------------- /src/videofilters/msscreensharing_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msscreensharing_mac.mm -------------------------------------------------------------------------------- /src/videofilters/msscreensharing_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msscreensharing_private.h -------------------------------------------------------------------------------- /src/videofilters/msscreensharing_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msscreensharing_win.cpp -------------------------------------------------------------------------------- /src/videofilters/msscreensharing_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msscreensharing_win.h -------------------------------------------------------------------------------- /src/videofilters/msscreensharing_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msscreensharing_x11.cpp -------------------------------------------------------------------------------- /src/videofilters/msscreensharing_x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msscreensharing_x11.h -------------------------------------------------------------------------------- /src/videofilters/msturbojpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msturbojpeg.cpp -------------------------------------------------------------------------------- /src/videofilters/msv4l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msv4l.c -------------------------------------------------------------------------------- /src/videofilters/msv4l2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/msv4l2.c -------------------------------------------------------------------------------- /src/videofilters/multimedia-container-interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/multimedia-container-interface.h -------------------------------------------------------------------------------- /src/videofilters/nowebcam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/nowebcam.c -------------------------------------------------------------------------------- /src/videofilters/packet-router.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/packet-router.cpp -------------------------------------------------------------------------------- /src/videofilters/packet-router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/packet-router.h -------------------------------------------------------------------------------- /src/videofilters/pixconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/pixconv.c -------------------------------------------------------------------------------- /src/videofilters/qtcapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/qtcapture.m -------------------------------------------------------------------------------- /src/videofilters/sizeconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/sizeconv.c -------------------------------------------------------------------------------- /src/videofilters/smff/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/smff/player.cpp -------------------------------------------------------------------------------- /src/videofilters/smff/recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/smff/recorder.cpp -------------------------------------------------------------------------------- /src/videofilters/smff/smff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/smff/smff.cpp -------------------------------------------------------------------------------- /src/videofilters/smff/smff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/smff/smff.h -------------------------------------------------------------------------------- /src/videofilters/theora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/theora.c -------------------------------------------------------------------------------- /src/videofilters/turbojpegwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/turbojpegwriter.c -------------------------------------------------------------------------------- /src/videofilters/video-aggregator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/video-aggregator.c -------------------------------------------------------------------------------- /src/videofilters/videodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/videodec.c -------------------------------------------------------------------------------- /src/videofilters/videoenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/videoenc.c -------------------------------------------------------------------------------- /src/videofilters/videoout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/videoout.c -------------------------------------------------------------------------------- /src/videofilters/videorouter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/videorouter.c -------------------------------------------------------------------------------- /src/videofilters/vp8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/vp8.c -------------------------------------------------------------------------------- /src/videofilters/wincevideods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/wincevideods.c -------------------------------------------------------------------------------- /src/videofilters/winvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/winvideo.c -------------------------------------------------------------------------------- /src/videofilters/winvideo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/winvideo2.c -------------------------------------------------------------------------------- /src/videofilters/winvideods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/winvideods.c -------------------------------------------------------------------------------- /src/videofilters/x11video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/x11video.c -------------------------------------------------------------------------------- /src/videofilters/zxing_qrcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/videofilters/zxing_qrcode.cpp -------------------------------------------------------------------------------- /src/voip/audioconference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/audioconference.c -------------------------------------------------------------------------------- /src/voip/audiostream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/audiostream.c -------------------------------------------------------------------------------- /src/voip/audiostreamvolumes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/audiostreamvolumes.cpp -------------------------------------------------------------------------------- /src/voip/bandwidthcontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/bandwidthcontroller.c -------------------------------------------------------------------------------- /src/voip/bitratecontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/bitratecontrol.c -------------------------------------------------------------------------------- /src/voip/bitratedriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/bitratedriver.c -------------------------------------------------------------------------------- /src/voip/ice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/ice.c -------------------------------------------------------------------------------- /src/voip/ioshardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/ioshardware.h -------------------------------------------------------------------------------- /src/voip/ioshardware.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/ioshardware.m -------------------------------------------------------------------------------- /src/voip/layouts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/layouts.c -------------------------------------------------------------------------------- /src/voip/layouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/layouts.h -------------------------------------------------------------------------------- /src/voip/mediastream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/mediastream.c -------------------------------------------------------------------------------- /src/voip/msiframerequestslimiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/msiframerequestslimiter.c -------------------------------------------------------------------------------- /src/voip/msmediaplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/msmediaplayer.c -------------------------------------------------------------------------------- /src/voip/msmediarecorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/msmediarecorder.c -------------------------------------------------------------------------------- /src/voip/msvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/msvideo.c -------------------------------------------------------------------------------- /src/voip/msvideo_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/msvideo_neon.c -------------------------------------------------------------------------------- /src/voip/msvideo_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/msvideo_neon.h -------------------------------------------------------------------------------- /src/voip/msvideoqualitycontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/msvideoqualitycontroller.c -------------------------------------------------------------------------------- /src/voip/msvoip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/msvoip.c -------------------------------------------------------------------------------- /src/voip/msvoip_jni.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/msvoip_jni.cc -------------------------------------------------------------------------------- /src/voip/nowebcam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/nowebcam.h -------------------------------------------------------------------------------- /src/voip/nowebcamCIF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/nowebcamCIF.jpg -------------------------------------------------------------------------------- /src/voip/offeranswer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/offeranswer.c -------------------------------------------------------------------------------- /src/voip/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/private.h -------------------------------------------------------------------------------- /src/voip/qosanalyzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/qosanalyzer.c -------------------------------------------------------------------------------- /src/voip/qosanalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/qosanalyzer.h -------------------------------------------------------------------------------- /src/voip/qrcodesite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/qrcodesite.jpg -------------------------------------------------------------------------------- /src/voip/qualityindicator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/qualityindicator.c -------------------------------------------------------------------------------- /src/voip/rfc2429.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/rfc2429.h -------------------------------------------------------------------------------- /src/voip/rfc4103_textstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/rfc4103_textstream.c -------------------------------------------------------------------------------- /src/voip/ringstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/ringstream.c -------------------------------------------------------------------------------- /src/voip/scaler_arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/scaler_arm.S -------------------------------------------------------------------------------- /src/voip/stun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/stun.c -------------------------------------------------------------------------------- /src/voip/turn_tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/turn_tcp.cpp -------------------------------------------------------------------------------- /src/voip/turn_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/turn_tcp.h -------------------------------------------------------------------------------- /src/voip/video-conference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/video-conference.cpp -------------------------------------------------------------------------------- /src/voip/video-conference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/video-conference.h -------------------------------------------------------------------------------- /src/voip/video-decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/video-decoder.h -------------------------------------------------------------------------------- /src/voip/video-encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/video-encoder.h -------------------------------------------------------------------------------- /src/voip/video-endpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/video-endpoint.cpp -------------------------------------------------------------------------------- /src/voip/video_preset_high_fps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/video_preset_high_fps.c -------------------------------------------------------------------------------- /src/voip/videostarter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/videostarter.c -------------------------------------------------------------------------------- /src/voip/videostream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/videostream.c -------------------------------------------------------------------------------- /src/voip/vp8rtpfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/vp8rtpfmt.c -------------------------------------------------------------------------------- /src/voip/vp8rtpfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/voip/vp8rtpfmt.h -------------------------------------------------------------------------------- /src/yuv2rgb.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/yuv2rgb.fs -------------------------------------------------------------------------------- /src/yuv2rgb.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/src/yuv2rgb.vs -------------------------------------------------------------------------------- /tester/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/CMakeLists.txt -------------------------------------------------------------------------------- /tester/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/Makefile.am -------------------------------------------------------------------------------- /tester/filters/framemarking_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/filters/framemarking_tester.c -------------------------------------------------------------------------------- /tester/filters/framemarking_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/filters/framemarking_tester.h -------------------------------------------------------------------------------- /tester/images/qrcodesite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/images/qrcodesite.jpg -------------------------------------------------------------------------------- /tester/images/qrcodesite_captured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/images/qrcodesite_captured.jpg -------------------------------------------------------------------------------- /tester/images/qrcodesite_inclined.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/images/qrcodesite_inclined.jpg -------------------------------------------------------------------------------- /tester/images/qrcodesite_screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/images/qrcodesite_screen.jpg -------------------------------------------------------------------------------- /tester/mediastreamer2_adaptive_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_adaptive_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_aec3_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_aec3_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_audio_stream_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_audio_stream_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_basic_audio_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_basic_audio_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_baudot_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_baudot_tester.cpp -------------------------------------------------------------------------------- /tester/mediastreamer2_codec_impl_testers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_codec_impl_testers.c -------------------------------------------------------------------------------- /tester/mediastreamer2_double_encryption_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_double_encryption_tester.cpp -------------------------------------------------------------------------------- /tester/mediastreamer2_framework_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_framework_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_h26x_tools_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_h26x_tools_tester.cpp -------------------------------------------------------------------------------- /tester/mediastreamer2_jitterbuffer_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_jitterbuffer_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_neon_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_neon_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_player_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_player_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_qrcode_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_qrcode_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_recorder_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_recorder_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_sound_card_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_sound_card_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_tester.h -------------------------------------------------------------------------------- /tester/mediastreamer2_tester_cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_tester_cocoa.m -------------------------------------------------------------------------------- /tester/mediastreamer2_tester_ios.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_tester_ios.m -------------------------------------------------------------------------------- /tester/mediastreamer2_tester_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_tester_private.c -------------------------------------------------------------------------------- /tester/mediastreamer2_tester_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_tester_private.h -------------------------------------------------------------------------------- /tester/mediastreamer2_tester_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_tester_utils.cpp -------------------------------------------------------------------------------- /tester/mediastreamer2_tester_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_tester_utils.h -------------------------------------------------------------------------------- /tester/mediastreamer2_tester_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_tester_windows.cpp -------------------------------------------------------------------------------- /tester/mediastreamer2_tester_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_tester_windows.h -------------------------------------------------------------------------------- /tester/mediastreamer2_text_stream_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_text_stream_tester.c -------------------------------------------------------------------------------- /tester/mediastreamer2_video_stream_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/mediastreamer2_video_stream_tester.c -------------------------------------------------------------------------------- /tester/raw/h265-iframe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/raw/h265-iframe -------------------------------------------------------------------------------- /tester/raw/h265-parameter-sets-frame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/raw/h265-parameter-sets-frame -------------------------------------------------------------------------------- /tester/scenarios/congestion/audio-80-75-0c60.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/congestion/audio-80-75-0c60.pcapng -------------------------------------------------------------------------------- /tester/scenarios/congestion/audio-80-75-0f35c95f120.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/congestion/audio-80-75-0f35c95f120.pcapng -------------------------------------------------------------------------------- /tester/scenarios/congestion/video-160-0-0a5f30.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/congestion/video-160-0-0a5f30.pcapng -------------------------------------------------------------------------------- /tester/scenarios/congestion/video-160-120-0f20c60.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/congestion/video-160-120-0f20c60.pcapng -------------------------------------------------------------------------------- /tester/scenarios/congestion/video-160-90-0a5c30.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/congestion/video-160-90-0a5c30.pcapng -------------------------------------------------------------------------------- /tester/scenarios/firstvalid.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/firstvalid.pcapng -------------------------------------------------------------------------------- /tester/scenarios/h264_missing_pps_in_second_i_frame.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/h264_missing_pps_in_second_i_frame.pcap -------------------------------------------------------------------------------- /tester/scenarios/h264_one_nalu_per_frame.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/h264_one_nalu_per_frame.pcap -------------------------------------------------------------------------------- /tester/scenarios/h264_one_nalu_per_frame_with_corrupted_idr.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/h264_one_nalu_per_frame_with_corrupted_idr.pcap -------------------------------------------------------------------------------- /tester/scenarios/opus-edge-congestion20_60_40.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/opus-edge-congestion20_60_40.pcapng -------------------------------------------------------------------------------- /tester/scenarios/opus-poor-quality.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/opus-poor-quality.pcapng -------------------------------------------------------------------------------- /tester/scenarios/pcmu_8k_no_jitter.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/pcmu_8k_no_jitter.pcap -------------------------------------------------------------------------------- /tester/scenarios/poor_jitter_quality_22.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/poor_jitter_quality_22.pcapng -------------------------------------------------------------------------------- /tester/scenarios/poor_jitter_quality_22_filter.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/poor_jitter_quality_22_filter.pcapng -------------------------------------------------------------------------------- /tester/scenarios/rtp-120late-1000total.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/rtp-120late-1000total.pcapng -------------------------------------------------------------------------------- /tester/scenarios/rtp-240late-2000total.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/rtp-240late-2000total.pcapng -------------------------------------------------------------------------------- /tester/scenarios/rtp-534late-24loss-7000total.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/rtp-534late-24loss-7000total.pcapng -------------------------------------------------------------------------------- /tester/scenarios/rtp-60late-500total.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/rtp-60late-500total.pcapng -------------------------------------------------------------------------------- /tester/scenarios/secondvalid.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/scenarios/secondvalid.pcapng -------------------------------------------------------------------------------- /tester/smff_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/smff_tester.cpp -------------------------------------------------------------------------------- /tester/sounds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/README.md -------------------------------------------------------------------------------- /tester/sounds/arpeggio_8000_mono.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/arpeggio_8000_mono.wav -------------------------------------------------------------------------------- /tester/sounds/baudot_alphabet_silence.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/baudot_alphabet_silence.wav -------------------------------------------------------------------------------- /tester/sounds/baudot_mono_alphabet_letter_by_letter_us.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/baudot_mono_alphabet_letter_by_letter_us.wav -------------------------------------------------------------------------------- /tester/sounds/baudot_mono_alphabet_us.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/baudot_mono_alphabet_us.wav -------------------------------------------------------------------------------- /tester/sounds/baudot_mono_digits_us.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/baudot_mono_digits_us.wav -------------------------------------------------------------------------------- /tester/sounds/baudot_stereo_alphabet_us.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/baudot_stereo_alphabet_us.wav -------------------------------------------------------------------------------- /tester/sounds/bird_44100_stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/bird_44100_stereo.wav -------------------------------------------------------------------------------- /tester/sounds/chimes_48000_stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/chimes_48000_stereo.wav -------------------------------------------------------------------------------- /tester/sounds/echo_delay_change.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/echo_delay_change.wav -------------------------------------------------------------------------------- /tester/sounds/echo_double_talk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/echo_double_talk.wav -------------------------------------------------------------------------------- /tester/sounds/echo_simple_talk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/echo_simple_talk.wav -------------------------------------------------------------------------------- /tester/sounds/farend_double_talk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/farend_double_talk.wav -------------------------------------------------------------------------------- /tester/sounds/farend_simple_talk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/farend_simple_talk.wav -------------------------------------------------------------------------------- /tester/sounds/hello16000-1s.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/hello16000-1s.wav -------------------------------------------------------------------------------- /tester/sounds/hello16000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/hello16000.wav -------------------------------------------------------------------------------- /tester/sounds/hello8000-1s.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/hello8000-1s.wav -------------------------------------------------------------------------------- /tester/sounds/hello8000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/hello8000.wav -------------------------------------------------------------------------------- /tester/sounds/hello_opus.mka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/hello_opus.mka -------------------------------------------------------------------------------- /tester/sounds/hello_pcmu.mka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/hello_pcmu.mka -------------------------------------------------------------------------------- /tester/sounds/laserrocket_16000_mono.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/laserrocket_16000_mono.wav -------------------------------------------------------------------------------- /tester/sounds/nearend_double_talk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/nearend_double_talk.wav -------------------------------------------------------------------------------- /tester/sounds/nearend_simple_talk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/nearend_simple_talk.wav -------------------------------------------------------------------------------- /tester/sounds/nylon_48000_mono.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/nylon_48000_mono.wav -------------------------------------------------------------------------------- /tester/sounds/owl_44100_mono.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/owl_44100_mono.wav -------------------------------------------------------------------------------- /tester/sounds/piano_8000_stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/piano_8000_stereo.wav -------------------------------------------------------------------------------- /tester/sounds/punch_16000_stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/punch_16000_stereo.wav -------------------------------------------------------------------------------- /tester/sounds/sintel_trailer_opus_h264.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/sintel_trailer_opus_h264.mkv -------------------------------------------------------------------------------- /tester/sounds/sintel_trailer_opus_vp8.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/sintel_trailer_opus_vp8.mkv -------------------------------------------------------------------------------- /tester/sounds/sintel_trailer_pcmu_h264.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/sintel_trailer_pcmu_h264.mkv -------------------------------------------------------------------------------- /tester/sounds/test_silence_voice_16000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/test_silence_voice_16000.wav -------------------------------------------------------------------------------- /tester/sounds/test_silence_voice_32000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/test_silence_voice_32000.wav -------------------------------------------------------------------------------- /tester/sounds/test_silence_voice_44100.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/test_silence_voice_44100.wav -------------------------------------------------------------------------------- /tester/sounds/test_silence_voice_48000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/test_silence_voice_48000.wav -------------------------------------------------------------------------------- /tester/sounds/test_silence_voice_8000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/test_silence_voice_8000.wav -------------------------------------------------------------------------------- /tester/sounds/white_noise.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tester/sounds/white_noise.wav -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/Android.mk -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/audio/aec/aec_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/audio/aec/aec_files.py -------------------------------------------------------------------------------- /tools/audio/aec/aec_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/audio/aec/aec_metrics.py -------------------------------------------------------------------------------- /tools/audio/aec/aec_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/audio/aec/aec_tests.py -------------------------------------------------------------------------------- /tools/audio/aec/audio_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/audio/aec/audio_analysis.py -------------------------------------------------------------------------------- /tools/audio/aec/audio_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/audio/aec/audio_signal.py -------------------------------------------------------------------------------- /tools/audio/aec/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/audio/aec/main.py -------------------------------------------------------------------------------- /tools/audio/aec/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/audio/aec/poetry.lock -------------------------------------------------------------------------------- /tools/audio/aec/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/audio/aec/pyproject.toml -------------------------------------------------------------------------------- /tools/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/bench.c -------------------------------------------------------------------------------- /tools/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/common.c -------------------------------------------------------------------------------- /tools/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/common.h -------------------------------------------------------------------------------- /tools/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/echo.c -------------------------------------------------------------------------------- /tools/filters_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/filters_graph.py -------------------------------------------------------------------------------- /tools/ios/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /tools/ios/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/ios/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /tools/ios/en.lproj/mediastreamViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/ios/en.lproj/mediastreamViewController.xib -------------------------------------------------------------------------------- /tools/ios/mediastream-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/ios/mediastream-Info.plist -------------------------------------------------------------------------------- /tools/ios/mediastream-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/ios/mediastream-Prefix.pch -------------------------------------------------------------------------------- /tools/ios/mediastream-tester-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/ios/mediastream-tester-Info.plist -------------------------------------------------------------------------------- /tools/ios/mediastreamAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/ios/mediastreamAppDelegate.h -------------------------------------------------------------------------------- /tools/ios/mediastreamAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/ios/mediastreamAppDelegate.m -------------------------------------------------------------------------------- /tools/ios/mediastreamViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/ios/mediastreamViewController.h -------------------------------------------------------------------------------- /tools/ios/mediastreamViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/ios/mediastreamViewController.m -------------------------------------------------------------------------------- /tools/mediastream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/mediastream.c -------------------------------------------------------------------------------- /tools/mediastream_cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/mediastream_cocoa.m -------------------------------------------------------------------------------- /tools/mkvstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/mkvstream.c -------------------------------------------------------------------------------- /tools/msaudiocmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/msaudiocmp.c -------------------------------------------------------------------------------- /tools/mtudiscover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/mtudiscover.c -------------------------------------------------------------------------------- /tools/pcap_playback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/pcap_playback.c -------------------------------------------------------------------------------- /tools/pcap_player_cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/pcap_player_cocoa.m -------------------------------------------------------------------------------- /tools/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/player.c -------------------------------------------------------------------------------- /tools/recorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/recorder.c -------------------------------------------------------------------------------- /tools/ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/ring.c -------------------------------------------------------------------------------- /tools/ring_jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/ring_jni.c -------------------------------------------------------------------------------- /tools/test_x11window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/test_x11window.c -------------------------------------------------------------------------------- /tools/tones.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/tones.c -------------------------------------------------------------------------------- /tools/videodisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/videodisplay.c -------------------------------------------------------------------------------- /tools/xxd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/mediastreamer2/HEAD/tools/xxd.py --------------------------------------------------------------------------------