├── .cmake.conf ├── .gitreview ├── .tag ├── CMakeLists.txt ├── LICENSES ├── Apache-2.0.txt ├── BSD-3-Clause.txt ├── GFDL-1.3-no-invariants-only.txt ├── GPL-2.0-only.txt ├── GPL-3.0-only.txt ├── LGPL-3.0-only.txt ├── LicenseRef-Qt-Commercial.txt ├── MIT-0.txt ├── MIT.txt ├── MPL-2.0.txt └── Qt-GPL-exception-1.0.txt ├── REUSE.toml ├── cmake ├── FindFFmpeg.cmake ├── FindGObject.cmake ├── FindGStreamer.cmake ├── FindMMRenderer.cmake ├── FindMMRendererCore.cmake ├── FindPipeWire.cmake ├── FindVAAPI.cmake ├── FindWrapPulseAudio.cmake └── REUSE.toml ├── coin ├── axivion │ └── ci_config_linux.json ├── instructions │ ├── configure_tests_environment_for_ffmpeg_backend.yaml │ ├── run_ffmpeg_backend_tests.yaml │ └── run_gstreamer_backend_tests.yaml └── module_config.yaml ├── config.tests ├── gpu_vivante │ ├── CMakeLists.txt │ └── main.cpp └── linux_v4l │ ├── CMakeLists.txt │ └── main.cpp ├── config_help.txt ├── configure.cmake ├── dependencies.yaml ├── dist ├── REUSE.toml ├── changes-5.0.1 ├── changes-5.0.2 ├── changes-5.1.0 ├── changes-5.1.1 ├── changes-5.10.0 ├── changes-5.10.1 ├── changes-5.11.0 ├── changes-5.11.1 ├── changes-5.11.2 ├── changes-5.11.3 ├── changes-5.12.0 ├── changes-5.12.1 ├── changes-5.12.2 ├── changes-5.12.3 ├── changes-5.12.4 ├── changes-5.12.5 ├── changes-5.13.0 ├── changes-5.13.1 ├── changes-5.13.2 ├── changes-5.14.0 ├── changes-5.14.1 ├── changes-5.14.2 ├── changes-5.15.0 ├── changes-5.15.1 ├── changes-5.15.2 ├── changes-5.2.0 ├── changes-5.2.1 ├── changes-5.3.1 ├── changes-5.3.2 ├── changes-5.4.0 ├── changes-5.4.1 ├── changes-5.4.2 ├── changes-5.5.0 ├── changes-5.5.1 ├── changes-5.6.0 ├── changes-5.6.1 ├── changes-5.6.2 ├── changes-5.6.3 ├── changes-5.7.0 ├── changes-5.7.1 ├── changes-5.8.0 ├── changes-5.9.0 ├── changes-5.9.1 ├── changes-5.9.2 ├── changes-5.9.3 ├── changes-5.9.4 ├── changes-5.9.5 └── changes-5.9.6 ├── examples ├── CMakeLists.txt ├── examples.pro ├── multimedia │ ├── CMakeLists.txt │ ├── audiodevices │ │ ├── CMakeLists.txt │ │ ├── Info.plist.in │ │ ├── audiodevices.cpp │ │ ├── audiodevices.h │ │ ├── audiodevices.pro │ │ ├── audiodevicesbase.ui │ │ ├── doc │ │ │ ├── images │ │ │ │ └── audiodevices.png │ │ │ └── src │ │ │ │ └── audiodevices.qdoc │ │ └── main.cpp │ ├── audiooutput │ │ ├── CMakeLists.txt │ │ ├── audiooutput.cpp │ │ ├── audiooutput.h │ │ ├── audiooutput.pro │ │ ├── doc │ │ │ ├── images │ │ │ │ └── audiooutput-example.png │ │ │ └── src │ │ │ │ └── audiooutput.qdoc │ │ └── main.cpp │ ├── audiorecorder │ │ ├── CMakeLists.txt │ │ ├── Info.plist.in │ │ ├── audiorecorder.cpp │ │ ├── audiorecorder.h │ │ ├── audiorecorder.pro │ │ ├── audiorecorder.ui │ │ ├── doc │ │ │ ├── images │ │ │ │ └── audiorecorder.png │ │ │ └── src │ │ │ │ └── audiorecorder.qdoc │ │ └── main.cpp │ ├── audiosource │ │ ├── CMakeLists.txt │ │ ├── Info.plist.in │ │ ├── audiosource.cpp │ │ ├── audiosource.h │ │ ├── audiosource.pro │ │ ├── doc │ │ │ ├── images │ │ │ │ └── audiosource-example.png │ │ │ └── src │ │ │ │ └── audiosource.qdoc │ │ └── main.cpp │ ├── camera │ │ ├── CMakeLists.txt │ │ ├── android │ │ │ └── AndroidManifest.xml │ │ ├── camera.cpp │ │ ├── camera.h │ │ ├── camera.pro │ │ ├── camera.qrc │ │ ├── camera.ui │ │ ├── camera_mobile.ui │ │ ├── doc │ │ │ ├── images │ │ │ │ └── camera-example.png │ │ │ └── src │ │ │ │ └── camera.qdoc │ │ ├── images │ │ │ └── shutter.svg │ │ ├── imagesettings.cpp │ │ ├── imagesettings.h │ │ ├── imagesettings.ui │ │ ├── ios │ │ │ └── Info.plist.in │ │ ├── macos │ │ │ └── Info.plist.in │ │ ├── main.cpp │ │ ├── metadatadialog.cpp │ │ ├── metadatadialog.h │ │ ├── videosettings.cpp │ │ ├── videosettings.h │ │ ├── videosettings.ui │ │ └── videosettings_mobile.ui │ ├── declarative-camera │ │ ├── CMakeLists.txt │ │ ├── CameraButton.qml │ │ ├── CameraListButton.qml │ │ ├── CameraListPopup.qml │ │ ├── CameraPropertyButton.qml │ │ ├── CameraPropertyPopup.qml │ │ ├── FlashControl.qml │ │ ├── Info.plist │ │ ├── Info.plist.in │ │ ├── PhotoCaptureControls.qml │ │ ├── PhotoPreview.qml │ │ ├── Popup.qml │ │ ├── VideoCaptureControls.qml │ │ ├── VideoPreview.qml │ │ ├── ZoomControl.qml │ │ ├── declarative-camera.pro │ │ ├── declarative-camera.qml │ │ ├── declarative-camera.qmlproject │ │ ├── declarative-camera.qrc │ │ ├── doc │ │ │ ├── images │ │ │ │ ├── CaptureControls.png │ │ │ │ ├── FlashControls.png │ │ │ │ ├── VideoCaptureControls.png │ │ │ │ ├── ZoomControl.png │ │ │ │ ├── qml-camera.png │ │ │ │ └── qml-declarative-portrait.png │ │ │ └── src │ │ │ │ └── declarative-camera.qdoc │ │ ├── images │ │ │ ├── camera_auto_mode.png │ │ │ ├── camera_camera_setting.png │ │ │ ├── camera_flash_auto.png │ │ │ ├── camera_flash_fill.png │ │ │ ├── camera_flash_off.png │ │ │ ├── camera_flash_redeye.png │ │ │ ├── camera_white_balance_cloudy.png │ │ │ ├── camera_white_balance_flourescent.png │ │ │ ├── camera_white_balance_incandescent.png │ │ │ ├── camera_white_balance_sunny.png │ │ │ ├── toolbutton.png │ │ │ └── toolbutton.sci │ │ └── qmlcamera.cpp │ ├── multimedia.pro │ ├── player │ │ ├── CMakeLists.txt │ │ ├── audiolevelmeter.cpp │ │ ├── audiolevelmeter.h │ │ ├── doc │ │ │ ├── images │ │ │ │ └── mediaplayerex.jpg │ │ │ └── src │ │ │ │ └── player.qdoc │ │ ├── main.cpp │ │ ├── player.cpp │ │ ├── player.h │ │ ├── player.pro │ │ ├── playercontrols.cpp │ │ ├── playercontrols.h │ │ ├── playlistmodel.cpp │ │ ├── playlistmodel.h │ │ ├── qmediaplaylist.cpp │ │ ├── qmediaplaylist.h │ │ ├── qmediaplaylist_p.cpp │ │ ├── qmediaplaylist_p.h │ │ ├── qplaylistfileparser.cpp │ │ ├── qplaylistfileparser.h │ │ ├── videowidget.cpp │ │ └── videowidget.h │ ├── screencapture │ │ ├── CMakeLists.txt │ │ ├── Info.plist.in │ │ ├── android │ │ │ └── AndroidManifest.xml │ │ ├── doc │ │ │ ├── images │ │ │ │ └── screencapture.jpg │ │ │ └── src │ │ │ │ └── screencapture.qdoc │ │ ├── main.cpp │ │ ├── screencapture.pro │ │ ├── screencapturepreview.cpp │ │ ├── screencapturepreview.h │ │ ├── screenlistmodel.cpp │ │ ├── screenlistmodel.h │ │ ├── windowlistmodel.cpp │ │ └── windowlistmodel.h │ ├── shared │ │ └── shared.pri │ ├── video │ │ ├── CMakeLists.txt │ │ ├── mediaplayer │ │ │ ├── CMakeLists.txt │ │ │ ├── Main.qml │ │ │ ├── controls │ │ │ │ ├── AudioControl.qml │ │ │ │ ├── MetadataInfo.qml │ │ │ │ ├── PlaybackControl.qml │ │ │ │ ├── PlaybackSeekControl.qml │ │ │ │ ├── SettingsPopup.qml │ │ │ │ ├── TracksInfo.qml │ │ │ │ └── UrlPopup.qml │ │ │ ├── doc │ │ │ │ ├── images │ │ │ │ │ ├── qtmultimedia-examples-qml-media-player-settings.png │ │ │ │ │ └── qtmultimedia-examples-qml-media-player.png │ │ │ │ └── src │ │ │ │ │ └── mediaplayer.qdoc │ │ │ ├── images │ │ │ │ ├── backward10.svg │ │ │ │ ├── ff.svg │ │ │ │ ├── forward10.svg │ │ │ │ ├── link.svg │ │ │ │ ├── loop.svg │ │ │ │ ├── more.svg │ │ │ │ ├── mute.svg │ │ │ │ ├── open_new.svg │ │ │ │ ├── pause_symbol.svg │ │ │ │ ├── play_symbol.svg │ │ │ │ ├── rewind.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── speaker.svg │ │ │ │ ├── stop_symbol.svg │ │ │ │ ├── url.svg │ │ │ │ ├── volume.svg │ │ │ │ ├── volume_mute.svg │ │ │ │ ├── zoom_maximize.svg │ │ │ │ └── zoom_minimize.svg │ │ │ └── main.cpp │ │ ├── qmlvideo │ │ │ ├── CMakeLists.txt │ │ │ ├── Info.plist.in │ │ │ ├── doc │ │ │ │ ├── images │ │ │ │ │ ├── qmlvideo-menu.jpg │ │ │ │ │ ├── qmlvideo-overlay.jpg │ │ │ │ │ └── video-qml-paint-rate.png │ │ │ │ └── src │ │ │ │ │ └── qmlvideo.qdoc │ │ │ ├── frequencymonitor │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FrequencyItem.qml │ │ │ │ ├── PerformanceItem.qml │ │ │ │ ├── frequencymonitor.cpp │ │ │ │ ├── frequencymonitor.h │ │ │ │ └── qmldir │ │ │ ├── main.cpp │ │ │ ├── qmlvideo.png │ │ │ ├── qmlvideo.pro │ │ │ ├── qmlvideo.svg │ │ │ ├── qmlvideo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CameraBasic.qml │ │ │ │ ├── CameraDrag.qml │ │ │ │ ├── CameraDummy.qml │ │ │ │ ├── CameraFullScreen.qml │ │ │ │ ├── CameraFullScreenInverted.qml │ │ │ │ ├── CameraItem.qml │ │ │ │ ├── CameraMove.qml │ │ │ │ ├── CameraOverlay.qml │ │ │ │ ├── CameraResize.qml │ │ │ │ ├── CameraRotate.qml │ │ │ │ ├── CameraSpin.qml │ │ │ │ ├── Content.qml │ │ │ │ ├── ErrorDialog.qml │ │ │ │ ├── Main.qml │ │ │ │ ├── Scene.qml │ │ │ │ ├── SceneBasic.qml │ │ │ │ ├── SceneDrag.qml │ │ │ │ ├── SceneFullScreen.qml │ │ │ │ ├── SceneFullScreenInverted.qml │ │ │ │ ├── SceneMove.qml │ │ │ │ ├── SceneMulti.qml │ │ │ │ ├── SceneOverlay.qml │ │ │ │ ├── SceneResize.qml │ │ │ │ ├── SceneRotate.qml │ │ │ │ ├── SceneSelectionPanel.qml │ │ │ │ ├── SceneSpin.qml │ │ │ │ ├── SeekControl.qml │ │ │ │ ├── VideoBasic.qml │ │ │ │ ├── VideoDrag.qml │ │ │ │ ├── VideoDummy.qml │ │ │ │ ├── VideoFillMode.qml │ │ │ │ ├── VideoFullScreen.qml │ │ │ │ ├── VideoFullScreenInverted.qml │ │ │ │ ├── VideoItem.qml │ │ │ │ ├── VideoMetadata.qml │ │ │ │ ├── VideoMove.qml │ │ │ │ ├── VideoOverlay.qml │ │ │ │ ├── VideoPlaybackRate.qml │ │ │ │ ├── VideoResize.qml │ │ │ │ ├── VideoRotate.qml │ │ │ │ ├── VideoSeek.qml │ │ │ │ ├── VideoSpin.qml │ │ │ │ ├── images │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── leaves.jpg │ │ │ │ │ └── up.png │ │ │ │ ├── qmldir │ │ │ │ ├── qmlvideo_global.h │ │ │ │ ├── videosingleton.cpp │ │ │ │ └── videosingleton.h │ │ │ └── trace.h │ │ ├── recorder │ │ │ ├── AudioInputSelect.qml │ │ │ ├── CMakeLists.txt │ │ │ ├── Controls.qml │ │ │ ├── Info.plist.in │ │ │ ├── Main.qml │ │ │ ├── MediaList.qml │ │ │ ├── PermissionHelper.qml │ │ │ ├── Playback.qml │ │ │ ├── RecordButton.qml │ │ │ ├── SettingsEncoder.qml │ │ │ ├── SettingsMetaData.qml │ │ │ ├── Style.qml │ │ │ ├── StyleParameter.qml │ │ │ ├── StyleRectangle.qml │ │ │ ├── VideoSourceSelect.qml │ │ │ ├── android │ │ │ │ └── AndroidManifest.xml │ │ │ ├── doc │ │ │ │ ├── images │ │ │ │ │ ├── qml-recorder-control-bar-overview.gif │ │ │ │ │ ├── qml-recorder-overview.gif │ │ │ │ │ └── qmlrecorder.jpg │ │ │ │ └── src │ │ │ │ │ └── recorder.qdoc │ │ │ └── main.cpp │ │ └── video.pro │ ├── videographicsitem │ │ ├── CMakeLists.txt │ │ ├── doc │ │ │ ├── images │ │ │ │ └── video-videographicsitem.png │ │ │ └── src │ │ │ │ └── videographicsitem.qdoc │ │ ├── main.cpp │ │ ├── videographicsitem.pro │ │ ├── videoplayer.cpp │ │ └── videoplayer.h │ └── videowidget │ │ ├── CMakeLists.txt │ │ ├── doc │ │ ├── images │ │ │ └── video-videowidget.png │ │ └── src │ │ │ └── videowidget.qdoc │ │ ├── main.cpp │ │ ├── videoplayer.cpp │ │ ├── videoplayer.h │ │ └── videowidget.pro └── spatialaudio │ ├── CMakeLists.txt │ ├── audiopanning │ ├── CMakeLists.txt │ ├── audiopanning.pro │ ├── doc │ │ ├── images │ │ │ └── audiopanning-example.png │ │ └── src │ │ │ └── audiopanning.qdoc │ └── main.cpp │ └── spatialaudio.pro ├── licenseRule.json ├── mkspecs └── features │ └── ios │ └── add_ios_ffmpeg_libraries.prf ├── qt_cmdline.cmake ├── src ├── 3rdparty │ ├── dr_libs │ │ ├── 0001-3rdparty-drwav-namespace-implementation.patch │ │ ├── LICENSE │ │ ├── REUSE.toml │ │ ├── dr_wav.h │ │ └── qt_attribution.json │ ├── eigen │ │ ├── COPYING.BSD │ │ ├── COPYING.MPL2 │ │ ├── COPYING.README │ │ ├── COPYRIGHTS │ │ ├── Eigen │ │ │ ├── Cholesky │ │ │ ├── Core │ │ │ ├── Dense │ │ │ ├── Eigenvalues │ │ │ ├── Geometry │ │ │ ├── Householder │ │ │ ├── Jacobi │ │ │ ├── LU │ │ │ ├── QR │ │ │ ├── SVD │ │ │ └── src │ │ │ │ ├── Cholesky │ │ │ │ ├── LDLT.h │ │ │ │ ├── LLT.h │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ ├── Core │ │ │ │ ├── ArithmeticSequence.h │ │ │ │ ├── Array.h │ │ │ │ ├── ArrayBase.h │ │ │ │ ├── ArrayWrapper.h │ │ │ │ ├── Assign.h │ │ │ │ ├── AssignEvaluator.h │ │ │ │ ├── Assign_MKL.h │ │ │ │ ├── BandMatrix.h │ │ │ │ ├── Block.h │ │ │ │ ├── BooleanRedux.h │ │ │ │ ├── CommaInitializer.h │ │ │ │ ├── ConditionEstimator.h │ │ │ │ ├── CoreEvaluators.h │ │ │ │ ├── CoreIterators.h │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ ├── DenseBase.h │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ ├── DenseStorage.h │ │ │ │ ├── Diagonal.h │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ ├── DiagonalProduct.h │ │ │ │ ├── Dot.h │ │ │ │ ├── EigenBase.h │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ ├── Fuzzy.h │ │ │ │ ├── GeneralProduct.h │ │ │ │ ├── GenericPacketMath.h │ │ │ │ ├── GlobalFunctions.h │ │ │ │ ├── IO.h │ │ │ │ ├── IndexedView.h │ │ │ │ ├── Inverse.h │ │ │ │ ├── Map.h │ │ │ │ ├── MapBase.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ ├── Matrix.h │ │ │ │ ├── MatrixBase.h │ │ │ │ ├── NestByValue.h │ │ │ │ ├── NoAlias.h │ │ │ │ ├── NumTraits.h │ │ │ │ ├── PartialReduxEvaluator.h │ │ │ │ ├── PermutationMatrix.h │ │ │ │ ├── PlainObjectBase.h │ │ │ │ ├── Product.h │ │ │ │ ├── ProductEvaluators.h │ │ │ │ ├── Random.h │ │ │ │ ├── Redux.h │ │ │ │ ├── Ref.h │ │ │ │ ├── Replicate.h │ │ │ │ ├── Reshaped.h │ │ │ │ ├── ReturnByValue.h │ │ │ │ ├── Reverse.h │ │ │ │ ├── Select.h │ │ │ │ ├── SelfAdjointView.h │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ ├── Solve.h │ │ │ │ ├── SolveTriangular.h │ │ │ │ ├── SolverBase.h │ │ │ │ ├── StableNorm.h │ │ │ │ ├── StlIterators.h │ │ │ │ ├── Stride.h │ │ │ │ ├── Swap.h │ │ │ │ ├── Transpose.h │ │ │ │ ├── Transpositions.h │ │ │ │ ├── TriangularMatrix.h │ │ │ │ ├── VectorBlock.h │ │ │ │ ├── VectorwiseOp.h │ │ │ │ ├── Visitor.h │ │ │ │ ├── arch │ │ │ │ │ ├── AVX │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── MatrixProduct.h │ │ │ │ │ │ ├── MatrixProductCommon.h │ │ │ │ │ │ ├── MatrixProductMMA.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── CUDA │ │ │ │ │ │ └── Complex.h │ │ │ │ │ ├── Default │ │ │ │ │ │ ├── BFloat16.h │ │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ ├── Settings.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── GPU │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── HIP │ │ │ │ │ │ └── hcc │ │ │ │ │ │ │ └── math_constants.h │ │ │ │ │ ├── MSA │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── NEON │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── SSE │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── SVE │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── SYCL │ │ │ │ │ │ ├── InteropHeaders.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ └── ZVector │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── functors │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ ├── products │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ └── util │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ ├── ConfigureVectorization.h │ │ │ │ │ ├── Constants.h │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ │ ├── IntegralConstant.h │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ ├── Macros.h │ │ │ │ │ ├── Memory.h │ │ │ │ │ ├── Meta.h │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ ├── ReshapedHelper.h │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ ├── SymbolicIndex.h │ │ │ │ │ └── XprHelper.h │ │ │ │ ├── Eigenvalues │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ ├── ComplexSchur.h │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ ├── EigenSolver.h │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ ├── RealQZ.h │ │ │ │ ├── RealSchur.h │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ └── Tridiagonalization.h │ │ │ │ ├── Geometry │ │ │ │ ├── AlignedBox.h │ │ │ │ ├── AngleAxis.h │ │ │ │ ├── EulerAngles.h │ │ │ │ ├── Homogeneous.h │ │ │ │ ├── Hyperplane.h │ │ │ │ ├── OrthoMethods.h │ │ │ │ ├── ParametrizedLine.h │ │ │ │ ├── Quaternion.h │ │ │ │ ├── Rotation2D.h │ │ │ │ ├── RotationBase.h │ │ │ │ ├── Scaling.h │ │ │ │ ├── Transform.h │ │ │ │ ├── Translation.h │ │ │ │ ├── Umeyama.h │ │ │ │ └── arch │ │ │ │ │ └── Geometry_SIMD.h │ │ │ │ ├── Householder │ │ │ │ ├── BlockHouseholder.h │ │ │ │ ├── Householder.h │ │ │ │ └── HouseholderSequence.h │ │ │ │ ├── Jacobi │ │ │ │ └── Jacobi.h │ │ │ │ ├── LU │ │ │ │ ├── Determinant.h │ │ │ │ ├── FullPivLU.h │ │ │ │ ├── InverseImpl.h │ │ │ │ ├── PartialPivLU.h │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ └── arch │ │ │ │ │ └── InverseSize4.h │ │ │ │ ├── QR │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ ├── HouseholderQR.h │ │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ │ ├── SVD │ │ │ │ ├── BDCSVD.h │ │ │ │ ├── JacobiSVD.h │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ ├── SVDBase.h │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ ├── misc │ │ │ │ ├── Image.h │ │ │ │ ├── Kernel.h │ │ │ │ ├── RealSvd2x2.h │ │ │ │ ├── blas.h │ │ │ │ ├── lapack.h │ │ │ │ ├── lapacke.h │ │ │ │ └── lapacke_mangling.h │ │ │ │ └── plugins │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ ├── BlockMethods.h │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ ├── IndexedViewMethods.h │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ ├── MatrixCwiseUnaryOps.h │ │ │ │ └── ReshapedMethods.h │ │ ├── INSTALL │ │ ├── README.md │ │ ├── REUSE.toml │ │ └── qt_attribution.json │ ├── ffmpeg │ │ ├── LICENSE.BSD-2-Clause.txt │ │ ├── LICENSE.BSD-Source-Code.txt │ │ ├── LICENSE.BSL-1.0.txt │ │ ├── LICENSE.IJG.txt │ │ ├── LICENSE.ISC.txt │ │ ├── LICENSE.LGPL-2.1-or-later.txt │ │ ├── LICENSE.MIT.txt │ │ ├── LICENSE.Zlib.txt │ │ └── qt_attribution.json │ ├── pffft │ │ ├── COPYRIGHTS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── REUSE.toml │ │ ├── fftpack.c │ │ ├── fftpack.h │ │ ├── pffft.c │ │ ├── pffft.h │ │ ├── qt_attribution.json │ │ └── test_pffft.c │ ├── resonance-audio │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTING.md │ │ ├── COPYRIGHTS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── REUSE.toml │ │ ├── build.sh │ │ ├── patches │ │ │ ├── 0001-resonance-audio-avoid-c-linkage-for-ABI-factory.patch │ │ │ ├── 0001-resonance-audio-namespace-loggers.patch │ │ │ └── 0001-resonance_audio-fix-C-20-build.patch │ │ ├── platforms │ │ │ ├── CMakeLists.txt │ │ │ └── common │ │ │ │ ├── room_effects_utils.cc │ │ │ │ ├── room_effects_utils.h │ │ │ │ ├── room_effects_utils_test.cc │ │ │ │ ├── room_properties.h │ │ │ │ ├── utils.cc │ │ │ │ ├── utils.h │ │ │ │ └── utils_test.cc │ │ ├── qt_attribution.json │ │ ├── resonance_audio │ │ │ ├── CMakeLists.txt │ │ │ ├── ambisonics │ │ │ │ ├── ambisonic_binaural_decoder.cc │ │ │ │ ├── ambisonic_binaural_decoder.h │ │ │ │ ├── ambisonic_binaural_decoder_test.cc │ │ │ │ ├── ambisonic_codec.h │ │ │ │ ├── ambisonic_codec_impl.h │ │ │ │ ├── ambisonic_codec_impl_test.cc │ │ │ │ ├── ambisonic_lookup_table.cc │ │ │ │ ├── ambisonic_lookup_table.h │ │ │ │ ├── ambisonic_lookup_table_test.cc │ │ │ │ ├── ambisonic_spread_coefficients.h │ │ │ │ ├── associated_legendre_polynomials_generator.cc │ │ │ │ ├── associated_legendre_polynomials_generator.h │ │ │ │ ├── associated_legendre_polynomials_generator_test.cc │ │ │ │ ├── foa_rotator.cc │ │ │ │ ├── foa_rotator.h │ │ │ │ ├── foa_rotator_test.cc │ │ │ │ ├── hoa_rotator.cc │ │ │ │ ├── hoa_rotator.h │ │ │ │ ├── hoa_rotator_test.cc │ │ │ │ ├── stereo_from_soundfield_converter.cc │ │ │ │ ├── stereo_from_soundfield_converter.h │ │ │ │ ├── stereo_from_soundfield_converter_test.cc │ │ │ │ ├── utils.h │ │ │ │ └── utils_test.cc │ │ │ ├── api │ │ │ │ ├── binaural_surround_renderer.cc │ │ │ │ ├── binaural_surround_renderer.h │ │ │ │ ├── resonance_audio_api.cc │ │ │ │ └── resonance_audio_api.h │ │ │ ├── base │ │ │ │ ├── aligned_allocator.h │ │ │ │ ├── aligned_allocator_test.cc │ │ │ │ ├── audio_buffer.cc │ │ │ │ ├── audio_buffer.h │ │ │ │ ├── audio_buffer_test.cc │ │ │ │ ├── channel_view.cc │ │ │ │ ├── channel_view.h │ │ │ │ ├── channel_view_test.cc │ │ │ │ ├── constants_and_types.h │ │ │ │ ├── integral_types.h │ │ │ │ ├── logging.h │ │ │ │ ├── misc_math.cc │ │ │ │ ├── misc_math.h │ │ │ │ ├── misc_math_test.cc │ │ │ │ ├── object_transform.h │ │ │ │ ├── simd_macros.h │ │ │ │ ├── simd_utils.cc │ │ │ │ ├── simd_utils.h │ │ │ │ ├── simd_utils_test.cc │ │ │ │ ├── source_parameters.h │ │ │ │ ├── spherical_angle.cc │ │ │ │ ├── spherical_angle.h │ │ │ │ ├── spherical_angle_test.cc │ │ │ │ └── unique_ptr_wrapper.h │ │ │ ├── config │ │ │ │ ├── global_config.h │ │ │ │ ├── source_config.cc │ │ │ │ └── source_config.h │ │ │ ├── dsp │ │ │ │ ├── biquad_filter.cc │ │ │ │ ├── biquad_filter.h │ │ │ │ ├── biquad_filter_test.cc │ │ │ │ ├── channel_converter.cc │ │ │ │ ├── channel_converter.h │ │ │ │ ├── channel_converter_test.cc │ │ │ │ ├── circular_buffer.cc │ │ │ │ ├── circular_buffer.h │ │ │ │ ├── circular_buffer_test.cc │ │ │ │ ├── delay_filter.cc │ │ │ │ ├── delay_filter.h │ │ │ │ ├── delay_filter_test.cc │ │ │ │ ├── distance_attenuation.cc │ │ │ │ ├── distance_attenuation.h │ │ │ │ ├── distance_attenuation_test.cc │ │ │ │ ├── fft_manager.cc │ │ │ │ ├── fft_manager.h │ │ │ │ ├── fft_manager_test.cc │ │ │ │ ├── filter_coefficient_generators.cc │ │ │ │ ├── filter_coefficient_generators.h │ │ │ │ ├── filter_coefficient_generators_test.cc │ │ │ │ ├── fir_filter.cc │ │ │ │ ├── fir_filter.h │ │ │ │ ├── fir_filter_test.cc │ │ │ │ ├── gain.cc │ │ │ │ ├── gain.h │ │ │ │ ├── gain_mixer.cc │ │ │ │ ├── gain_mixer.h │ │ │ │ ├── gain_mixer_test.cc │ │ │ │ ├── gain_processor.cc │ │ │ │ ├── gain_processor.h │ │ │ │ ├── gain_processor_test.cc │ │ │ │ ├── gain_test.cc │ │ │ │ ├── mixer.cc │ │ │ │ ├── mixer.h │ │ │ │ ├── mixer_test.cc │ │ │ │ ├── mono_pole_filter.cc │ │ │ │ ├── mono_pole_filter.h │ │ │ │ ├── mono_pole_filter_test.cc │ │ │ │ ├── multi_channel_iir.cc │ │ │ │ ├── multi_channel_iir.h │ │ │ │ ├── multi_channel_iir_test.cc │ │ │ │ ├── near_field_processor.cc │ │ │ │ ├── near_field_processor.h │ │ │ │ ├── occlusion_calculator.cc │ │ │ │ ├── occlusion_calculator.h │ │ │ │ ├── occlusion_calculator_test.cc │ │ │ │ ├── partitioned_fft_filter.cc │ │ │ │ ├── partitioned_fft_filter.h │ │ │ │ ├── partitioned_fft_filter_test.cc │ │ │ │ ├── reflection.h │ │ │ │ ├── reflections_processor.cc │ │ │ │ ├── reflections_processor.h │ │ │ │ ├── reflections_processor_test.cc │ │ │ │ ├── resampler.cc │ │ │ │ ├── resampler.h │ │ │ │ ├── resampler_test.cc │ │ │ │ ├── reverb_onset_compensator.cc │ │ │ │ ├── reverb_onset_compensator.h │ │ │ │ ├── reverb_onset_update_processor.cc │ │ │ │ ├── reverb_onset_update_processor.h │ │ │ │ ├── sh_hrir_creator.cc │ │ │ │ ├── sh_hrir_creator.h │ │ │ │ ├── shoe_box_room.cc │ │ │ │ ├── shoe_box_room.h │ │ │ │ ├── shoe_box_room_test.cc │ │ │ │ ├── spectral_reverb.cc │ │ │ │ ├── spectral_reverb.h │ │ │ │ ├── spectral_reverb_constants_and_tables.h │ │ │ │ ├── spectral_reverb_test.cc │ │ │ │ ├── stereo_panner.cc │ │ │ │ ├── stereo_panner.h │ │ │ │ ├── stereo_panner_test.cc │ │ │ │ ├── utils.cc │ │ │ │ ├── utils.h │ │ │ │ └── utils_test.cc │ │ │ ├── geometrical_acoustics │ │ │ │ ├── acoustic_listener.h │ │ │ │ ├── acoustic_ray.cc │ │ │ │ ├── acoustic_ray.h │ │ │ │ ├── acoustic_ray_test.cc │ │ │ │ ├── acoustic_source.h │ │ │ │ ├── acoustic_source_test.cc │ │ │ │ ├── collection_kernel.cc │ │ │ │ ├── collection_kernel.h │ │ │ │ ├── collection_kernel_test.cc │ │ │ │ ├── estimating_rt60.cc │ │ │ │ ├── estimating_rt60.h │ │ │ │ ├── estimating_rt60_test.cc │ │ │ │ ├── impulse_response_computer.cc │ │ │ │ ├── impulse_response_computer.h │ │ │ │ ├── impulse_response_computer_test.cc │ │ │ │ ├── mesh.h │ │ │ │ ├── parallel_for.cc │ │ │ │ ├── parallel_for.h │ │ │ │ ├── parallel_for_test.cc │ │ │ │ ├── path.h │ │ │ │ ├── path_tracer.cc │ │ │ │ ├── path_tracer.h │ │ │ │ ├── path_tracer_test.cc │ │ │ │ ├── proxy_room_estimator.cc │ │ │ │ ├── proxy_room_estimator.h │ │ │ │ ├── proxy_room_estimator_test.cc │ │ │ │ ├── reflection_kernel.cc │ │ │ │ ├── reflection_kernel.h │ │ │ │ ├── reflection_kernel_test.cc │ │ │ │ ├── sampling.h │ │ │ │ ├── scene_manager.cc │ │ │ │ ├── scene_manager.h │ │ │ │ ├── scene_manager_test.cc │ │ │ │ ├── sphere.cc │ │ │ │ ├── sphere.h │ │ │ │ ├── sphere_test.cc │ │ │ │ ├── test_util.cc │ │ │ │ └── test_util.h │ │ │ ├── graph │ │ │ │ ├── ambisonic_binaural_decoder_node.cc │ │ │ │ ├── ambisonic_binaural_decoder_node.h │ │ │ │ ├── ambisonic_mixing_encoder_node.cc │ │ │ │ ├── ambisonic_mixing_encoder_node.h │ │ │ │ ├── ambisonic_mixing_encoder_node_test.cc │ │ │ │ ├── binaural_surround_renderer_impl.cc │ │ │ │ ├── binaural_surround_renderer_impl.h │ │ │ │ ├── binaural_surround_renderer_impl_test.cc │ │ │ │ ├── buffered_source_node.cc │ │ │ │ ├── buffered_source_node.h │ │ │ │ ├── foa_rotator_node.cc │ │ │ │ ├── foa_rotator_node.h │ │ │ │ ├── gain_mixer_node.cc │ │ │ │ ├── gain_mixer_node.h │ │ │ │ ├── gain_mixer_node_test.cc │ │ │ │ ├── gain_node.cc │ │ │ │ ├── gain_node.h │ │ │ │ ├── gain_node_test.cc │ │ │ │ ├── graph_manager.cc │ │ │ │ ├── graph_manager.h │ │ │ │ ├── graph_manager_config.h │ │ │ │ ├── hoa_rotator_node.cc │ │ │ │ ├── hoa_rotator_node.h │ │ │ │ ├── mixer_node.cc │ │ │ │ ├── mixer_node.h │ │ │ │ ├── mixer_node_test.cc │ │ │ │ ├── mono_from_soundfield_node.cc │ │ │ │ ├── mono_from_soundfield_node.h │ │ │ │ ├── near_field_effect_node.cc │ │ │ │ ├── near_field_effect_node.h │ │ │ │ ├── near_field_effect_node_test.cc │ │ │ │ ├── occlusion_node.cc │ │ │ │ ├── occlusion_node.h │ │ │ │ ├── occlusion_node_test.cc │ │ │ │ ├── reflections_node.cc │ │ │ │ ├── reflections_node.h │ │ │ │ ├── resonance_audio_api_impl.cc │ │ │ │ ├── resonance_audio_api_impl.h │ │ │ │ ├── reverb_node.cc │ │ │ │ ├── reverb_node.h │ │ │ │ ├── source_graph_config.h │ │ │ │ ├── source_parameters_manager.cc │ │ │ │ ├── source_parameters_manager.h │ │ │ │ ├── source_parameters_manager_test.cc │ │ │ │ ├── stereo_mixing_panner_node.cc │ │ │ │ ├── stereo_mixing_panner_node.h │ │ │ │ └── system_settings.h │ │ │ ├── node │ │ │ │ ├── audio_nodes_test.cc │ │ │ │ ├── node.h │ │ │ │ ├── node_test.cc │ │ │ │ ├── processing_node.cc │ │ │ │ ├── processing_node.h │ │ │ │ ├── publisher_node.h │ │ │ │ ├── sink_node.cc │ │ │ │ ├── sink_node.h │ │ │ │ ├── source_node.cc │ │ │ │ ├── source_node.h │ │ │ │ └── subscriber_node.h │ │ │ └── utils │ │ │ │ ├── buffer_crossfader.cc │ │ │ │ ├── buffer_crossfader.h │ │ │ │ ├── buffer_crossfader_test.cc │ │ │ │ ├── buffer_partitioner.cc │ │ │ │ ├── buffer_partitioner.h │ │ │ │ ├── buffer_partitioner_test.cc │ │ │ │ ├── buffer_unpartitioner.cc │ │ │ │ ├── buffer_unpartitioner.h │ │ │ │ ├── buffer_unpartitioner_test.cc │ │ │ │ ├── lockless_task_queue.cc │ │ │ │ ├── lockless_task_queue.h │ │ │ │ ├── lockless_task_queue_test.cc │ │ │ │ ├── ogg_vorbis_recorder.cc │ │ │ │ ├── ogg_vorbis_recorder.h │ │ │ │ ├── planar_interleaved_conversion.cc │ │ │ │ ├── planar_interleaved_conversion.h │ │ │ │ ├── planar_interleaved_conversion_test.cc │ │ │ │ ├── pseudoinverse.h │ │ │ │ ├── pseudoinverse_test.cc │ │ │ │ ├── sample_type_conversion.cc │ │ │ │ ├── sample_type_conversion.h │ │ │ │ ├── sample_type_conversion_test.cc │ │ │ │ ├── semi_lockless_fifo.h │ │ │ │ ├── sum_and_difference_processor.cc │ │ │ │ ├── sum_and_difference_processor.h │ │ │ │ ├── sum_and_difference_processor_test.cc │ │ │ │ ├── task_thread_pool.cc │ │ │ │ ├── task_thread_pool.h │ │ │ │ ├── task_thread_pool_test.cc │ │ │ │ ├── test_util.cc │ │ │ │ ├── test_util.h │ │ │ │ ├── test_util_test.cc │ │ │ │ ├── threadsafe_fifo.h │ │ │ │ ├── vorbis_stream_encoder.cc │ │ │ │ ├── vorbis_stream_encoder.h │ │ │ │ ├── wav.cc │ │ │ │ ├── wav.h │ │ │ │ ├── wav_reader.cc │ │ │ │ └── wav_reader.h │ │ └── third_party │ │ │ └── SADIE_hrtf_database │ │ │ ├── LICENSE │ │ │ ├── generate_hrtf_assets.py │ │ │ ├── generated │ │ │ ├── README │ │ │ ├── hrtf_assets.cc │ │ │ └── hrtf_assets.h │ │ │ └── hrtf_assets.iad │ ├── signalsmith-stretch │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── REUSE.toml │ │ ├── dsp │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── common.h │ │ │ ├── curves.h │ │ │ ├── delay.h │ │ │ ├── envelopes.h │ │ │ ├── fft.h │ │ │ ├── filters.h │ │ │ ├── mix.h │ │ │ ├── perf.h │ │ │ ├── rates.h │ │ │ ├── spectral.h │ │ │ └── windows.h │ │ ├── qt_attribution.json │ │ └── signalsmith-stretch.h │ └── tlsf │ │ ├── 0001-TLSF-move-implementation-to-QtPrivate-namespace.patch │ │ ├── CMakeLists.txt │ │ ├── REUSE.toml │ │ ├── qt_attribution.json │ │ ├── tlsf.cpp │ │ └── tlsf.h ├── CMakeLists.txt ├── android │ ├── CMakeLists.txt │ └── jar │ │ ├── AndroidManifest.xml │ │ ├── CMakeLists.txt │ │ └── src │ │ └── org │ │ └── qtproject │ │ └── qt │ │ └── android │ │ └── multimedia │ │ ├── QtAndroidMediaPlayer.java │ │ ├── QtAudioDeviceManager.java │ │ ├── QtCamera2.java │ │ ├── QtCameraAvailabilityListener.java │ │ ├── QtCameraListener.java │ │ ├── QtExifDataHandler.java │ │ ├── QtMediaRecorderListener.java │ │ ├── QtMultimediaUtils.java │ │ ├── QtScreenCaptureService.java │ │ ├── QtScreenGrabber.java │ │ ├── QtSurfaceHolderCallback.java │ │ ├── QtSurfaceTextureHolder.java │ │ ├── QtSurfaceTextureListener.java │ │ └── QtVideoDeviceManager.java ├── multimedia │ ├── CMakeLists.txt │ ├── Qt6MultimediaMacros.cmake │ ├── alsa │ │ ├── qalsaaudiodevice.cpp │ │ ├── qalsaaudiodevice_p.h │ │ ├── qalsaaudiodevices.cpp │ │ ├── qalsaaudiodevices_p.h │ │ ├── qalsaaudiosink.cpp │ │ ├── qalsaaudiosink_p.h │ │ ├── qalsaaudiosource.cpp │ │ └── qalsaaudiosource_p.h │ ├── android │ │ ├── qaaudiostream.cpp │ │ ├── qaaudiostream_p.h │ │ ├── qandroidaudiodevice.cpp │ │ ├── qandroidaudiodevice_p.h │ │ ├── qandroidaudiodevices.cpp │ │ ├── qandroidaudiodevices_p.h │ │ ├── qandroidaudiojnitypes_p.h │ │ ├── qandroidaudiosink.cpp │ │ ├── qandroidaudiosink_p.h │ │ ├── qandroidaudiosource.cpp │ │ ├── qandroidaudiosource_p.h │ │ ├── qandroidaudioutil.cpp │ │ └── qandroidaudioutil_p.h │ ├── audio │ │ ├── q_pmr_emulation_p.h │ │ ├── qaudio.h │ │ ├── qaudio_alignment_support_p.h │ │ ├── qaudio_dr_wav.cpp │ │ ├── qaudio_platform_implementation_support_p.h │ │ ├── qaudio_qiodevice_support_p.h │ │ ├── qaudio_qspan_support_p.h │ │ ├── qaudio_rtsan_support_p.h │ │ ├── qaudiobuffer.cpp │ │ ├── qaudiobuffer.h │ │ ├── qaudiobuffer_support_p.h │ │ ├── qaudiobufferinput.cpp │ │ ├── qaudiobufferinput.h │ │ ├── qaudiobufferoutput.cpp │ │ ├── qaudiobufferoutput.h │ │ ├── qaudiobufferoutput_p.h │ │ ├── qaudiodecoder.cpp │ │ ├── qaudiodecoder.h │ │ ├── qaudiodecoder_p.h │ │ ├── qaudiodevice.cpp │ │ ├── qaudiodevice.h │ │ ├── qaudiodevice_p.h │ │ ├── qaudioformat.cpp │ │ ├── qaudioformat.h │ │ ├── qaudioformat_p.h │ │ ├── qaudiohelpers.cpp │ │ ├── qaudiohelpers_p.h │ │ ├── qaudioinput.cpp │ │ ├── qaudioinput.h │ │ ├── qaudiooutput.cpp │ │ ├── qaudiooutput.h │ │ ├── qaudioringbuffer_p.h │ │ ├── qaudiosink.cpp │ │ ├── qaudiosink.h │ │ ├── qaudiosource.cpp │ │ ├── qaudiosource.h │ │ ├── qaudiosystem.cpp │ │ ├── qaudiosystem_p.h │ │ ├── qaudiosystem_platform_stream_support.cpp │ │ ├── qaudiosystem_platform_stream_support_p.h │ │ ├── qautoresetevent_kqueue.cpp │ │ ├── qautoresetevent_kqueue_p.h │ │ ├── qautoresetevent_linux.cpp │ │ ├── qautoresetevent_linux_p.h │ │ ├── qautoresetevent_p.h │ │ ├── qautoresetevent_pipe.cpp │ │ ├── qautoresetevent_pipe_p.h │ │ ├── qautoresetevent_win32.cpp │ │ ├── qautoresetevent_win32_p.h │ │ ├── qmemory_resource_tlsf.cpp │ │ ├── qmemory_resource_tlsf_p.h │ │ ├── qrtaudioengine.cpp │ │ ├── qrtaudioengine_p.h │ │ ├── qsamplecache_p.cpp │ │ ├── qsamplecache_p.h │ │ ├── qsoundeffect.cpp │ │ ├── qsoundeffect.h │ │ ├── qsoundeffect_p.h │ │ ├── qsoundeffectsynchronous.cpp │ │ ├── qsoundeffectsynchronous_p.h │ │ ├── qsoundeffectwithplayer.cpp │ │ ├── qsoundeffectwithplayer_p.h │ │ ├── qtaudio.cpp │ │ ├── qtaudio.h │ │ ├── qwavedecoder.cpp │ │ └── qwavedecoder.h │ ├── camera │ │ ├── qcamera.cpp │ │ ├── qcamera.h │ │ ├── qcamera_p.h │ │ ├── qcameradevice.cpp │ │ ├── qcameradevice.h │ │ ├── qcameradevice_p.h │ │ ├── qimagecapture.cpp │ │ └── qimagecapture.h │ ├── compat │ │ └── removed_api.cpp │ ├── configure.cmake │ ├── darwin │ │ ├── qavfcamerabase.mm │ │ ├── qavfcamerabase_p.h │ │ ├── qavfcameradebug_p.h │ │ ├── qavfcamerautility.mm │ │ ├── qavfcamerautility_p.h │ │ ├── qavfhelpers.mm │ │ ├── qavfhelpers_p.h │ │ ├── qavfvideodevices.mm │ │ ├── qavfvideodevices_p.h │ │ ├── qcoreaudiosessionmanager.mm │ │ ├── qcoreaudiosessionmanager_p.h │ │ ├── qcoreaudioutils.cpp │ │ ├── qcoreaudioutils_p.h │ │ ├── qdarwinaudiodevice.cpp │ │ ├── qdarwinaudiodevice_p.h │ │ ├── qdarwinaudiodevices.mm │ │ ├── qdarwinaudiodevices_p.h │ │ ├── qdarwinaudiosink.mm │ │ ├── qdarwinaudiosink_p.h │ │ ├── qdarwinaudiosource.mm │ │ ├── qdarwinaudiosource_p.h │ │ ├── qdarwinintegrationfactory.mm │ │ ├── qdarwinintegrationfactory_p.h │ │ ├── qmacosaudiodatautils.cpp │ │ └── qmacosaudiodatautils_p.h │ ├── doc │ │ ├── QtMultimediaDoc │ │ ├── qtmultimedia.qdocconf │ │ ├── snippets │ │ │ ├── CMakeLists.txt │ │ │ ├── custommediainputsnippets │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── custommediainputsnippets.cpp │ │ │ │ ├── custommediainputsnippets.h │ │ │ │ └── main.cpp │ │ │ └── multimedia-snippets │ │ │ │ ├── audio.cpp │ │ │ │ ├── camera.cpp │ │ │ │ ├── devices.cpp │ │ │ │ ├── images │ │ │ │ └── qt-logo.png │ │ │ │ ├── media.cpp │ │ │ │ ├── multiple-videooutputs.qml │ │ │ │ ├── qsound.cpp │ │ │ │ ├── qtvideosink.qml │ │ │ │ ├── soundeffect.qml │ │ │ │ └── video.cpp │ │ └── src │ │ │ ├── advanced-ffmpeg-configuration.qdoc │ │ │ ├── audiooverview.qdoc │ │ │ ├── backend-notes-gstreamer.qdoc │ │ │ ├── cameraoverview.qdoc │ │ │ ├── classic.css │ │ │ ├── cmake │ │ │ ├── cmake-variables.qdoc │ │ │ └── qt_add_ios_ffmpeg_libraries.qdoc │ │ │ ├── images │ │ │ ├── Zoom.gif │ │ │ ├── annotatedurl.png │ │ │ ├── camera_correctionAngle_90.png │ │ │ ├── codeless.png │ │ │ ├── how-focus-works.gif │ │ │ ├── image_processing.png │ │ │ ├── noun_Media_166644.svg │ │ │ ├── qS1FmgPVL.jpg │ │ │ ├── qmlcamera-menu.png │ │ │ ├── radio-example.png │ │ │ ├── slideshow-img1.png │ │ │ ├── sound-wave-small.jpg │ │ │ └── video-graphics-memory.png │ │ │ ├── includes │ │ │ ├── building-FFmpeg-configure.qdocinc │ │ │ ├── building-FFmpeg-contents.qdocinc │ │ │ ├── building-FFmpeg-prerequisites.qdocinc │ │ │ └── building-FFmpeg-source.qdocinc │ │ │ ├── multimedia-overview.qdoc │ │ │ ├── platform-notes-apple.qdoc │ │ │ ├── platform-notes-linux.qdoc │ │ │ ├── platform-notes-wasm.qdoc │ │ │ ├── platform-notes-windows.qdoc │ │ │ ├── qm-external-pages.qdoc │ │ │ ├── qt6-changes.qdoc │ │ │ ├── qtmultimedia-building-FFmpeg-android-linux.qdoc │ │ │ ├── qtmultimedia-building-FFmpeg-android-macos.qdoc │ │ │ ├── qtmultimedia-building-FFmpeg-android-windows.qdoc │ │ │ ├── qtmultimedia-building-FFmpeg-ios.qdoc │ │ │ ├── qtmultimedia-building-FFmpeg-linux.qdoc │ │ │ ├── qtmultimedia-building-FFmpeg-macos.qdoc │ │ │ ├── qtmultimedia-building-FFmpeg-windows.qdoc │ │ │ ├── qtmultimedia-building-FFmpeg.qdoc │ │ │ ├── qtmultimedia-building-from-source.qdoc │ │ │ ├── qtmultimedia-cpp.qdoc │ │ │ ├── qtmultimedia-examples.qdoc │ │ │ ├── qtmultimedia-ffmpeg-stubs.qdoc │ │ │ ├── qtmultimedia-index.qdoc │ │ │ ├── qtmultimedia-qml-types.qdoc │ │ │ ├── qtmultimedia-toc.qdoc │ │ │ └── videooverview.qdoc │ ├── pipewire │ │ ├── qpipewire_async_support.cpp │ │ ├── qpipewire_async_support_p.h │ │ ├── qpipewire_audiocontextmanager.cpp │ │ ├── qpipewire_audiocontextmanager_p.h │ │ ├── qpipewire_audiodevice.cpp │ │ ├── qpipewire_audiodevice_p.h │ │ ├── qpipewire_audiodevicemonitor.cpp │ │ ├── qpipewire_audiodevicemonitor_p.h │ │ ├── qpipewire_audiodevices.cpp │ │ ├── qpipewire_audiodevices_p.h │ │ ├── qpipewire_audiosink.cpp │ │ ├── qpipewire_audiosink_p.h │ │ ├── qpipewire_audiosource.cpp │ │ ├── qpipewire_audiosource_p.h │ │ ├── qpipewire_audiostream.cpp │ │ ├── qpipewire_audiostream_p.h │ │ ├── qpipewire_instance.cpp │ │ ├── qpipewire_instance_p.h │ │ ├── qpipewire_propertydict.cpp │ │ ├── qpipewire_propertydict_p.h │ │ ├── qpipewire_registry_support.cpp │ │ ├── qpipewire_registry_support_p.h │ │ ├── qpipewire_screencapture.cpp │ │ ├── qpipewire_screencapture_p.h │ │ ├── qpipewire_screencapturehelper.cpp │ │ ├── qpipewire_screencapturehelper_p.h │ │ ├── qpipewire_spa_compat_p.h │ │ ├── qpipewire_spa_pod_parser_support_p.h │ │ ├── qpipewire_spa_pod_support.cpp │ │ ├── qpipewire_spa_pod_support_p.h │ │ ├── qpipewire_support.cpp │ │ ├── qpipewire_support_p.h │ │ ├── qpipewire_symbolloader.cpp │ │ └── qpipewire_symbolloader_p.h │ ├── platform │ │ ├── qgstreamer_platformspecificinterface.cpp │ │ ├── qgstreamer_platformspecificinterface_p.h │ │ ├── qplatformaudiobufferinput.cpp │ │ ├── qplatformaudiobufferinput_p.h │ │ ├── qplatformaudiodecoder.cpp │ │ ├── qplatformaudiodecoder_p.h │ │ ├── qplatformaudiodevices.cpp │ │ ├── qplatformaudiodevices_p.h │ │ ├── qplatformaudioinput_p.h │ │ ├── qplatformaudiooutput_p.h │ │ ├── qplatformaudioresampler_p.h │ │ ├── qplatformcamera.cpp │ │ ├── qplatformcamera_p.h │ │ ├── qplatformcapturablewindows_p.h │ │ ├── qplatformimagecapture.cpp │ │ ├── qplatformimagecapture_p.h │ │ ├── qplatformmediacapture.cpp │ │ ├── qplatformmediacapture_p.h │ │ ├── qplatformmediaformatinfo.cpp │ │ ├── qplatformmediaformatinfo_p.h │ │ ├── qplatformmediaintegration.cpp │ │ ├── qplatformmediaintegration_p.h │ │ ├── qplatformmediaplayer.cpp │ │ ├── qplatformmediaplayer_p.h │ │ ├── qplatformmediaplugin.cpp │ │ ├── qplatformmediaplugin_p.h │ │ ├── qplatformmediarecorder.cpp │ │ ├── qplatformmediarecorder_p.h │ │ ├── qplatformsurfacecapture.cpp │ │ ├── qplatformsurfacecapture_p.h │ │ ├── qplatformvideodevices.cpp │ │ ├── qplatformvideodevices_p.h │ │ ├── qplatformvideoframeinput.cpp │ │ ├── qplatformvideoframeinput_p.h │ │ ├── qplatformvideosink.cpp │ │ ├── qplatformvideosink_p.h │ │ ├── qplatformvideosource.cpp │ │ └── qplatformvideosource_p.h │ ├── playback │ │ ├── qmediaplayer.cpp │ │ ├── qmediaplayer.h │ │ ├── qmediaplayer_p.h │ │ ├── qplaybackoptions.cpp │ │ └── qplaybackoptions.h │ ├── pulseaudio │ │ ├── qpulseaudio_contextmanager.cpp │ │ ├── qpulseaudio_contextmanager_p.h │ │ ├── qpulseaudiodevice_p.h │ │ ├── qpulseaudiodevices.cpp │ │ ├── qpulseaudiodevices_p.h │ │ ├── qpulseaudiosink.cpp │ │ ├── qpulseaudiosink_p.h │ │ ├── qpulseaudiosource.cpp │ │ ├── qpulseaudiosource_p.h │ │ ├── qpulsehelpers.cpp │ │ └── qpulsehelpers_p.h │ ├── qcachedvalue_p.h │ ├── qerrorinfo_p.h │ ├── qmediadevices.cpp │ ├── qmediadevices.h │ ├── qmediaformat.cpp │ ├── qmediaformat.h │ ├── qmediaframeinput.cpp │ ├── qmediaframeinput_p.h │ ├── qmediainputencoderinterface_p.h │ ├── qmediametadata.cpp │ ├── qmediametadata.h │ ├── qmediastoragelocation.cpp │ ├── qmediastoragelocation_p.h │ ├── qmediatimerange.cpp │ ├── qmediatimerange.h │ ├── qmultimedia_enum_to_string_converter_p.h │ ├── qmultimedia_ranges_p.h │ ├── qmultimediautils.cpp │ ├── qmultimediautils_p.h │ ├── qnx │ │ ├── qqnxaudiodevice.cpp │ │ ├── qqnxaudiodevice_p.h │ │ ├── qqnxaudiodevices.cpp │ │ ├── qqnxaudiodevices_p.h │ │ ├── qqnxaudiosink.cpp │ │ ├── qqnxaudiosink_p.h │ │ ├── qqnxaudiosource.cpp │ │ ├── qqnxaudiosource_p.h │ │ ├── qqnxaudioutils.cpp │ │ └── qqnxaudioutils_p.h │ ├── qrhivaluemapper.cpp │ ├── qrhivaluemapper_p.h │ ├── qsharedhandle_p.h │ ├── qsymbolsresolveutils.cpp │ ├── qsymbolsresolveutils_p.h │ ├── qt_cmdline.cmake │ ├── qtaggedtime_p.h │ ├── qthreadlocalrhi.cpp │ ├── qthreadlocalrhi_p.h │ ├── qtmultimedia_pch_p.h │ ├── qtmultimediaglobal.h │ ├── qtmultimediaglobal_p.h │ ├── qvideotransformation.cpp │ ├── qvideotransformation_p.h │ ├── recording │ │ ├── qcapturablewindow.cpp │ │ ├── qcapturablewindow.h │ │ ├── qcapturablewindow_p.h │ │ ├── qmediacapturesession.cpp │ │ ├── qmediacapturesession.h │ │ ├── qmediacapturesession_p.h │ │ ├── qmediarecorder.cpp │ │ ├── qmediarecorder.h │ │ ├── qmediarecorder_p.h │ │ ├── qscreencapture-limitations.qdocinc │ │ ├── qscreencapture.cpp │ │ ├── qscreencapture.h │ │ ├── qvideoframeinput.cpp │ │ ├── qvideoframeinput.h │ │ ├── qwindowcapture-limitations.qdocinc │ │ ├── qwindowcapture.cpp │ │ └── qwindowcapture.h │ ├── shaders │ │ ├── abgr.frag │ │ ├── argb.frag │ │ ├── ayuv.frag │ │ ├── bgra.frag │ │ ├── colorconvert.glsl │ │ ├── colortransfer.glsl │ │ ├── compile.bat │ │ ├── externalsampler.frag │ │ ├── externalsampler.vert │ │ ├── externalsampler_gles.frag │ │ ├── hdrtonemapper.glsl │ │ ├── imc2.frag │ │ ├── imc4.frag │ │ ├── nv12.frag │ │ ├── nv12_bt2020_hlg.frag │ │ ├── nv12_bt2020_pq.frag │ │ ├── nv21.frag │ │ ├── p016.frag │ │ ├── qrhitextureformats_p.h │ │ ├── rectsampler.vert │ │ ├── rectsampler_bgra.frag │ │ ├── rgba.frag │ │ ├── texturecomponent.glsl │ │ ├── uniformbuffer.glsl │ │ ├── uyvy.frag │ │ ├── vertex.vert │ │ ├── y.frag │ │ ├── y16.frag │ │ ├── yuv_triplanar.frag │ │ ├── yuv_triplanar_p10.frag │ │ ├── yuyv.frag │ │ └── yvu_triplanar.frag │ ├── video │ │ ├── qabstractvideobuffer.cpp │ │ ├── qabstractvideobuffer.h │ │ ├── qhwvideobuffer.cpp │ │ ├── qhwvideobuffer_p.h │ │ ├── qimagevideobuffer.cpp │ │ ├── qimagevideobuffer_p.h │ │ ├── qmemoryvideobuffer.cpp │ │ ├── qmemoryvideobuffer_p.h │ │ ├── qtvideo.cpp │ │ ├── qtvideo.h │ │ ├── qvideoframe.cpp │ │ ├── qvideoframe.h │ │ ├── qvideoframe_p.h │ │ ├── qvideoframeconversionhelper.cpp │ │ ├── qvideoframeconversionhelper_avx2.cpp │ │ ├── qvideoframeconversionhelper_p.h │ │ ├── qvideoframeconversionhelper_sse2.cpp │ │ ├── qvideoframeconversionhelper_ssse3.cpp │ │ ├── qvideoframeconverter.cpp │ │ ├── qvideoframeconverter_p.h │ │ ├── qvideoframeformat.cpp │ │ ├── qvideoframeformat.h │ │ ├── qvideoframetexturefromsource.cpp │ │ ├── qvideoframetexturefromsource_p.h │ │ ├── qvideoframetexturepool.cpp │ │ ├── qvideoframetexturepool_p.h │ │ ├── qvideooutputorientationhandler.cpp │ │ ├── qvideooutputorientationhandler_p.h │ │ ├── qvideosink.cpp │ │ ├── qvideosink.h │ │ ├── qvideotexturehelper.cpp │ │ ├── qvideotexturehelper_p.h │ │ ├── qvideowindow.cpp │ │ └── qvideowindow_p.h │ ├── wasm │ │ ├── qwasmaudiodevice.cpp │ │ ├── qwasmaudiodevice_p.h │ │ ├── qwasmaudiosink.cpp │ │ ├── qwasmaudiosink_p.h │ │ ├── qwasmaudiosource.cpp │ │ ├── qwasmaudiosource_p.h │ │ ├── qwasmjs.cpp │ │ ├── qwasmjs_p.h │ │ ├── qwasmmediadevices.cpp │ │ └── qwasmmediadevices_p.h │ └── windows │ │ ├── qcominitializer.cpp │ │ ├── qcominitializer_p.h │ │ ├── qcomtaskresource_p.h │ │ ├── qwindows_propertystore.cpp │ │ ├── qwindows_propertystore_p.h │ │ ├── qwindows_wasapi_warmup_client.cpp │ │ ├── qwindows_wasapi_warmup_client_p.h │ │ ├── qwindowsaudiodevice.cpp │ │ ├── qwindowsaudiodevice_p.h │ │ ├── qwindowsaudiodevices.cpp │ │ ├── qwindowsaudiodevices_p.h │ │ ├── qwindowsaudiosink.cpp │ │ ├── qwindowsaudiosink_p.h │ │ ├── qwindowsaudiosource.cpp │ │ ├── qwindowsaudiosource_p.h │ │ ├── qwindowsaudioutils.cpp │ │ ├── qwindowsaudioutils_p.h │ │ ├── qwindowsmediafoundation.cpp │ │ ├── qwindowsmediafoundation_p.h │ │ ├── qwindowsmultimediautils.cpp │ │ ├── qwindowsmultimediautils_p.h │ │ ├── qwindowsresampler.cpp │ │ ├── qwindowsresampler_p.h │ │ ├── qwindowsvideodevices.cpp │ │ ├── qwindowsvideodevices_p.h │ │ ├── qwmf_support.cpp │ │ └── qwmf_support_p.h ├── multimediaquick │ ├── CMakeLists.txt │ ├── Video.qml │ ├── multimedia_plugin.cpp │ ├── qquickimagecapture.cpp │ ├── qquickimagecapture_p.h │ ├── qquickimagepreviewprovider.cpp │ ├── qquickimagepreviewprovider_p.h │ ├── qquickmediaplayer.cpp │ ├── qquickmediaplayer_p.h │ ├── qquickscreencapture.cpp │ ├── qquickscreencapture_p.h │ ├── qquicksoundeffect.cpp │ ├── qquicksoundeffect_p.h │ ├── qquickvideooutput.cpp │ ├── qquickvideooutput_p.h │ ├── qsgvideonode_p.cpp │ ├── qsgvideonode_p.h │ ├── qsgvideotexture.cpp │ ├── qsgvideotexture_p.h │ ├── qtmultimediaquickglobal_p.h │ ├── qtmultimediaquicktypes.cpp │ └── qtmultimediaquicktypes_p.h ├── multimediatestlib │ ├── CMakeLists.txt │ ├── audiogenerationutils_p.h │ ├── capturesessionfixture.cpp │ ├── capturesessionfixture_p.h │ ├── formatutils.cpp │ ├── formatutils_p.h │ ├── framegenerator.cpp │ ├── framegenerator_p.h │ ├── mediabackendutils_p.h │ ├── mediafileselector_p.h │ ├── mediainfo_p.h │ ├── multimedia_debug_support_p.h │ ├── osdetection_p.h │ ├── qcolorutil.cpp │ ├── qcolorutil_p.h │ ├── qfileutil.cpp │ ├── qfileutil_p.h │ ├── qmockiodevice_p.h │ ├── qscopedenvironmentvariable_p.h │ ├── qsequentialfileadaptor_p.h │ ├── qsinewavevalidator.cpp │ ├── qsinewavevalidator_p.h │ └── testvideosink_p.h ├── multimediawidgets │ ├── CMakeLists.txt │ ├── doc │ │ ├── snippets │ │ │ └── multimedia-snippets │ │ │ │ ├── camera.cpp │ │ │ │ └── video.cpp │ │ └── src │ │ │ ├── qtmultimediawidgets-index.qdoc │ │ │ └── qtmultimediawidgets.qdoc │ ├── qgraphicsvideoitem.cpp │ ├── qgraphicsvideoitem.h │ ├── qtmultimediawidgetsglobal.h │ ├── qvideowidget.cpp │ ├── qvideowidget.h │ └── qvideowidget_p.h ├── plugins │ ├── CMakeLists.txt │ └── multimedia │ │ ├── CMakeLists.txt │ │ ├── android │ │ ├── CMakeLists.txt │ │ ├── android.json │ │ ├── audio │ │ │ ├── qandroidaudiodecoder.cpp │ │ │ └── qandroidaudiodecoder_p.h │ │ ├── common │ │ │ ├── qandroidaudioinput.cpp │ │ │ ├── qandroidaudioinput_p.h │ │ │ ├── qandroidaudiooutput_p.h │ │ │ ├── qandroidglobal_p.h │ │ │ ├── qandroidmultimediautils.cpp │ │ │ ├── qandroidmultimediautils_p.h │ │ │ ├── qandroidvideooutput.cpp │ │ │ ├── qandroidvideooutput_p.h │ │ │ ├── qandroidvideosink.cpp │ │ │ └── qandroidvideosink_p.h │ │ ├── mediacapture │ │ │ ├── qandroidcamera.cpp │ │ │ ├── qandroidcamera_p.h │ │ │ ├── qandroidcamerasession.cpp │ │ │ ├── qandroidcamerasession_p.h │ │ │ ├── qandroidcapturesession.cpp │ │ │ ├── qandroidcapturesession_p.h │ │ │ ├── qandroidimagecapture.cpp │ │ │ ├── qandroidimagecapture_p.h │ │ │ ├── qandroidmediacapturesession.cpp │ │ │ ├── qandroidmediacapturesession_p.h │ │ │ ├── qandroidmediaencoder.cpp │ │ │ └── qandroidmediaencoder_p.h │ │ ├── mediaplayer │ │ │ ├── qandroidmediaplayer.cpp │ │ │ ├── qandroidmediaplayer_p.h │ │ │ ├── qandroidmetadata.cpp │ │ │ └── qandroidmetadata_p.h │ │ ├── qandroidformatsinfo.cpp │ │ ├── qandroidformatsinfo_p.h │ │ ├── qandroidintegration.cpp │ │ ├── qandroidintegration_p.h │ │ └── wrappers │ │ │ └── jni │ │ │ ├── androidcamera.cpp │ │ │ ├── androidcamera_p.h │ │ │ ├── androidmediametadataretriever.cpp │ │ │ ├── androidmediametadataretriever_p.h │ │ │ ├── androidmediaplayer.cpp │ │ │ ├── androidmediaplayer_p.h │ │ │ ├── androidmediarecorder.cpp │ │ │ ├── androidmediarecorder_p.h │ │ │ ├── androidmultimediautils.cpp │ │ │ ├── androidmultimediautils_p.h │ │ │ ├── androidsurfacetexture.cpp │ │ │ ├── androidsurfacetexture_p.h │ │ │ ├── androidsurfaceview.cpp │ │ │ └── androidsurfaceview_p.h │ │ ├── darwin │ │ ├── CMakeLists.txt │ │ ├── avfaudiodecoder.mm │ │ ├── avfaudiodecoder_p.h │ │ ├── avfvideobuffer.mm │ │ ├── avfvideobuffer_p.h │ │ ├── avfvideosink.mm │ │ ├── avfvideosink_p.h │ │ ├── camera │ │ │ ├── avfaudiopreviewdelegate.mm │ │ │ ├── avfaudiopreviewdelegate_p.h │ │ │ ├── avfcamera.mm │ │ │ ├── avfcamera_p.h │ │ │ ├── avfcamerarenderer.mm │ │ │ ├── avfcamerarenderer_p.h │ │ │ ├── avfcameraservice.mm │ │ │ ├── avfcameraservice_p.h │ │ │ ├── avfcamerasession.mm │ │ │ ├── avfcamerasession_p.h │ │ │ ├── avfimagecapture.mm │ │ │ ├── avfimagecapture_p.h │ │ │ ├── avfmediaassetwriter.mm │ │ │ ├── avfmediaassetwriter_p.h │ │ │ ├── avfmediaencoder.mm │ │ │ └── avfmediaencoder_p.h │ │ ├── common │ │ │ ├── avfmetadata.mm │ │ │ └── avfmetadata_p.h │ │ ├── darwin.json │ │ ├── darwin_pch.h │ │ ├── mediaplayer │ │ │ ├── avfdisplaylink.mm │ │ │ ├── avfdisplaylink_p.h │ │ │ ├── avfmediaplayer.mm │ │ │ ├── avfmediaplayer_p.h │ │ │ ├── avfvideorenderercontrol.mm │ │ │ └── avfvideorenderercontrol_p.h │ │ ├── qdarwinformatsinfo.mm │ │ ├── qdarwinformatsinfo_p.h │ │ ├── qdarwinintegration.mm │ │ └── qdarwinintegration_p.h │ │ ├── ffmpeg │ │ ├── CMakeLists.txt │ │ ├── android │ │ │ ├── qandroidcamera.cpp │ │ │ ├── qandroidcamera_p.h │ │ │ ├── qandroidimagecapture.cpp │ │ │ ├── qandroidimagecapture_p.h │ │ │ ├── qandroidscreencapture.cpp │ │ │ ├── qandroidscreencapture_p.h │ │ │ ├── qandroidvideodevices.cpp │ │ │ ├── qandroidvideodevices_p.h │ │ │ ├── qandroidvideoframebuffer.cpp │ │ │ ├── qandroidvideoframebuffer_p.h │ │ │ ├── qandroidvideoframefactory.cpp │ │ │ ├── qandroidvideoframefactory_p.h │ │ │ ├── qandroidvideojnitypes_p.h │ │ │ ├── qffmpeghwaccel_mediacodec.cpp │ │ │ └── qffmpeghwaccel_mediacodec_p.h │ │ ├── cmake │ │ │ ├── QtAddFFmpegStubs.cmake │ │ │ └── QtDeployFFmpeg.cmake │ │ ├── darwin │ │ │ ├── qavfcamera.mm │ │ │ ├── qavfcamera_p.h │ │ │ ├── qavfcamerafactory_p.h │ │ │ ├── qavfcamerarotationtracker.mm │ │ │ ├── qavfcamerarotationtracker_p.h │ │ │ ├── qavfcapturephotooutputdelegate.mm │ │ │ ├── qavfcapturephotooutputdelegate_p.h │ │ │ ├── qavfimagecapture.mm │ │ │ ├── qavfimagecapture_p.h │ │ │ ├── qavfsamplebufferdelegate.mm │ │ │ ├── qavfsamplebufferdelegate_p.h │ │ │ ├── qavfscreencapture.mm │ │ │ ├── qavfscreencapture_p.h │ │ │ ├── qavfstillphotonotifier.cpp │ │ │ ├── qavfstillphotonotifier_p.h │ │ │ ├── qcgcapturablewindows.mm │ │ │ ├── qcgcapturablewindows_p.h │ │ │ ├── qcgwindowcapture.mm │ │ │ ├── qcgwindowcapture_p.h │ │ │ ├── qcvimagevideobuffer.cpp │ │ │ ├── qcvimagevideobuffer_p.h │ │ │ ├── qffmpeghwaccel_videotoolbox.mm │ │ │ └── qffmpeghwaccel_videotoolbox_p.h │ │ ├── ffmpeg.json │ │ ├── ffmpeg_pch.h │ │ ├── playbackengine │ │ │ ├── qffmpegaudioframeconverter.cpp │ │ │ ├── qffmpegaudioframeconverter_p.h │ │ │ ├── qffmpegaudiorenderer.cpp │ │ │ ├── qffmpegaudiorenderer_p.h │ │ │ ├── qffmpegcodeccontext.cpp │ │ │ ├── qffmpegcodeccontext_p.h │ │ │ ├── qffmpegdemuxer.cpp │ │ │ ├── qffmpegdemuxer_p.h │ │ │ ├── qffmpegframe_p.h │ │ │ ├── qffmpegmediadataholder.cpp │ │ │ ├── qffmpegmediadataholder_p.h │ │ │ ├── qffmpegpacket_p.h │ │ │ ├── qffmpegplaybackenginedefs_p.h │ │ │ ├── qffmpegplaybackengineobject.cpp │ │ │ ├── qffmpegplaybackengineobject_p.h │ │ │ ├── qffmpegplaybackutils_p.h │ │ │ ├── qffmpegrenderer.cpp │ │ │ ├── qffmpegrenderer_p.h │ │ │ ├── qffmpegstreamdecoder.cpp │ │ │ ├── qffmpegstreamdecoder_p.h │ │ │ ├── qffmpegsubtitlerenderer.cpp │ │ │ ├── qffmpegsubtitlerenderer_p.h │ │ │ ├── qffmpegtime_p.h │ │ │ ├── qffmpegtimecontroller.cpp │ │ │ ├── qffmpegtimecontroller_p.h │ │ │ ├── qffmpegvideorenderer.cpp │ │ │ └── qffmpegvideorenderer_p.h │ │ ├── qeglfsscreencapture.cpp │ │ ├── qeglfsscreencapture_p.h │ │ ├── qffmpeg.cpp │ │ ├── qffmpeg_p.h │ │ ├── qffmpegaudiodecoder.cpp │ │ ├── qffmpegaudiodecoder_p.h │ │ ├── qffmpegaudioinput.cpp │ │ ├── qffmpegaudioinput_p.h │ │ ├── qffmpegavaudioformat.cpp │ │ ├── qffmpegavaudioformat_p.h │ │ ├── qffmpegcodec.cpp │ │ ├── qffmpegcodec_p.h │ │ ├── qffmpegcodecstorage.cpp │ │ ├── qffmpegcodecstorage_p.h │ │ ├── qffmpegconverter.cpp │ │ ├── qffmpegconverter_p.h │ │ ├── qffmpegdefs_p.h │ │ ├── qffmpegencodingformatcontext.cpp │ │ ├── qffmpegencodingformatcontext_p.h │ │ ├── qffmpeghwaccel.cpp │ │ ├── qffmpeghwaccel_d3d11.cpp │ │ ├── qffmpeghwaccel_d3d11_p.h │ │ ├── qffmpeghwaccel_p.h │ │ ├── qffmpeghwaccel_vaapi.cpp │ │ ├── qffmpeghwaccel_vaapi_p.h │ │ ├── qffmpegimagecapture.cpp │ │ ├── qffmpegimagecapture_p.h │ │ ├── qffmpegioutils.cpp │ │ ├── qffmpegioutils_p.h │ │ ├── qffmpegmediacapturesession.cpp │ │ ├── qffmpegmediacapturesession_p.h │ │ ├── qffmpegmediaformatinfo.cpp │ │ ├── qffmpegmediaformatinfo_p.h │ │ ├── qffmpegmediaintegration.cpp │ │ ├── qffmpegmediaintegration_p.h │ │ ├── qffmpegmediametadata.cpp │ │ ├── qffmpegmediametadata_p.h │ │ ├── qffmpegmediaplayer.cpp │ │ ├── qffmpegmediaplayer_p.h │ │ ├── qffmpegmediarecorder.cpp │ │ ├── qffmpegmediarecorder_p.h │ │ ├── qffmpegplaybackengine.cpp │ │ ├── qffmpegplaybackengine_p.h │ │ ├── qffmpegplugin.cpp │ │ ├── qffmpegresampler.cpp │ │ ├── qffmpegresampler_p.h │ │ ├── qffmpegscreencapture_dxgi.cpp │ │ ├── qffmpegscreencapture_dxgi_p.h │ │ ├── qffmpegsurfacecapturegrabber.cpp │ │ ├── qffmpegsurfacecapturegrabber_p.h │ │ ├── qffmpegtextureconverter.cpp │ │ ├── qffmpegtextureconverter_p.h │ │ ├── qffmpegthread.cpp │ │ ├── qffmpegthread_p.h │ │ ├── qffmpegvideobuffer.cpp │ │ ├── qffmpegvideobuffer_p.h │ │ ├── qffmpegvideosink.cpp │ │ ├── qffmpegvideosink_p.h │ │ ├── qffmpegwindowcapture_uwp.cpp │ │ ├── qffmpegwindowcapture_uwp_p.h │ │ ├── qgdiwindowcapture.cpp │ │ ├── qgdiwindowcapture_p.h │ │ ├── qgrabwindowsurfacecapture.cpp │ │ ├── qgrabwindowsurfacecapture_p.h │ │ ├── qopenglvideobuffer.cpp │ │ ├── qopenglvideobuffer_p.h │ │ ├── qv4l2camera.cpp │ │ ├── qv4l2camera_p.h │ │ ├── qv4l2cameradevices.cpp │ │ ├── qv4l2cameradevices_p.h │ │ ├── qv4l2filedescriptor.cpp │ │ ├── qv4l2filedescriptor_p.h │ │ ├── qv4l2memorytransfer.cpp │ │ ├── qv4l2memorytransfer_p.h │ │ ├── qwincapturablewindows.cpp │ │ ├── qwincapturablewindows_p.h │ │ ├── qwindowscamera.cpp │ │ ├── qwindowscamera_p.h │ │ ├── qx11capturablewindows.cpp │ │ ├── qx11capturablewindows_p.h │ │ ├── qx11surfacecapture.cpp │ │ ├── qx11surfacecapture_p.h │ │ ├── recordingengine │ │ │ ├── qffmpegaudioencoder.cpp │ │ │ ├── qffmpegaudioencoder_p.h │ │ │ ├── qffmpegaudioencoderutils.cpp │ │ │ ├── qffmpegaudioencoderutils_p.h │ │ │ ├── qffmpegencoderoptions.cpp │ │ │ ├── qffmpegencoderoptions_p.h │ │ │ ├── qffmpegencoderthread.cpp │ │ │ ├── qffmpegencoderthread_p.h │ │ │ ├── qffmpegencodinginitializer.cpp │ │ │ ├── qffmpegencodinginitializer_p.h │ │ │ ├── qffmpegmuxer.cpp │ │ │ ├── qffmpegmuxer_p.h │ │ │ ├── qffmpegrecordingengine.cpp │ │ │ ├── qffmpegrecordingengine_p.h │ │ │ ├── qffmpegrecordingengineutils.cpp │ │ │ ├── qffmpegrecordingengineutils_p.h │ │ │ ├── qffmpegvideoencoder.cpp │ │ │ ├── qffmpegvideoencoder_p.h │ │ │ ├── qffmpegvideoencoderutils.cpp │ │ │ ├── qffmpegvideoencoderutils_p.h │ │ │ ├── qffmpegvideoframeencoder.cpp │ │ │ └── qffmpegvideoframeencoder_p.h │ │ └── symbolstubs │ │ │ ├── openssl3.ver │ │ │ ├── qffmpegsymbols-crypto.cpp │ │ │ ├── qffmpegsymbols-ssl.cpp │ │ │ ├── qffmpegsymbols-va-drm.cpp │ │ │ ├── qffmpegsymbols-va-x11.cpp │ │ │ ├── qffmpegsymbols-va.cpp │ │ │ └── va.ver │ │ ├── gstreamer │ │ ├── CMakeLists.txt │ │ ├── audio │ │ │ ├── qgstreameraudiodecoder.cpp │ │ │ ├── qgstreameraudiodecoder_p.h │ │ │ ├── qgstreameraudiodevice.cpp │ │ │ └── qgstreameraudiodevice_p.h │ │ ├── common │ │ │ ├── qglist_helper_p.h │ │ │ ├── qgst.cpp │ │ │ ├── qgst_bus_observer.cpp │ │ │ ├── qgst_bus_observer_p.h │ │ │ ├── qgst_debug.cpp │ │ │ ├── qgst_debug_p.h │ │ │ ├── qgst_discoverer.cpp │ │ │ ├── qgst_discoverer_p.h │ │ │ ├── qgst_handle_types_p.h │ │ │ ├── qgst_p.h │ │ │ ├── qgst_play.cpp │ │ │ ├── qgst_play_p.h │ │ │ ├── qgstpipeline.cpp │ │ │ ├── qgstpipeline_p.h │ │ │ ├── qgstreameraudioinput.cpp │ │ │ ├── qgstreameraudioinput_p.h │ │ │ ├── qgstreameraudiooutput.cpp │ │ │ ├── qgstreameraudiooutput_p.h │ │ │ ├── qgstreamerbufferprobe.cpp │ │ │ ├── qgstreamerbufferprobe_p.h │ │ │ ├── qgstreamermediaplayer.cpp │ │ │ ├── qgstreamermediaplayer_p.h │ │ │ ├── qgstreamermessage_p.h │ │ │ ├── qgstreamermetadata.cpp │ │ │ ├── qgstreamermetadata_p.h │ │ │ ├── qgstreamervideooutput.cpp │ │ │ ├── qgstreamervideooutput_p.h │ │ │ ├── qgstreamervideosink.cpp │ │ │ ├── qgstreamervideosink_p.h │ │ │ ├── qgstsubtitlesink.cpp │ │ │ ├── qgstsubtitlesink_p.h │ │ │ ├── qgstutils.cpp │ │ │ ├── qgstutils_p.h │ │ │ ├── qgstvideobuffer.cpp │ │ │ ├── qgstvideobuffer_p.h │ │ │ ├── qgstvideorenderersink.cpp │ │ │ └── qgstvideorenderersink_p.h │ │ ├── gstreamer.json │ │ ├── mediacapture │ │ │ ├── qgstreamercamera.cpp │ │ │ ├── qgstreamercamera_p.h │ │ │ ├── qgstreamerimagecapture.cpp │ │ │ ├── qgstreamerimagecapture_p.h │ │ │ ├── qgstreamermediacapturesession.cpp │ │ │ ├── qgstreamermediacapturesession_p.h │ │ │ ├── qgstreamermediarecorder.cpp │ │ │ └── qgstreamermediarecorder_p.h │ │ ├── qgstreamerformatinfo.cpp │ │ ├── qgstreamerformatinfo_p.h │ │ ├── qgstreamerintegration.cpp │ │ ├── qgstreamerintegration_p.h │ │ ├── qgstreamerplugin.cpp │ │ ├── qgstreamervideodevices.cpp │ │ ├── qgstreamervideodevices_p.h │ │ └── uri_handler │ │ │ ├── qgstreamer_qiodevice_handler.cpp │ │ │ ├── qgstreamer_qiodevice_handler_p.h │ │ │ ├── qgstreamer_qrc_handler.cpp │ │ │ └── qgstreamer_qrc_handler_p.h │ │ ├── qnx │ │ ├── CMakeLists.txt │ │ ├── camera │ │ │ ├── qqnxcamera.cpp │ │ │ ├── qqnxcamera_p.h │ │ │ ├── qqnxcameraframebuffer.cpp │ │ │ ├── qqnxcameraframebuffer_p.h │ │ │ ├── qqnxcamerahandle_p.h │ │ │ ├── qqnximagecapture.cpp │ │ │ ├── qqnximagecapture_p.h │ │ │ ├── qqnxplatformcamera.cpp │ │ │ └── qqnxplatformcamera_p.h │ │ ├── capture │ │ │ ├── qqnxaudiorecorder.cpp │ │ │ ├── qqnxaudiorecorder_p.h │ │ │ ├── qqnxmediacapturesession.cpp │ │ │ ├── qqnxmediacapturesession_p.h │ │ │ ├── qqnxmediarecorder.cpp │ │ │ └── qqnxmediarecorder_p.h │ │ ├── common │ │ │ ├── mmrenderertypes.h │ │ │ ├── qqnxaudioinput.cpp │ │ │ ├── qqnxaudioinput_p.h │ │ │ ├── qqnxaudiooutput.cpp │ │ │ ├── qqnxaudiooutput_p.h │ │ │ ├── qqnxmediaeventthread.cpp │ │ │ ├── qqnxmediaeventthread_p.h │ │ │ ├── qqnxwindowgrabber.cpp │ │ │ └── qqnxwindowgrabber_p.h │ │ ├── mediaplayer │ │ │ ├── qqnxmediametadata.cpp │ │ │ ├── qqnxmediametadata_p.h │ │ │ ├── qqnxmediaplayer.cpp │ │ │ ├── qqnxmediaplayer_p.h │ │ │ ├── qqnxmediautil.cpp │ │ │ ├── qqnxmediautil_p.h │ │ │ ├── qqnxvideosink.cpp │ │ │ └── qqnxvideosink_p.h │ │ ├── qnx.json │ │ ├── qqnxformatinfo.cpp │ │ ├── qqnxformatinfo_p.h │ │ ├── qqnxmediaintegration.cpp │ │ ├── qqnxmediaintegration_p.h │ │ ├── qqnxvideodevices.cpp │ │ └── qqnxvideodevices_p.h │ │ ├── wasm │ │ ├── CMakeLists.txt │ │ ├── common │ │ │ ├── qwasmaudioinput.cpp │ │ │ ├── qwasmaudioinput_p.h │ │ │ ├── qwasmaudiooutput.cpp │ │ │ ├── qwasmaudiooutput_p.h │ │ │ ├── qwasmvideooutput.cpp │ │ │ └── qwasmvideooutput_p.h │ │ ├── mediacapture │ │ │ ├── qwasmcamera.cpp │ │ │ ├── qwasmcamera_p.h │ │ │ ├── qwasmcapturablewindows.cpp │ │ │ ├── qwasmcapturablewindows_p.h │ │ │ ├── qwasmimagecapture.cpp │ │ │ ├── qwasmimagecapture_p.h │ │ │ ├── qwasmmediacapturesession.cpp │ │ │ ├── qwasmmediacapturesession_p.h │ │ │ ├── qwasmmediarecorder.cpp │ │ │ ├── qwasmmediarecorder_p.h │ │ │ ├── qwasmscreencapture.cpp │ │ │ ├── qwasmscreencapture_p.h │ │ │ ├── qwasmwindowcapture.cpp │ │ │ └── qwasmwindowcapture_p.h │ │ ├── mediaplayer │ │ │ ├── qwasmmediaplayer.cpp │ │ │ ├── qwasmmediaplayer_p.h │ │ │ ├── qwasmvideosink.cpp │ │ │ └── qwasmvideosink_p.h │ │ ├── qwasmmediaintegration.cpp │ │ ├── qwasmmediaintegration_p.h │ │ └── wasm.json │ │ └── windows │ │ ├── CMakeLists.txt │ │ ├── common │ │ ├── mfmetadata.cpp │ │ └── mfmetadata_p.h │ │ ├── decoder │ │ ├── mfaudiodecodercontrol.cpp │ │ ├── mfaudiodecodercontrol_p.h │ │ ├── mfdecodersourcereader.cpp │ │ ├── mfdecodersourcereader_p.h │ │ ├── mfdecodersourcereadercallback.cpp │ │ └── mfdecodersourcereadercallback_p.h │ │ ├── evr │ │ ├── evrcustompresenter.cpp │ │ ├── evrcustompresenter_p.h │ │ ├── evrd3dpresentengine.cpp │ │ ├── evrd3dpresentengine_p.h │ │ ├── evrhelpers.cpp │ │ ├── evrhelpers_p.h │ │ ├── evrvideowindowcontrol.cpp │ │ └── evrvideowindowcontrol_p.h │ │ ├── mediacapture │ │ ├── qwindowscamera.cpp │ │ ├── qwindowscamera_p.h │ │ ├── qwindowsimagecapture.cpp │ │ ├── qwindowsimagecapture_p.h │ │ ├── qwindowsmediacapture.cpp │ │ ├── qwindowsmediacapture_p.h │ │ ├── qwindowsmediadevicereader.cpp │ │ ├── qwindowsmediadevicereader_p.h │ │ ├── qwindowsmediadevicesession.cpp │ │ ├── qwindowsmediadevicesession_p.h │ │ ├── qwindowsmediaencoder.cpp │ │ └── qwindowsmediaencoder_p.h │ │ ├── mfstream.cpp │ │ ├── mfstream_p.h │ │ ├── player │ │ ├── mfactivate.cpp │ │ ├── mfactivate_p.h │ │ ├── mfevrvideowindowcontrol.cpp │ │ ├── mfevrvideowindowcontrol_p.h │ │ ├── mfplayercontrol.cpp │ │ ├── mfplayercontrol_p.h │ │ ├── mfplayersession.cpp │ │ ├── mfplayersession_p.h │ │ ├── mfvideorenderercontrol.cpp │ │ └── mfvideorenderercontrol_p.h │ │ ├── qwindowsformatinfo.cpp │ │ ├── qwindowsformatinfo_p.h │ │ ├── qwindowsintegration.cpp │ │ ├── qwindowsintegration_p.h │ │ ├── sourceresolver.cpp │ │ ├── sourceresolver_p.h │ │ └── windows.json ├── resonance-audio │ ├── CMakeLists.txt │ ├── resonance_audio.cpp │ └── resonance_audio.h ├── spatialaudio │ ├── CMakeLists.txt │ ├── doc │ │ ├── qtspatialaudio.qdocconf │ │ └── src │ │ │ ├── qtspatialaudio-cpp.qdoc │ │ │ ├── qtspatialaudio-examples.qdoc │ │ │ ├── qtspatialaudio-index.qdoc │ │ │ ├── qtspatialaudio-qml-types.qdoc │ │ │ └── spatialaudiooverview.qdoc │ ├── qambientsound.cpp │ ├── qambientsound.h │ ├── qambientsound_p.h │ ├── qambisonicdecoder.cpp │ ├── qambisonicdecoder_p.h │ ├── qambisonicdecoderdata_p.h │ ├── qaudioengine.cpp │ ├── qaudioengine.h │ ├── qaudioengine_p.h │ ├── qaudiolistener.cpp │ ├── qaudiolistener.h │ ├── qaudioroom.cpp │ ├── qaudioroom.h │ ├── qaudioroom_p.h │ ├── qspatialsound.cpp │ ├── qspatialsound.h │ ├── qspatialsound_p.h │ ├── qtspatialaudioglobal.h │ └── qtspatialaudioglobal_p.h └── spatialaudioquick3d │ ├── CMakeLists.txt │ ├── qquick3dambientsound.cpp │ ├── qquick3dambientsound_p.h │ ├── qquick3daudio-qml-types.qdoc │ ├── qquick3daudioengine.cpp │ ├── qquick3daudioengine_p.h │ ├── qquick3daudiolistener.cpp │ ├── qquick3daudiolistener_p.h │ ├── qquick3daudioroom.cpp │ ├── qquick3daudioroom_p.h │ ├── qquick3dspatialaudio_plugin.cpp │ ├── qquick3dspatialsound.cpp │ ├── qquick3dspatialsound_p.h │ ├── qtquick3daudioglobal_p.h │ └── qtquick3daudiotypes_p.h ├── tests ├── CMakeLists.txt ├── auto │ ├── CMakeLists.txt │ ├── cmake │ │ └── CMakeLists.txt │ ├── integration │ │ ├── CMakeLists.txt │ │ ├── backends │ │ │ ├── CMakeLists.txt │ │ │ └── tst_backends.cpp │ │ ├── multiapp │ │ │ ├── CMakeLists.txt │ │ │ ├── double-drop.wav │ │ │ └── tst_multiapp.cpp │ │ ├── qaudiodecoderbackend │ │ │ ├── CMakeLists.txt │ │ │ ├── testdata │ │ │ │ ├── test-corrupted.wav │ │ │ │ ├── test-no-audio-track.mp4 │ │ │ │ ├── test-unsupported.avi │ │ │ │ └── test.wav │ │ │ └── tst_qaudiodecoderbackend.cpp │ │ ├── qaudiodevicebackend │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qaudiodevicebackend.cpp │ │ ├── qaudiosink │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qaudiosink.cpp │ │ ├── qaudiosource │ │ │ ├── CMakeLists.txt │ │ │ ├── Info.plist │ │ │ └── tst_qaudiosource.cpp │ │ ├── qcamerabackend │ │ │ ├── BLACKLIST │ │ │ ├── CMakeLists.txt │ │ │ ├── Info.plist │ │ │ └── tst_qcamerabackend.cpp │ │ ├── qmediacapturesession │ │ │ ├── BLACKLIST │ │ │ ├── CMakeLists.txt │ │ │ ├── Info.plist │ │ │ └── tst_qmediacapturesession.cpp │ │ ├── qmediaformatbackend │ │ │ ├── BLACKLIST │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmediaformatbackend.cpp │ │ ├── qmediaframeinputsbackend │ │ │ ├── CMakeLists.txt │ │ │ ├── tst_qmediaframeinputsbackend.cpp │ │ │ └── tst_qmediaframeinputsbackend.h │ │ ├── qmediaplayer_concurrent │ │ │ ├── 3colors_with_sound_1s.mp4 │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmediaplayer_concurrent.cpp │ │ ├── qmediaplayerbackend │ │ │ ├── BLACKLIST │ │ │ ├── CMakeLists.txt │ │ │ ├── LazyLoad.qml │ │ │ ├── fake.h │ │ │ ├── fixture.h │ │ │ ├── mediaplayerstate.h │ │ │ ├── server.h │ │ │ ├── testdata │ │ │ │ ├── 15s.mkv │ │ │ │ ├── 3colors_with_sound_1s.mp4 │ │ │ │ ├── BigBuckBunny.mp4 │ │ │ │ ├── _test.wav │ │ │ │ ├── audio_video_with_jpg_thumbnail.mp4 │ │ │ │ ├── audio_video_with_png_thumbnail.mp4 │ │ │ │ ├── busAv1.webm │ │ │ │ ├── busMpeg4.mp4 │ │ │ │ ├── color_matrix.mp4 │ │ │ │ ├── color_matrix_180_deg_clockwise.mp4 │ │ │ │ ├── color_matrix_180_deg_clockwise_mirrored.mp4 │ │ │ │ ├── color_matrix_270_deg_clockwise.mp4 │ │ │ │ ├── color_matrix_270_deg_clockwise_mirrored.mp4 │ │ │ │ ├── color_matrix_90_deg_clockwise.mp4 │ │ │ │ ├── color_matrix_90_deg_clockwise_mirrored.mp4 │ │ │ │ ├── color_matrix_mirrored.mp4 │ │ │ │ ├── colors.mp4 │ │ │ │ ├── colors.ogv │ │ │ │ ├── corrupt_end.ogg │ │ │ │ ├── duration_issues.webm │ │ │ │ ├── h264_avc1_yuv420p10le_tv_bt2020.mov │ │ │ │ ├── invalid_media.m3u │ │ │ │ ├── invalid_media2.m3u │ │ │ │ ├── multitrack-subtitle-start-at-zero.mkv │ │ │ │ ├── multitrack.mkv │ │ │ │ ├── nested1.m3u │ │ │ │ ├── nested2.m3u │ │ │ │ ├── nokia-tune.mkv │ │ │ │ ├── nokia-tune.mp3 │ │ │ │ ├── one_red_frame.mp4 │ │ │ │ ├── par_2_3.mp4 │ │ │ │ ├── par_3_2.mp4 │ │ │ │ ├── recursive.m3u │ │ │ │ ├── recursive_master.m3u │ │ │ │ ├── sample.m3u │ │ │ │ ├── subtitletest.mkv │ │ │ │ └── test.wav │ │ │ └── tst_qmediaplayerbackend.cpp │ │ ├── qmediaplayerformatsupport │ │ │ ├── CMakeLists.txt │ │ │ ├── testdata │ │ │ │ ├── README.md │ │ │ │ ├── containers │ │ │ │ │ ├── supported │ │ │ │ │ │ ├── container.avi │ │ │ │ │ │ ├── container.mkv │ │ │ │ │ │ ├── container.mp4 │ │ │ │ │ │ ├── container.mpeg │ │ │ │ │ │ └── container.wmv │ │ │ │ │ └── unsupported │ │ │ │ │ │ └── container.webp │ │ │ │ ├── flipable.gif │ │ │ │ └── pixel_formats │ │ │ │ │ └── supported │ │ │ │ │ ├── h264_bgr0.mp4 │ │ │ │ │ ├── h264_bgr24.mp4 │ │ │ │ │ ├── h264_gray.mp4 │ │ │ │ │ ├── h264_gray10le.mp4 │ │ │ │ │ ├── h264_nv12.mp4 │ │ │ │ │ ├── h264_nv16.mp4 │ │ │ │ │ ├── h264_nv21.mp4 │ │ │ │ │ ├── h264_rgb24.mp4 │ │ │ │ │ ├── h264_yuv420p.mp4 │ │ │ │ │ ├── h264_yuv420p10.mp4 │ │ │ │ │ ├── h264_yuv420p10le.mp4 │ │ │ │ │ ├── h264_yuv422p.mp4 │ │ │ │ │ ├── h264_yuv422p10.mp4 │ │ │ │ │ ├── h264_yuv422p10le.mp4 │ │ │ │ │ ├── h264_yuv444p.mp4 │ │ │ │ │ ├── h264_yuv444p10.mp4 │ │ │ │ │ ├── h264_yuvj420p.mp4 │ │ │ │ │ ├── h264_yuvj422p.mp4 │ │ │ │ │ └── h264_yuvj444p.mp4 │ │ │ └── tst_qmediaplayerformatsupport.cpp │ │ ├── qmediarecorderbackend │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmediarecorderbackend.cpp │ │ ├── qml │ │ │ ├── CMakeLists.txt │ │ │ ├── mediaplayer │ │ │ │ └── tst_mediaplayer.qml │ │ │ ├── playbackoptions │ │ │ │ └── tst_playbackoptions.qml │ │ │ ├── soundeffect │ │ │ │ └── tst_soundeffect.qml │ │ │ └── tst_qml.cpp │ │ ├── qquickvideooutput │ │ │ ├── CMakeLists.txt │ │ │ ├── main.qml │ │ │ └── tst_qquickvideooutput.cpp │ │ ├── qquickvideooutput_window │ │ │ ├── CMakeLists.txt │ │ │ ├── main.qml │ │ │ └── tst_qquickvideooutput_window.cpp │ │ ├── qrtaudioengine │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qrtaudioengine.cpp │ │ ├── qscreencapturebackend │ │ │ ├── BLACKLIST │ │ │ ├── CMakeLists.txt │ │ │ ├── android │ │ │ │ └── AndroidManifest.xml │ │ │ └── tst_qscreencapturebackend.cpp │ │ ├── qsoundeffect │ │ │ ├── CMakeLists.txt │ │ │ ├── test.wav │ │ │ ├── test_corrupted.wav │ │ │ ├── test_tone.wav │ │ │ └── tst_qsoundeffect.cpp │ │ ├── qsoundeffect_concurrent │ │ │ ├── CMakeLists.txt │ │ │ ├── double-drop.wav │ │ │ └── tst_qsoundeffect_concurrent.cpp │ │ ├── qvideoframebackend │ │ │ ├── CMakeLists.txt │ │ │ ├── testdata │ │ │ │ ├── colors.mp4 │ │ │ │ └── one_red_frame.mp4 │ │ │ └── tst_qvideoframebackend.cpp │ │ ├── qwindowcapturebackend │ │ │ ├── BLACKLIST │ │ │ ├── CMakeLists.txt │ │ │ ├── fixture.cpp │ │ │ ├── fixture.h │ │ │ ├── grabber.cpp │ │ │ ├── grabber.h │ │ │ ├── tst_qwindowcapturebackend.cpp │ │ │ ├── widget.cpp │ │ │ └── widget.h │ │ └── static_linking │ │ │ ├── CMakeLists.txt │ │ │ └── tst_multimedia_static_linking.cpp │ ├── runautotests.py │ └── unit │ │ ├── CMakeLists.txt │ │ ├── mockbackend │ │ ├── CMakeLists.txt │ │ ├── mock.json │ │ ├── qmockaudiodecoder.cpp │ │ ├── qmockaudiodecoder.h │ │ ├── qmockaudiodevices.cpp │ │ ├── qmockaudiodevices.h │ │ ├── qmockaudiooutput.h │ │ ├── qmockcamera.cpp │ │ ├── qmockcamera.h │ │ ├── qmockimagecapture.cpp │ │ ├── qmockimagecapture.h │ │ ├── qmockintegration.cpp │ │ ├── qmockintegration.h │ │ ├── qmockmediacapturesession.h │ │ ├── qmockmediaencoder.h │ │ ├── qmockmediaplayer.h │ │ ├── qmocksurfacecapture.h │ │ ├── qmockvideobuffer.h │ │ ├── qmockvideodevices.cpp │ │ ├── qmockvideodevices.h │ │ └── qmockvideosink.h │ │ ├── multimedia │ │ ├── CMakeLists.txt │ │ ├── qabstractvideobuffer │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qabstractvideobuffer.cpp │ │ ├── qaudiobuffer │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qaudiobuffer.cpp │ │ ├── qaudiodecoder │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qaudiodecoder.cpp │ │ ├── qaudiodevice │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qaudiodevice.cpp │ │ ├── qaudioformat │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qaudioformat.cpp │ │ ├── qaudiohelpers │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qaudiohelpers.cpp │ │ ├── qaudionamespace │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qaudionamespace.cpp │ │ ├── qaudiorecorder │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qaudiorecorder.cpp │ │ ├── qaudioringbuffer │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qaudioringbuffer.cpp │ │ ├── qautoresetevent │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qautoresetevent.cpp │ │ ├── qcamera │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qcamera.cpp │ │ ├── qcameradevice │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qcameradevice.cpp │ │ ├── qerrorinfo │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qerrorinfo.cpp │ │ ├── qimagecapture │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qimagecapture.cpp │ │ ├── qmediadevices │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmediadevices.cpp │ │ ├── qmediaformat │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmediaformat.cpp │ │ ├── qmediametadata │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmediametadata.cpp │ │ ├── qmediaplayer │ │ │ ├── CMakeLists.txt │ │ │ ├── testdata │ │ │ │ └── nokia-tune.mp3 │ │ │ └── tst_qmediaplayer.cpp │ │ ├── qmediaplaylist │ │ │ ├── CMakeLists.txt │ │ │ ├── testdata │ │ │ │ ├── empty.pls │ │ │ │ ├── test.m3u │ │ │ │ ├── test.pls │ │ │ │ ├── testfile │ │ │ │ ├── testfile2#suffix │ │ │ │ └── totem-pl-example.pls │ │ │ └── tst_qmediaplaylist.cpp │ │ ├── qmediarecorder │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmediarecorder.cpp │ │ ├── qmediastoragelocation │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmediastoragelocation.cpp │ │ ├── qmediatimerange │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmediatimerange.cpp │ │ ├── qmultimediautils │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmultimediautils.cpp │ │ ├── qplaybackoptions │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qplaybackoptions.cpp │ │ ├── qrhivaluemapper │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qrhivaluemapper.cpp │ │ ├── qsamplecache │ │ │ ├── CMakeLists.txt │ │ │ ├── testdata │ │ │ │ ├── corrupted.wav │ │ │ │ ├── test.wav │ │ │ │ └── test2.wav │ │ │ └── tst_qsamplecache.cpp │ │ ├── qscreencapture │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qscreencapture.cpp │ │ ├── qsharedhandle │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qsharedhandle.cpp │ │ ├── qvideobuffers │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qvideobuffers.cpp │ │ ├── qvideoframe │ │ │ ├── CMakeLists.txt │ │ │ ├── tst_qvideoframe.cpp │ │ │ └── umbrellas.jpg │ │ ├── qvideoframe_nogui │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qvideoframe_nogui.cpp │ │ ├── qvideoframecolormanagement │ │ │ ├── CMakeLists.txt │ │ │ ├── testdata │ │ │ │ ├── umbrellas.jpg │ │ │ │ ├── umbrellas.jpg_abgr8888_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_abgr8888_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_abgr8888_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_abgr8888_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt601_full.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt601_video.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt709_full.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt709_video.png │ │ │ │ ├── umbrellas.jpg_abgr8888_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_argb8888_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_argb8888_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt601_full.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt601_video.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt709_full.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt709_video.png │ │ │ │ ├── umbrellas.jpg_argb8888_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt601_full.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt601_video.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt709_full.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt709_video.png │ │ │ │ ├── umbrellas.jpg_argb8888_premultiplied_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_bgra8888_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_bgra8888_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt601_full.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt601_video.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt709_full.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt709_video.png │ │ │ │ ├── umbrellas.jpg_bgra8888_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt601_full.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt601_video.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt709_full.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt709_video.png │ │ │ │ ├── umbrellas.jpg_bgra8888_premultiplied_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt601_full.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt601_video.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt709_full.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt709_video.png │ │ │ │ ├── umbrellas.jpg_bgrx8888_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc1_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_imc1_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc1_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_imc1_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc1_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_imc1_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc1_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_imc1_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc1_bt601_full.png │ │ │ │ ├── umbrellas.jpg_imc1_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc1_bt601_video.png │ │ │ │ ├── umbrellas.jpg_imc1_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc1_bt709_full.png │ │ │ │ ├── umbrellas.jpg_imc1_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc1_bt709_video.png │ │ │ │ ├── umbrellas.jpg_imc1_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc2_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_imc2_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc2_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_imc2_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc2_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_imc2_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc2_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_imc2_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc2_bt601_full.png │ │ │ │ ├── umbrellas.jpg_imc2_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc2_bt601_video.png │ │ │ │ ├── umbrellas.jpg_imc2_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc2_bt709_full.png │ │ │ │ ├── umbrellas.jpg_imc2_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc2_bt709_video.png │ │ │ │ ├── umbrellas.jpg_imc2_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc3_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_imc3_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc3_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_imc3_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc3_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_imc3_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc3_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_imc3_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc3_bt601_full.png │ │ │ │ ├── umbrellas.jpg_imc3_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc3_bt601_video.png │ │ │ │ ├── umbrellas.jpg_imc3_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc3_bt709_full.png │ │ │ │ ├── umbrellas.jpg_imc3_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc3_bt709_video.png │ │ │ │ ├── umbrellas.jpg_imc3_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc4_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_imc4_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc4_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_imc4_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc4_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_imc4_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc4_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_imc4_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc4_bt601_full.png │ │ │ │ ├── umbrellas.jpg_imc4_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc4_bt601_video.png │ │ │ │ ├── umbrellas.jpg_imc4_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_imc4_bt709_full.png │ │ │ │ ├── umbrellas.jpg_imc4_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_imc4_bt709_video.png │ │ │ │ ├── umbrellas.jpg_imc4_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_nv12_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_nv12_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_nv12_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_nv12_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_nv12_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_nv12_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_nv12_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_nv12_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_nv12_bt601_full.png │ │ │ │ ├── umbrellas.jpg_nv12_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_nv12_bt601_video.png │ │ │ │ ├── umbrellas.jpg_nv12_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_nv12_bt709_full.png │ │ │ │ ├── umbrellas.jpg_nv12_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_nv12_bt709_video.png │ │ │ │ ├── umbrellas.jpg_nv12_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_nv21_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_nv21_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_nv21_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_nv21_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_nv21_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_nv21_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_nv21_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_nv21_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_nv21_bt601_full.png │ │ │ │ ├── umbrellas.jpg_nv21_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_nv21_bt601_video.png │ │ │ │ ├── umbrellas.jpg_nv21_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_nv21_bt709_full.png │ │ │ │ ├── umbrellas.jpg_nv21_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_nv21_bt709_video.png │ │ │ │ ├── umbrellas.jpg_nv21_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_p010_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_p010_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_p010_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_p010_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_p010_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_p010_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_p010_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_p010_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_p010_bt601_full.png │ │ │ │ ├── umbrellas.jpg_p010_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_p010_bt601_video.png │ │ │ │ ├── umbrellas.jpg_p010_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_p010_bt709_full.png │ │ │ │ ├── umbrellas.jpg_p010_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_p010_bt709_video.png │ │ │ │ ├── umbrellas.jpg_p010_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_p016_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_p016_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_p016_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_p016_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_p016_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_p016_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_p016_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_p016_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_p016_bt601_full.png │ │ │ │ ├── umbrellas.jpg_p016_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_p016_bt601_video.png │ │ │ │ ├── umbrellas.jpg_p016_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_p016_bt709_full.png │ │ │ │ ├── umbrellas.jpg_p016_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_p016_bt709_video.png │ │ │ │ ├── umbrellas.jpg_p016_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_rgba8888_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_rgba8888_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_rgba8888_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_rgba8888_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt601_full.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt601_video.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt709_full.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt709_video.png │ │ │ │ ├── umbrellas.jpg_rgba8888_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt601_full.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt601_video.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt709_full.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt709_video.png │ │ │ │ ├── umbrellas.jpg_rgbx8888_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_uyvy_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_uyvy_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_uyvy_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_uyvy_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt601_full.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt601_video.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt709_full.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt709_video.png │ │ │ │ ├── umbrellas.jpg_uyvy_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt601_full.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt601_video.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt709_full.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt709_video.png │ │ │ │ ├── umbrellas.jpg_xbgr8888_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt601_full.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt601_video.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt709_full.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt709_video.png │ │ │ │ ├── umbrellas.jpg_xrgb8888_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_y16_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_y16_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_y16_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_y16_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_y16_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_y16_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_y16_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_y16_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_y16_bt601_full.png │ │ │ │ ├── umbrellas.jpg_y16_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_y16_bt601_video.png │ │ │ │ ├── umbrellas.jpg_y16_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_y16_bt709_full.png │ │ │ │ ├── umbrellas.jpg_y16_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_y16_bt709_video.png │ │ │ │ ├── umbrellas.jpg_y16_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_y8_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_y8_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_y8_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_y8_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_y8_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_y8_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_y8_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_y8_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_y8_bt601_full.png │ │ │ │ ├── umbrellas.jpg_y8_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_y8_bt601_video.png │ │ │ │ ├── umbrellas.jpg_y8_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_y8_bt709_full.png │ │ │ │ ├── umbrellas.jpg_y8_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_y8_bt709_video.png │ │ │ │ ├── umbrellas.jpg_y8_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv420p10_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_yuv420p10_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_yuv420p10_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_yuv420p10_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_yuv420p10_bt601_full.png │ │ │ │ ├── umbrellas.jpg_yuv420p10_bt601_video.png │ │ │ │ ├── umbrellas.jpg_yuv420p10_bt709_full.png │ │ │ │ ├── umbrellas.jpg_yuv420p10_bt709_video.png │ │ │ │ ├── umbrellas.jpg_yuv420p_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_yuv420p_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv420p_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_yuv420p_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt601_full.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt601_video.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt709_full.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt709_video.png │ │ │ │ ├── umbrellas.jpg_yuv420p_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv422p_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_yuv422p_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv422p_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_yuv422p_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt601_full.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt601_video.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt709_full.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt709_video.png │ │ │ │ ├── umbrellas.jpg_yuv422p_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuyv_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_yuyv_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuyv_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_yuyv_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt601_full.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt601_video.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt709_full.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt709_video.png │ │ │ │ ├── umbrellas.jpg_yuyv_bt709_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yv12_adobergb_full.png │ │ │ │ ├── umbrellas.jpg_yv12_adobergb_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yv12_adobergb_video.png │ │ │ │ ├── umbrellas.jpg_yv12_adobergb_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yv12_bt2020_full.png │ │ │ │ ├── umbrellas.jpg_yv12_bt2020_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yv12_bt2020_video.png │ │ │ │ ├── umbrellas.jpg_yv12_bt2020_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yv12_bt601_full.png │ │ │ │ ├── umbrellas.jpg_yv12_bt601_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yv12_bt601_video.png │ │ │ │ ├── umbrellas.jpg_yv12_bt601_video_cpu.png │ │ │ │ ├── umbrellas.jpg_yv12_bt709_full.png │ │ │ │ ├── umbrellas.jpg_yv12_bt709_full_cpu.png │ │ │ │ ├── umbrellas.jpg_yv12_bt709_video.png │ │ │ │ └── umbrellas.jpg_yv12_bt709_video_cpu.png │ │ │ └── tst_qvideoframecolormanagement.cpp │ │ ├── qvideoframeformat │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qvideoframeformat.cpp │ │ ├── qvideotexturehelper │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qvideotexturehelper.cpp │ │ ├── qvideotransformation │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qvideotransformation.cpp │ │ ├── qwavedecoder │ │ │ ├── CMakeLists.txt │ │ │ ├── data │ │ │ │ ├── corrupt_datadesc_1_16_8000.le.wav │ │ │ │ ├── corrupt_fmtdesc_1_16_8000.le.wav │ │ │ │ ├── corrupt_fmtstring_1_16_8000.le.wav │ │ │ │ ├── empty.wav │ │ │ │ ├── gendata.sh │ │ │ │ ├── isawav_1_16_44100_le.wav │ │ │ │ ├── isawav_1_16_44100_le_2.wav │ │ │ │ ├── isawav_1_16_8000_le.wav │ │ │ │ ├── isawav_1_24_44100_le.wav │ │ │ │ ├── isawav_1_24_8000_le.wav │ │ │ │ ├── isawav_1_32_44100_le.wav │ │ │ │ ├── isawav_1_32_8000_le.wav │ │ │ │ ├── isawav_1_8_44100.wav │ │ │ │ ├── isawav_1_8_8000.wav │ │ │ │ ├── isawav_1_8_8000_even_bext.wav │ │ │ │ ├── isawav_1_8_8000_odd_bext.wav │ │ │ │ ├── isawav_1_f32_44100_le.wav │ │ │ │ ├── isawav_1_f32_8000_le.wav │ │ │ │ ├── isawav_2_16_44100_be.wav │ │ │ │ ├── isawav_2_16_8000_be.wav │ │ │ │ ├── isawav_2_24_44100_be.wav │ │ │ │ ├── isawav_2_24_8000_be.wav │ │ │ │ ├── isawav_2_32_44100_be.wav │ │ │ │ ├── isawav_2_32_8000_be.wav │ │ │ │ ├── isawav_2_8_44100.wav │ │ │ │ ├── isawav_2_8_8000.wav │ │ │ │ ├── isawav_2_f32_44100_be.wav │ │ │ │ ├── isawav_2_f32_8000_be.wav │ │ │ │ ├── nosampledata.wav │ │ │ │ ├── notawav.wav │ │ │ │ └── onebyte.wav │ │ │ └── tst_qwavedecoder.cpp │ │ └── qwindowsresampler │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qwindowsresampler.cpp │ │ ├── multimediawidgets │ │ ├── CMakeLists.txt │ │ ├── qcamerawidgets │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qcamerawidgets.cpp │ │ ├── qgraphicsvideoitem │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qgraphicsvideoitem.cpp │ │ ├── qmediaplayerwidgets │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmediaplayerwidgets.cpp │ │ └── qvideowidget │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qvideowidget.cpp │ │ └── plugins │ │ ├── CMakeLists.txt │ │ └── multimedia │ │ ├── CMakeLists.txt │ │ ├── ffmpeg │ │ ├── CMakeLists.txt │ │ ├── qffmpegmath │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qffmpegmath.cpp │ │ ├── qffmpegvideoencoderutils │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qffmpegvideoencoderutils.cpp │ │ └── texturebridge │ │ │ ├── CMakeLists.txt │ │ │ ├── devicecontext.cpp │ │ │ ├── devicecontext.h │ │ │ └── tst_texturebridge.cpp │ │ └── gstreamer │ │ ├── CMakeLists.txt │ │ ├── gstreamer_backend │ │ ├── BLACKLIST │ │ ├── CMakeLists.txt │ │ ├── color_matrix_90_deg_clockwise.m2v │ │ ├── color_matrix_90_deg_clockwise.mp4 │ │ ├── metadata_test_file.mp4 │ │ ├── readme.txt │ │ ├── tst_gstreamer_backend.cpp │ │ └── tst_gstreamer_backend.h │ │ ├── qmediacapture_gstreamer │ │ ├── BLACKLIST │ │ ├── CMakeLists.txt │ │ └── tst_qmediacapture_gstreamer.cpp │ │ └── qmediaplayer_gstreamer │ │ ├── BLACKLIST │ │ ├── CMakeLists.txt │ │ ├── testdata │ │ └── color_matrix.mp4 │ │ ├── tst_qmediaplayer_gstreamer.cpp │ │ └── tst_qmediaplayer_gstreamer.h ├── global │ └── global.cfg └── manual │ ├── CMakeLists.txt │ ├── audiodecoder │ ├── CMakeLists.txt │ ├── audiodecoder.cpp │ ├── audiodecoder.h │ └── main.cpp │ ├── gstreamer-custom-camera-rtp │ ├── CMakeLists.txt │ ├── Info.plist.in │ └── gstreamer-custom-camera-rtp.cpp │ ├── gstreamer-custom-camera │ ├── CMakeLists.txt │ ├── Info.plist.in │ └── gstreamer-custom-camera.cpp │ ├── media-metadata │ ├── CMakeLists.txt │ ├── Info.plist.in │ └── media-metadata.cpp │ ├── mediadevices │ ├── CMakeLists.txt │ └── main.cpp │ ├── mediaformats │ ├── CMakeLists.txt │ └── main.cpp │ ├── mediaframeinputs │ ├── CMakeLists.txt │ ├── commandlineparser.cpp │ ├── commandlineparser.h │ ├── main.cpp │ ├── mediaframeinputqueue.h │ ├── mediagenerator.cpp │ ├── mediagenerator.h │ ├── previewrunner.cpp │ ├── previewrunner.h │ ├── pushmodemediasource.h │ ├── recordingrunner.cpp │ ├── recordingrunner.h │ └── settings.h │ ├── minimal-audio-callback-io │ ├── CMakeLists.txt │ ├── Info.plist.in │ └── minimal-audio-callback-io.cpp │ ├── minimal-audio-recorder │ ├── CMakeLists.txt │ ├── info.plist.in │ └── minimal-audio-recorder.cpp │ ├── minimal-player │ ├── CMakeLists.txt │ ├── Info.plist.in │ └── minimal-player.cpp │ ├── minimal-screen-recorder │ ├── CMakeLists.txt │ ├── Info.plist.in │ └── minimal-screen-recorder.cpp │ ├── qml-camera-advanced │ ├── AdvancedPanel.qml │ ├── AllCameraControls.qml │ ├── CMakeLists.txt │ ├── CameraDeviceSelector.qml │ ├── CameraFeed.qml │ ├── CameraHelper.qml │ ├── ImageCaptureHelper.qml │ ├── Info.plist │ ├── InfoPage.qml │ ├── Main.qml │ ├── MediaDevicesHelper.qml │ ├── QuickControls.qml │ └── main.cpp │ ├── qml-gstreamer-pipeline │ ├── CMakeLists.txt │ ├── Info.plist.in │ ├── qml-gstreamer-pipeline.cpp │ └── qml-gstreamer-pipeline.qml │ ├── qml-gstreamer-rtp │ ├── CMakeLists.txt │ ├── Info.plist.in │ ├── qml-gstreamer-rtp.cpp │ └── qml-gstreamer-rtp.qml │ ├── qml-minimal-audio-recorder │ ├── CMakeLists.txt │ ├── Info.plist.in │ ├── qml-minimal-audio-recorder.cpp │ └── qml-minimal-audio-recorder.qml │ ├── qml-minimal-camera │ ├── CMakeLists.txt │ ├── Info.plist.in │ ├── qml-minimal-camera.cpp │ └── qml-minimal-camera.qml │ ├── qml-minimal-player │ ├── CMakeLists.txt │ ├── Info.plist.in │ ├── qml-minimal-player.cpp │ └── qml-minimal-player.qml │ ├── qml-minimal-sound-effect │ ├── CMakeLists.txt │ ├── Info.plist.in │ ├── double-drop.wav │ ├── qml-minimal-sound-effect.cpp │ ├── qml-minimal-sound-effect.qml │ └── triple-click.wav │ ├── qml-multiple-players │ ├── CMakeLists.txt │ ├── qml-multiple-players.cpp │ ├── qml-multiple-players.qml │ ├── testvideo1.mp4 │ └── testvideo2.mp4 │ ├── qml-screencapture-advanced │ ├── CMakeLists.txt │ ├── Main.qml │ ├── ScreenCapturePanel.qml │ ├── WindowCapturePanel.qml │ ├── android │ │ └── AndroidManifest.xml │ └── main.cpp │ └── wasm │ ├── CMakeLists.txt │ └── camera │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── util ├── REUSE.toml ├── adt_generate_qt.m └── macos_test_audio_config ├── CMakeLists.txt ├── README ├── compile_and_run.sh └── main.cpp /.cmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/.cmake.conf -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/.gitreview -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | a409506123f7382d6b5b361123062097920b4240 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/GFDL-1.3-no-invariants-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/LICENSES/GFDL-1.3-no-invariants-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Qt-Commercial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/LICENSES/LicenseRef-Qt-Commercial.txt -------------------------------------------------------------------------------- /LICENSES/MIT-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/LICENSES/MIT-0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/MPL-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/LICENSES/MPL-2.0.txt -------------------------------------------------------------------------------- /LICENSES/Qt-GPL-exception-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/LICENSES/Qt-GPL-exception-1.0.txt -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/REUSE.toml -------------------------------------------------------------------------------- /cmake/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/cmake/FindFFmpeg.cmake -------------------------------------------------------------------------------- /cmake/FindGObject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/cmake/FindGObject.cmake -------------------------------------------------------------------------------- /cmake/FindGStreamer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/cmake/FindGStreamer.cmake -------------------------------------------------------------------------------- /cmake/FindMMRenderer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/cmake/FindMMRenderer.cmake -------------------------------------------------------------------------------- /cmake/FindMMRendererCore.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/cmake/FindMMRendererCore.cmake -------------------------------------------------------------------------------- /cmake/FindPipeWire.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/cmake/FindPipeWire.cmake -------------------------------------------------------------------------------- /cmake/FindVAAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/cmake/FindVAAPI.cmake -------------------------------------------------------------------------------- /cmake/FindWrapPulseAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/cmake/FindWrapPulseAudio.cmake -------------------------------------------------------------------------------- /cmake/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/cmake/REUSE.toml -------------------------------------------------------------------------------- /coin/axivion/ci_config_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/coin/axivion/ci_config_linux.json -------------------------------------------------------------------------------- /coin/instructions/run_ffmpeg_backend_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/coin/instructions/run_ffmpeg_backend_tests.yaml -------------------------------------------------------------------------------- /coin/module_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/coin/module_config.yaml -------------------------------------------------------------------------------- /config.tests/gpu_vivante/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/config.tests/gpu_vivante/CMakeLists.txt -------------------------------------------------------------------------------- /config.tests/gpu_vivante/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/config.tests/gpu_vivante/main.cpp -------------------------------------------------------------------------------- /config.tests/linux_v4l/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/config.tests/linux_v4l/CMakeLists.txt -------------------------------------------------------------------------------- /config.tests/linux_v4l/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/config.tests/linux_v4l/main.cpp -------------------------------------------------------------------------------- /config_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/config_help.txt -------------------------------------------------------------------------------- /configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/configure.cmake -------------------------------------------------------------------------------- /dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dependencies.yaml -------------------------------------------------------------------------------- /dist/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/REUSE.toml -------------------------------------------------------------------------------- /dist/changes-5.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.0.1 -------------------------------------------------------------------------------- /dist/changes-5.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.0.2 -------------------------------------------------------------------------------- /dist/changes-5.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.1.0 -------------------------------------------------------------------------------- /dist/changes-5.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.1.1 -------------------------------------------------------------------------------- /dist/changes-5.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.10.0 -------------------------------------------------------------------------------- /dist/changes-5.10.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.10.1 -------------------------------------------------------------------------------- /dist/changes-5.11.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.11.0 -------------------------------------------------------------------------------- /dist/changes-5.11.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.11.1 -------------------------------------------------------------------------------- /dist/changes-5.11.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.11.2 -------------------------------------------------------------------------------- /dist/changes-5.11.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.11.3 -------------------------------------------------------------------------------- /dist/changes-5.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.12.0 -------------------------------------------------------------------------------- /dist/changes-5.12.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.12.1 -------------------------------------------------------------------------------- /dist/changes-5.12.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.12.2 -------------------------------------------------------------------------------- /dist/changes-5.12.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.12.3 -------------------------------------------------------------------------------- /dist/changes-5.12.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.12.4 -------------------------------------------------------------------------------- /dist/changes-5.12.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.12.5 -------------------------------------------------------------------------------- /dist/changes-5.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.13.0 -------------------------------------------------------------------------------- /dist/changes-5.13.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.13.1 -------------------------------------------------------------------------------- /dist/changes-5.13.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.13.2 -------------------------------------------------------------------------------- /dist/changes-5.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.14.0 -------------------------------------------------------------------------------- /dist/changes-5.14.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.14.1 -------------------------------------------------------------------------------- /dist/changes-5.14.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.14.2 -------------------------------------------------------------------------------- /dist/changes-5.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.15.0 -------------------------------------------------------------------------------- /dist/changes-5.15.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.15.1 -------------------------------------------------------------------------------- /dist/changes-5.15.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.15.2 -------------------------------------------------------------------------------- /dist/changes-5.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.2.0 -------------------------------------------------------------------------------- /dist/changes-5.2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.2.1 -------------------------------------------------------------------------------- /dist/changes-5.3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.3.1 -------------------------------------------------------------------------------- /dist/changes-5.3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.3.2 -------------------------------------------------------------------------------- /dist/changes-5.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.4.0 -------------------------------------------------------------------------------- /dist/changes-5.4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.4.1 -------------------------------------------------------------------------------- /dist/changes-5.4.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.4.2 -------------------------------------------------------------------------------- /dist/changes-5.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.5.0 -------------------------------------------------------------------------------- /dist/changes-5.5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.5.1 -------------------------------------------------------------------------------- /dist/changes-5.6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.6.0 -------------------------------------------------------------------------------- /dist/changes-5.6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.6.1 -------------------------------------------------------------------------------- /dist/changes-5.6.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.6.2 -------------------------------------------------------------------------------- /dist/changes-5.6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.6.3 -------------------------------------------------------------------------------- /dist/changes-5.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.7.0 -------------------------------------------------------------------------------- /dist/changes-5.7.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.7.1 -------------------------------------------------------------------------------- /dist/changes-5.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.8.0 -------------------------------------------------------------------------------- /dist/changes-5.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.9.0 -------------------------------------------------------------------------------- /dist/changes-5.9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.9.1 -------------------------------------------------------------------------------- /dist/changes-5.9.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.9.2 -------------------------------------------------------------------------------- /dist/changes-5.9.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.9.3 -------------------------------------------------------------------------------- /dist/changes-5.9.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.9.4 -------------------------------------------------------------------------------- /dist/changes-5.9.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.9.5 -------------------------------------------------------------------------------- /dist/changes-5.9.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/dist/changes-5.9.6 -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += multimedia spatialaudio 4 | -------------------------------------------------------------------------------- /examples/multimedia/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/CMakeLists.txt -------------------------------------------------------------------------------- /examples/multimedia/audiodevices/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiodevices/CMakeLists.txt -------------------------------------------------------------------------------- /examples/multimedia/audiodevices/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiodevices/Info.plist.in -------------------------------------------------------------------------------- /examples/multimedia/audiodevices/audiodevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiodevices/audiodevices.h -------------------------------------------------------------------------------- /examples/multimedia/audiodevices/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiodevices/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/audiooutput/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiooutput/CMakeLists.txt -------------------------------------------------------------------------------- /examples/multimedia/audiooutput/audiooutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiooutput/audiooutput.cpp -------------------------------------------------------------------------------- /examples/multimedia/audiooutput/audiooutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiooutput/audiooutput.h -------------------------------------------------------------------------------- /examples/multimedia/audiooutput/audiooutput.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiooutput/audiooutput.pro -------------------------------------------------------------------------------- /examples/multimedia/audiooutput/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiooutput/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/audiorecorder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiorecorder/CMakeLists.txt -------------------------------------------------------------------------------- /examples/multimedia/audiorecorder/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiorecorder/Info.plist.in -------------------------------------------------------------------------------- /examples/multimedia/audiorecorder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiorecorder/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/audiosource/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiosource/CMakeLists.txt -------------------------------------------------------------------------------- /examples/multimedia/audiosource/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiosource/Info.plist.in -------------------------------------------------------------------------------- /examples/multimedia/audiosource/audiosource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiosource/audiosource.cpp -------------------------------------------------------------------------------- /examples/multimedia/audiosource/audiosource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiosource/audiosource.h -------------------------------------------------------------------------------- /examples/multimedia/audiosource/audiosource.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiosource/audiosource.pro -------------------------------------------------------------------------------- /examples/multimedia/audiosource/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/audiosource/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/camera/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/CMakeLists.txt -------------------------------------------------------------------------------- /examples/multimedia/camera/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/camera.cpp -------------------------------------------------------------------------------- /examples/multimedia/camera/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/camera.h -------------------------------------------------------------------------------- /examples/multimedia/camera/camera.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/camera.pro -------------------------------------------------------------------------------- /examples/multimedia/camera/camera.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/camera.qrc -------------------------------------------------------------------------------- /examples/multimedia/camera/camera.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/camera.ui -------------------------------------------------------------------------------- /examples/multimedia/camera/camera_mobile.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/camera_mobile.ui -------------------------------------------------------------------------------- /examples/multimedia/camera/doc/src/camera.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/doc/src/camera.qdoc -------------------------------------------------------------------------------- /examples/multimedia/camera/images/shutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/images/shutter.svg -------------------------------------------------------------------------------- /examples/multimedia/camera/imagesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/imagesettings.cpp -------------------------------------------------------------------------------- /examples/multimedia/camera/imagesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/imagesettings.h -------------------------------------------------------------------------------- /examples/multimedia/camera/imagesettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/imagesettings.ui -------------------------------------------------------------------------------- /examples/multimedia/camera/ios/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/ios/Info.plist.in -------------------------------------------------------------------------------- /examples/multimedia/camera/macos/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/macos/Info.plist.in -------------------------------------------------------------------------------- /examples/multimedia/camera/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/camera/metadatadialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/metadatadialog.cpp -------------------------------------------------------------------------------- /examples/multimedia/camera/metadatadialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/metadatadialog.h -------------------------------------------------------------------------------- /examples/multimedia/camera/videosettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/videosettings.cpp -------------------------------------------------------------------------------- /examples/multimedia/camera/videosettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/videosettings.h -------------------------------------------------------------------------------- /examples/multimedia/camera/videosettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/camera/videosettings.ui -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/Popup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/declarative-camera/Popup.qml -------------------------------------------------------------------------------- /examples/multimedia/multimedia.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/multimedia.pro -------------------------------------------------------------------------------- /examples/multimedia/player/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/CMakeLists.txt -------------------------------------------------------------------------------- /examples/multimedia/player/audiolevelmeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/audiolevelmeter.cpp -------------------------------------------------------------------------------- /examples/multimedia/player/audiolevelmeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/audiolevelmeter.h -------------------------------------------------------------------------------- /examples/multimedia/player/doc/src/player.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/doc/src/player.qdoc -------------------------------------------------------------------------------- /examples/multimedia/player/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/player/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/player.cpp -------------------------------------------------------------------------------- /examples/multimedia/player/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/player.h -------------------------------------------------------------------------------- /examples/multimedia/player/player.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/player.pro -------------------------------------------------------------------------------- /examples/multimedia/player/playercontrols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/playercontrols.cpp -------------------------------------------------------------------------------- /examples/multimedia/player/playercontrols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/playercontrols.h -------------------------------------------------------------------------------- /examples/multimedia/player/playlistmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/playlistmodel.cpp -------------------------------------------------------------------------------- /examples/multimedia/player/playlistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/playlistmodel.h -------------------------------------------------------------------------------- /examples/multimedia/player/qmediaplaylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/qmediaplaylist.cpp -------------------------------------------------------------------------------- /examples/multimedia/player/qmediaplaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/qmediaplaylist.h -------------------------------------------------------------------------------- /examples/multimedia/player/qmediaplaylist_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/qmediaplaylist_p.cpp -------------------------------------------------------------------------------- /examples/multimedia/player/qmediaplaylist_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/qmediaplaylist_p.h -------------------------------------------------------------------------------- /examples/multimedia/player/qplaylistfileparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/qplaylistfileparser.h -------------------------------------------------------------------------------- /examples/multimedia/player/videowidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/videowidget.cpp -------------------------------------------------------------------------------- /examples/multimedia/player/videowidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/player/videowidget.h -------------------------------------------------------------------------------- /examples/multimedia/screencapture/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/screencapture/CMakeLists.txt -------------------------------------------------------------------------------- /examples/multimedia/screencapture/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/screencapture/Info.plist.in -------------------------------------------------------------------------------- /examples/multimedia/screencapture/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/screencapture/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/shared/shared.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/shared/shared.pri -------------------------------------------------------------------------------- /examples/multimedia/video/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/CMakeLists.txt -------------------------------------------------------------------------------- /examples/multimedia/video/mediaplayer/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/mediaplayer/Main.qml -------------------------------------------------------------------------------- /examples/multimedia/video/mediaplayer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/mediaplayer/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/qmlvideo/Info.plist.in -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/qmlvideo/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/qmlvideo/qmlvideo.png -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/qmlvideo/qmlvideo.pro -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/qmlvideo/qmlvideo.svg -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/qmlvideo/trace.h -------------------------------------------------------------------------------- /examples/multimedia/video/recorder/Controls.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/recorder/Controls.qml -------------------------------------------------------------------------------- /examples/multimedia/video/recorder/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/recorder/Info.plist.in -------------------------------------------------------------------------------- /examples/multimedia/video/recorder/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/recorder/Main.qml -------------------------------------------------------------------------------- /examples/multimedia/video/recorder/MediaList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/recorder/MediaList.qml -------------------------------------------------------------------------------- /examples/multimedia/video/recorder/Playback.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/recorder/Playback.qml -------------------------------------------------------------------------------- /examples/multimedia/video/recorder/Style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/recorder/Style.qml -------------------------------------------------------------------------------- /examples/multimedia/video/recorder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/video/recorder/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/video/video.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += qmlvideo 4 | -------------------------------------------------------------------------------- /examples/multimedia/videographicsitem/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/videographicsitem/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/videowidget/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/videowidget/CMakeLists.txt -------------------------------------------------------------------------------- /examples/multimedia/videowidget/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/videowidget/main.cpp -------------------------------------------------------------------------------- /examples/multimedia/videowidget/videoplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/videowidget/videoplayer.cpp -------------------------------------------------------------------------------- /examples/multimedia/videowidget/videoplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/videowidget/videoplayer.h -------------------------------------------------------------------------------- /examples/multimedia/videowidget/videowidget.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/multimedia/videowidget/videowidget.pro -------------------------------------------------------------------------------- /examples/spatialaudio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/spatialaudio/CMakeLists.txt -------------------------------------------------------------------------------- /examples/spatialaudio/audiopanning/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/examples/spatialaudio/audiopanning/main.cpp -------------------------------------------------------------------------------- /examples/spatialaudio/spatialaudio.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS += audiopanning 3 | 4 | -------------------------------------------------------------------------------- /licenseRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/licenseRule.json -------------------------------------------------------------------------------- /qt_cmdline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/qt_cmdline.cmake -------------------------------------------------------------------------------- /src/3rdparty/dr_libs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/dr_libs/LICENSE -------------------------------------------------------------------------------- /src/3rdparty/dr_libs/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/dr_libs/REUSE.toml -------------------------------------------------------------------------------- /src/3rdparty/dr_libs/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/dr_libs/dr_wav.h -------------------------------------------------------------------------------- /src/3rdparty/dr_libs/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/dr_libs/qt_attribution.json -------------------------------------------------------------------------------- /src/3rdparty/eigen/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/COPYING.BSD -------------------------------------------------------------------------------- /src/3rdparty/eigen/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/COPYING.MPL2 -------------------------------------------------------------------------------- /src/3rdparty/eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/COPYING.README -------------------------------------------------------------------------------- /src/3rdparty/eigen/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/COPYRIGHTS -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/Core -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/Dense -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/Geometry -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/Householder -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/LU -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/QR -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/SVD -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Reshaped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Reshaped.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/StlIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/StlIterators.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /src/3rdparty/eigen/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/INSTALL -------------------------------------------------------------------------------- /src/3rdparty/eigen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/README.md -------------------------------------------------------------------------------- /src/3rdparty/eigen/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/REUSE.toml -------------------------------------------------------------------------------- /src/3rdparty/eigen/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/eigen/qt_attribution.json -------------------------------------------------------------------------------- /src/3rdparty/ffmpeg/LICENSE.BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/ffmpeg/LICENSE.BSD-2-Clause.txt -------------------------------------------------------------------------------- /src/3rdparty/ffmpeg/LICENSE.BSD-Source-Code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/ffmpeg/LICENSE.BSD-Source-Code.txt -------------------------------------------------------------------------------- /src/3rdparty/ffmpeg/LICENSE.BSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/ffmpeg/LICENSE.BSL-1.0.txt -------------------------------------------------------------------------------- /src/3rdparty/ffmpeg/LICENSE.IJG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/ffmpeg/LICENSE.IJG.txt -------------------------------------------------------------------------------- /src/3rdparty/ffmpeg/LICENSE.ISC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/ffmpeg/LICENSE.ISC.txt -------------------------------------------------------------------------------- /src/3rdparty/ffmpeg/LICENSE.MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/ffmpeg/LICENSE.MIT.txt -------------------------------------------------------------------------------- /src/3rdparty/ffmpeg/LICENSE.Zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/ffmpeg/LICENSE.Zlib.txt -------------------------------------------------------------------------------- /src/3rdparty/ffmpeg/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/ffmpeg/qt_attribution.json -------------------------------------------------------------------------------- /src/3rdparty/pffft/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/pffft/COPYRIGHTS -------------------------------------------------------------------------------- /src/3rdparty/pffft/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/pffft/LICENSE -------------------------------------------------------------------------------- /src/3rdparty/pffft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/pffft/README.md -------------------------------------------------------------------------------- /src/3rdparty/pffft/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/pffft/REUSE.toml -------------------------------------------------------------------------------- /src/3rdparty/pffft/fftpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/pffft/fftpack.c -------------------------------------------------------------------------------- /src/3rdparty/pffft/fftpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/pffft/fftpack.h -------------------------------------------------------------------------------- /src/3rdparty/pffft/pffft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/pffft/pffft.c -------------------------------------------------------------------------------- /src/3rdparty/pffft/pffft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/pffft/pffft.h -------------------------------------------------------------------------------- /src/3rdparty/pffft/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/pffft/qt_attribution.json -------------------------------------------------------------------------------- /src/3rdparty/pffft/test_pffft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/pffft/test_pffft.c -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/resonance-audio/.travis.yml -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/resonance-audio/AUTHORS -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/resonance-audio/CMakeLists.txt -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/resonance-audio/CODEOWNERS -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/resonance-audio/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/resonance-audio/COPYRIGHTS -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/resonance-audio/LICENSE -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/resonance-audio/README.md -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/resonance-audio/REUSE.toml -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/resonance-audio/build.sh -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/resonance-audio/qt_attribution.json -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/LICENSE.txt -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/README.md -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/REUSE.toml -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/LICENSE.txt -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/README.md -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/common.h -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/curves.h -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/delay.h -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/envelopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/envelopes.h -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/fft.h -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/filters.h -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/mix.h -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/perf.h -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/rates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/rates.h -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/spectral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/spectral.h -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/dsp/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/signalsmith-stretch/dsp/windows.h -------------------------------------------------------------------------------- /src/3rdparty/tlsf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/tlsf/CMakeLists.txt -------------------------------------------------------------------------------- /src/3rdparty/tlsf/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/tlsf/REUSE.toml -------------------------------------------------------------------------------- /src/3rdparty/tlsf/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/tlsf/qt_attribution.json -------------------------------------------------------------------------------- /src/3rdparty/tlsf/tlsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/tlsf/tlsf.cpp -------------------------------------------------------------------------------- /src/3rdparty/tlsf/tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/3rdparty/tlsf/tlsf.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/android/CMakeLists.txt -------------------------------------------------------------------------------- /src/android/jar/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/android/jar/AndroidManifest.xml -------------------------------------------------------------------------------- /src/android/jar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/android/jar/CMakeLists.txt -------------------------------------------------------------------------------- /src/multimedia/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/CMakeLists.txt -------------------------------------------------------------------------------- /src/multimedia/Qt6MultimediaMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/Qt6MultimediaMacros.cmake -------------------------------------------------------------------------------- /src/multimedia/alsa/qalsaaudiodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/alsa/qalsaaudiodevice.cpp -------------------------------------------------------------------------------- /src/multimedia/alsa/qalsaaudiodevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/alsa/qalsaaudiodevice_p.h -------------------------------------------------------------------------------- /src/multimedia/alsa/qalsaaudiodevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/alsa/qalsaaudiodevices.cpp -------------------------------------------------------------------------------- /src/multimedia/alsa/qalsaaudiodevices_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/alsa/qalsaaudiodevices_p.h -------------------------------------------------------------------------------- /src/multimedia/alsa/qalsaaudiosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/alsa/qalsaaudiosink.cpp -------------------------------------------------------------------------------- /src/multimedia/alsa/qalsaaudiosink_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/alsa/qalsaaudiosink_p.h -------------------------------------------------------------------------------- /src/multimedia/alsa/qalsaaudiosource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/alsa/qalsaaudiosource.cpp -------------------------------------------------------------------------------- /src/multimedia/alsa/qalsaaudiosource_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/alsa/qalsaaudiosource_p.h -------------------------------------------------------------------------------- /src/multimedia/android/qaaudiostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qaaudiostream.cpp -------------------------------------------------------------------------------- /src/multimedia/android/qaaudiostream_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qaaudiostream_p.h -------------------------------------------------------------------------------- /src/multimedia/android/qandroidaudiodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qandroidaudiodevice.cpp -------------------------------------------------------------------------------- /src/multimedia/android/qandroidaudiodevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qandroidaudiodevice_p.h -------------------------------------------------------------------------------- /src/multimedia/android/qandroidaudiodevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qandroidaudiodevices.cpp -------------------------------------------------------------------------------- /src/multimedia/android/qandroidaudiodevices_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qandroidaudiodevices_p.h -------------------------------------------------------------------------------- /src/multimedia/android/qandroidaudiojnitypes_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qandroidaudiojnitypes_p.h -------------------------------------------------------------------------------- /src/multimedia/android/qandroidaudiosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qandroidaudiosink.cpp -------------------------------------------------------------------------------- /src/multimedia/android/qandroidaudiosink_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qandroidaudiosink_p.h -------------------------------------------------------------------------------- /src/multimedia/android/qandroidaudiosource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qandroidaudiosource.cpp -------------------------------------------------------------------------------- /src/multimedia/android/qandroidaudiosource_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qandroidaudiosource_p.h -------------------------------------------------------------------------------- /src/multimedia/android/qandroidaudioutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qandroidaudioutil.cpp -------------------------------------------------------------------------------- /src/multimedia/android/qandroidaudioutil_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/android/qandroidaudioutil_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/q_pmr_emulation_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/q_pmr_emulation_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudio.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudio_dr_wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudio_dr_wav.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudio_qspan_support_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudio_qspan_support_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudio_rtsan_support_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudio_rtsan_support_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiobuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiobuffer.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiobuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiobuffer.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiobuffer_support_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiobuffer_support_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiobufferinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiobufferinput.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiobufferinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiobufferinput.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiobufferoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiobufferoutput.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiobufferoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiobufferoutput.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiobufferoutput_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiobufferoutput_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiodecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiodecoder.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiodecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiodecoder.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiodecoder_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiodecoder_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiodevice.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiodevice.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiodevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiodevice_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudioformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudioformat.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudioformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudioformat.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudioformat_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudioformat_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiohelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiohelpers.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiohelpers_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiohelpers_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudioinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudioinput.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudioinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudioinput.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiooutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiooutput.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiooutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiooutput.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudioringbuffer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudioringbuffer_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiosink.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiosink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiosink.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiosource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiosource.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiosource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiosource.h -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiosystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiosystem.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qaudiosystem_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qaudiosystem_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qautoresetevent_kqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qautoresetevent_kqueue.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qautoresetevent_kqueue_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qautoresetevent_kqueue_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qautoresetevent_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qautoresetevent_linux.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qautoresetevent_linux_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qautoresetevent_linux_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qautoresetevent_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qautoresetevent_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qautoresetevent_pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qautoresetevent_pipe.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qautoresetevent_pipe_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qautoresetevent_pipe_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qautoresetevent_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qautoresetevent_win32.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qautoresetevent_win32_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qautoresetevent_win32_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qmemory_resource_tlsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qmemory_resource_tlsf.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qmemory_resource_tlsf_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qmemory_resource_tlsf_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qrtaudioengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qrtaudioengine.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qrtaudioengine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qrtaudioengine_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qsamplecache_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qsamplecache_p.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qsamplecache_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qsamplecache_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qsoundeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qsoundeffect.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qsoundeffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qsoundeffect.h -------------------------------------------------------------------------------- /src/multimedia/audio/qsoundeffect_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qsoundeffect_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qsoundeffectsynchronous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qsoundeffectsynchronous.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qsoundeffectsynchronous_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qsoundeffectsynchronous_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qsoundeffectwithplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qsoundeffectwithplayer.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qsoundeffectwithplayer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qsoundeffectwithplayer_p.h -------------------------------------------------------------------------------- /src/multimedia/audio/qtaudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qtaudio.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qtaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qtaudio.h -------------------------------------------------------------------------------- /src/multimedia/audio/qwavedecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qwavedecoder.cpp -------------------------------------------------------------------------------- /src/multimedia/audio/qwavedecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/audio/qwavedecoder.h -------------------------------------------------------------------------------- /src/multimedia/camera/qcamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/camera/qcamera.cpp -------------------------------------------------------------------------------- /src/multimedia/camera/qcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/camera/qcamera.h -------------------------------------------------------------------------------- /src/multimedia/camera/qcamera_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/camera/qcamera_p.h -------------------------------------------------------------------------------- /src/multimedia/camera/qcameradevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/camera/qcameradevice.cpp -------------------------------------------------------------------------------- /src/multimedia/camera/qcameradevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/camera/qcameradevice.h -------------------------------------------------------------------------------- /src/multimedia/camera/qcameradevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/camera/qcameradevice_p.h -------------------------------------------------------------------------------- /src/multimedia/camera/qimagecapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/camera/qimagecapture.cpp -------------------------------------------------------------------------------- /src/multimedia/camera/qimagecapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/camera/qimagecapture.h -------------------------------------------------------------------------------- /src/multimedia/compat/removed_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/compat/removed_api.cpp -------------------------------------------------------------------------------- /src/multimedia/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/configure.cmake -------------------------------------------------------------------------------- /src/multimedia/darwin/qavfcamerabase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qavfcamerabase.mm -------------------------------------------------------------------------------- /src/multimedia/darwin/qavfcamerabase_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qavfcamerabase_p.h -------------------------------------------------------------------------------- /src/multimedia/darwin/qavfcameradebug_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qavfcameradebug_p.h -------------------------------------------------------------------------------- /src/multimedia/darwin/qavfcamerautility.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qavfcamerautility.mm -------------------------------------------------------------------------------- /src/multimedia/darwin/qavfcamerautility_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qavfcamerautility_p.h -------------------------------------------------------------------------------- /src/multimedia/darwin/qavfhelpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qavfhelpers.mm -------------------------------------------------------------------------------- /src/multimedia/darwin/qavfhelpers_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qavfhelpers_p.h -------------------------------------------------------------------------------- /src/multimedia/darwin/qavfvideodevices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qavfvideodevices.mm -------------------------------------------------------------------------------- /src/multimedia/darwin/qavfvideodevices_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qavfvideodevices_p.h -------------------------------------------------------------------------------- /src/multimedia/darwin/qcoreaudioutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qcoreaudioutils.cpp -------------------------------------------------------------------------------- /src/multimedia/darwin/qcoreaudioutils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qcoreaudioutils_p.h -------------------------------------------------------------------------------- /src/multimedia/darwin/qdarwinaudiodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qdarwinaudiodevice.cpp -------------------------------------------------------------------------------- /src/multimedia/darwin/qdarwinaudiodevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qdarwinaudiodevice_p.h -------------------------------------------------------------------------------- /src/multimedia/darwin/qdarwinaudiodevices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qdarwinaudiodevices.mm -------------------------------------------------------------------------------- /src/multimedia/darwin/qdarwinaudiodevices_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qdarwinaudiodevices_p.h -------------------------------------------------------------------------------- /src/multimedia/darwin/qdarwinaudiosink.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qdarwinaudiosink.mm -------------------------------------------------------------------------------- /src/multimedia/darwin/qdarwinaudiosink_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qdarwinaudiosink_p.h -------------------------------------------------------------------------------- /src/multimedia/darwin/qdarwinaudiosource.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qdarwinaudiosource.mm -------------------------------------------------------------------------------- /src/multimedia/darwin/qdarwinaudiosource_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qdarwinaudiosource_p.h -------------------------------------------------------------------------------- /src/multimedia/darwin/qmacosaudiodatautils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qmacosaudiodatautils.cpp -------------------------------------------------------------------------------- /src/multimedia/darwin/qmacosaudiodatautils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/darwin/qmacosaudiodatautils_p.h -------------------------------------------------------------------------------- /src/multimedia/doc/QtMultimediaDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/QtMultimediaDoc -------------------------------------------------------------------------------- /src/multimedia/doc/qtmultimedia.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/qtmultimedia.qdocconf -------------------------------------------------------------------------------- /src/multimedia/doc/snippets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/snippets/CMakeLists.txt -------------------------------------------------------------------------------- /src/multimedia/doc/src/audiooverview.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/audiooverview.qdoc -------------------------------------------------------------------------------- /src/multimedia/doc/src/cameraoverview.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/cameraoverview.qdoc -------------------------------------------------------------------------------- /src/multimedia/doc/src/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/classic.css -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/Zoom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/images/Zoom.gif -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/annotatedurl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/images/annotatedurl.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/codeless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/images/codeless.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/qS1FmgPVL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/images/qS1FmgPVL.jpg -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/qmlcamera-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/images/qmlcamera-menu.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/radio-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/images/radio-example.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/slideshow-img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/images/slideshow-img1.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/multimedia-overview.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/multimedia-overview.qdoc -------------------------------------------------------------------------------- /src/multimedia/doc/src/platform-notes-apple.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/platform-notes-apple.qdoc -------------------------------------------------------------------------------- /src/multimedia/doc/src/platform-notes-linux.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/platform-notes-linux.qdoc -------------------------------------------------------------------------------- /src/multimedia/doc/src/platform-notes-wasm.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/platform-notes-wasm.qdoc -------------------------------------------------------------------------------- /src/multimedia/doc/src/qm-external-pages.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/qm-external-pages.qdoc -------------------------------------------------------------------------------- /src/multimedia/doc/src/qt6-changes.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/qt6-changes.qdoc -------------------------------------------------------------------------------- /src/multimedia/doc/src/qtmultimedia-cpp.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/qtmultimedia-cpp.qdoc -------------------------------------------------------------------------------- /src/multimedia/doc/src/qtmultimedia-index.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/qtmultimedia-index.qdoc -------------------------------------------------------------------------------- /src/multimedia/doc/src/qtmultimedia-toc.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/qtmultimedia-toc.qdoc -------------------------------------------------------------------------------- /src/multimedia/doc/src/videooverview.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/doc/src/videooverview.qdoc -------------------------------------------------------------------------------- /src/multimedia/pipewire/qpipewire_audiosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pipewire/qpipewire_audiosink.cpp -------------------------------------------------------------------------------- /src/multimedia/pipewire/qpipewire_audiosink_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pipewire/qpipewire_audiosink_p.h -------------------------------------------------------------------------------- /src/multimedia/pipewire/qpipewire_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pipewire/qpipewire_instance.cpp -------------------------------------------------------------------------------- /src/multimedia/pipewire/qpipewire_instance_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pipewire/qpipewire_instance_p.h -------------------------------------------------------------------------------- /src/multimedia/pipewire/qpipewire_spa_compat_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pipewire/qpipewire_spa_compat_p.h -------------------------------------------------------------------------------- /src/multimedia/pipewire/qpipewire_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pipewire/qpipewire_support.cpp -------------------------------------------------------------------------------- /src/multimedia/pipewire/qpipewire_support_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pipewire/qpipewire_support_p.h -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformaudioinput_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformaudioinput_p.h -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformaudiooutput_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformaudiooutput_p.h -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformcamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformcamera.cpp -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformcamera_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformcamera_p.h -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformmediaplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformmediaplayer.cpp -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformmediaplayer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformmediaplayer_p.h -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformmediaplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformmediaplugin.cpp -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformmediaplugin_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformmediaplugin_p.h -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformvideosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformvideosink.cpp -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformvideosink_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformvideosink_p.h -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformvideosource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformvideosource.cpp -------------------------------------------------------------------------------- /src/multimedia/platform/qplatformvideosource_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/platform/qplatformvideosource_p.h -------------------------------------------------------------------------------- /src/multimedia/playback/qmediaplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/playback/qmediaplayer.cpp -------------------------------------------------------------------------------- /src/multimedia/playback/qmediaplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/playback/qmediaplayer.h -------------------------------------------------------------------------------- /src/multimedia/playback/qmediaplayer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/playback/qmediaplayer_p.h -------------------------------------------------------------------------------- /src/multimedia/playback/qplaybackoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/playback/qplaybackoptions.cpp -------------------------------------------------------------------------------- /src/multimedia/playback/qplaybackoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/playback/qplaybackoptions.h -------------------------------------------------------------------------------- /src/multimedia/pulseaudio/qpulseaudiodevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pulseaudio/qpulseaudiodevice_p.h -------------------------------------------------------------------------------- /src/multimedia/pulseaudio/qpulseaudiodevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pulseaudio/qpulseaudiodevices.cpp -------------------------------------------------------------------------------- /src/multimedia/pulseaudio/qpulseaudiodevices_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pulseaudio/qpulseaudiodevices_p.h -------------------------------------------------------------------------------- /src/multimedia/pulseaudio/qpulseaudiosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pulseaudio/qpulseaudiosink.cpp -------------------------------------------------------------------------------- /src/multimedia/pulseaudio/qpulseaudiosink_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pulseaudio/qpulseaudiosink_p.h -------------------------------------------------------------------------------- /src/multimedia/pulseaudio/qpulseaudiosource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pulseaudio/qpulseaudiosource.cpp -------------------------------------------------------------------------------- /src/multimedia/pulseaudio/qpulseaudiosource_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pulseaudio/qpulseaudiosource_p.h -------------------------------------------------------------------------------- /src/multimedia/pulseaudio/qpulsehelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pulseaudio/qpulsehelpers.cpp -------------------------------------------------------------------------------- /src/multimedia/pulseaudio/qpulsehelpers_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/pulseaudio/qpulsehelpers_p.h -------------------------------------------------------------------------------- /src/multimedia/qcachedvalue_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qcachedvalue_p.h -------------------------------------------------------------------------------- /src/multimedia/qerrorinfo_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qerrorinfo_p.h -------------------------------------------------------------------------------- /src/multimedia/qmediadevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediadevices.cpp -------------------------------------------------------------------------------- /src/multimedia/qmediadevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediadevices.h -------------------------------------------------------------------------------- /src/multimedia/qmediaformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediaformat.cpp -------------------------------------------------------------------------------- /src/multimedia/qmediaformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediaformat.h -------------------------------------------------------------------------------- /src/multimedia/qmediaframeinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediaframeinput.cpp -------------------------------------------------------------------------------- /src/multimedia/qmediaframeinput_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediaframeinput_p.h -------------------------------------------------------------------------------- /src/multimedia/qmediainputencoderinterface_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediainputencoderinterface_p.h -------------------------------------------------------------------------------- /src/multimedia/qmediametadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediametadata.cpp -------------------------------------------------------------------------------- /src/multimedia/qmediametadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediametadata.h -------------------------------------------------------------------------------- /src/multimedia/qmediastoragelocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediastoragelocation.cpp -------------------------------------------------------------------------------- /src/multimedia/qmediastoragelocation_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediastoragelocation_p.h -------------------------------------------------------------------------------- /src/multimedia/qmediatimerange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediatimerange.cpp -------------------------------------------------------------------------------- /src/multimedia/qmediatimerange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmediatimerange.h -------------------------------------------------------------------------------- /src/multimedia/qmultimedia_ranges_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmultimedia_ranges_p.h -------------------------------------------------------------------------------- /src/multimedia/qmultimediautils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmultimediautils.cpp -------------------------------------------------------------------------------- /src/multimedia/qmultimediautils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qmultimediautils_p.h -------------------------------------------------------------------------------- /src/multimedia/qnx/qqnxaudiodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qnx/qqnxaudiodevice.cpp -------------------------------------------------------------------------------- /src/multimedia/qnx/qqnxaudiodevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qnx/qqnxaudiodevice_p.h -------------------------------------------------------------------------------- /src/multimedia/qnx/qqnxaudiodevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qnx/qqnxaudiodevices.cpp -------------------------------------------------------------------------------- /src/multimedia/qnx/qqnxaudiodevices_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qnx/qqnxaudiodevices_p.h -------------------------------------------------------------------------------- /src/multimedia/qnx/qqnxaudiosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qnx/qqnxaudiosink.cpp -------------------------------------------------------------------------------- /src/multimedia/qnx/qqnxaudiosink_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qnx/qqnxaudiosink_p.h -------------------------------------------------------------------------------- /src/multimedia/qnx/qqnxaudiosource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qnx/qqnxaudiosource.cpp -------------------------------------------------------------------------------- /src/multimedia/qnx/qqnxaudiosource_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qnx/qqnxaudiosource_p.h -------------------------------------------------------------------------------- /src/multimedia/qnx/qqnxaudioutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qnx/qqnxaudioutils.cpp -------------------------------------------------------------------------------- /src/multimedia/qnx/qqnxaudioutils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qnx/qqnxaudioutils_p.h -------------------------------------------------------------------------------- /src/multimedia/qrhivaluemapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qrhivaluemapper.cpp -------------------------------------------------------------------------------- /src/multimedia/qrhivaluemapper_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qrhivaluemapper_p.h -------------------------------------------------------------------------------- /src/multimedia/qsharedhandle_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qsharedhandle_p.h -------------------------------------------------------------------------------- /src/multimedia/qsymbolsresolveutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qsymbolsresolveutils.cpp -------------------------------------------------------------------------------- /src/multimedia/qsymbolsresolveutils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qsymbolsresolveutils_p.h -------------------------------------------------------------------------------- /src/multimedia/qt_cmdline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qt_cmdline.cmake -------------------------------------------------------------------------------- /src/multimedia/qtaggedtime_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qtaggedtime_p.h -------------------------------------------------------------------------------- /src/multimedia/qthreadlocalrhi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qthreadlocalrhi.cpp -------------------------------------------------------------------------------- /src/multimedia/qthreadlocalrhi_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qthreadlocalrhi_p.h -------------------------------------------------------------------------------- /src/multimedia/qtmultimedia_pch_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qtmultimedia_pch_p.h -------------------------------------------------------------------------------- /src/multimedia/qtmultimediaglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qtmultimediaglobal.h -------------------------------------------------------------------------------- /src/multimedia/qtmultimediaglobal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qtmultimediaglobal_p.h -------------------------------------------------------------------------------- /src/multimedia/qvideotransformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qvideotransformation.cpp -------------------------------------------------------------------------------- /src/multimedia/qvideotransformation_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/qvideotransformation_p.h -------------------------------------------------------------------------------- /src/multimedia/recording/qcapturablewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qcapturablewindow.cpp -------------------------------------------------------------------------------- /src/multimedia/recording/qcapturablewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qcapturablewindow.h -------------------------------------------------------------------------------- /src/multimedia/recording/qcapturablewindow_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qcapturablewindow_p.h -------------------------------------------------------------------------------- /src/multimedia/recording/qmediacapturesession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qmediacapturesession.h -------------------------------------------------------------------------------- /src/multimedia/recording/qmediarecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qmediarecorder.cpp -------------------------------------------------------------------------------- /src/multimedia/recording/qmediarecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qmediarecorder.h -------------------------------------------------------------------------------- /src/multimedia/recording/qmediarecorder_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qmediarecorder_p.h -------------------------------------------------------------------------------- /src/multimedia/recording/qscreencapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qscreencapture.cpp -------------------------------------------------------------------------------- /src/multimedia/recording/qscreencapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qscreencapture.h -------------------------------------------------------------------------------- /src/multimedia/recording/qvideoframeinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qvideoframeinput.cpp -------------------------------------------------------------------------------- /src/multimedia/recording/qvideoframeinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qvideoframeinput.h -------------------------------------------------------------------------------- /src/multimedia/recording/qwindowcapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qwindowcapture.cpp -------------------------------------------------------------------------------- /src/multimedia/recording/qwindowcapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/recording/qwindowcapture.h -------------------------------------------------------------------------------- /src/multimedia/shaders/abgr.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/abgr.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/argb.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/argb.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/ayuv.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/ayuv.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/bgra.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/bgra.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/colorconvert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/colorconvert.glsl -------------------------------------------------------------------------------- /src/multimedia/shaders/colortransfer.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/colortransfer.glsl -------------------------------------------------------------------------------- /src/multimedia/shaders/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/compile.bat -------------------------------------------------------------------------------- /src/multimedia/shaders/externalsampler.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/externalsampler.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/externalsampler.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/externalsampler.vert -------------------------------------------------------------------------------- /src/multimedia/shaders/externalsampler_gles.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/externalsampler_gles.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/hdrtonemapper.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/hdrtonemapper.glsl -------------------------------------------------------------------------------- /src/multimedia/shaders/imc2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/imc2.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/imc4.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/imc4.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/nv12.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/nv12.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/nv12_bt2020_hlg.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/nv12_bt2020_hlg.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/nv12_bt2020_pq.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/nv12_bt2020_pq.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/nv21.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/nv21.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/p016.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/p016.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/qrhitextureformats_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/qrhitextureformats_p.h -------------------------------------------------------------------------------- /src/multimedia/shaders/rectsampler.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/rectsampler.vert -------------------------------------------------------------------------------- /src/multimedia/shaders/rectsampler_bgra.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/rectsampler_bgra.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/rgba.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/rgba.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/texturecomponent.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/texturecomponent.glsl -------------------------------------------------------------------------------- /src/multimedia/shaders/uniformbuffer.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/uniformbuffer.glsl -------------------------------------------------------------------------------- /src/multimedia/shaders/uyvy.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/uyvy.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/vertex.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/vertex.vert -------------------------------------------------------------------------------- /src/multimedia/shaders/y.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/y.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/y16.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/y16.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/yuv_triplanar.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/yuv_triplanar.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/yuv_triplanar_p10.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/yuv_triplanar_p10.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/yuyv.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/yuyv.frag -------------------------------------------------------------------------------- /src/multimedia/shaders/yvu_triplanar.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/shaders/yvu_triplanar.frag -------------------------------------------------------------------------------- /src/multimedia/video/qabstractvideobuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qabstractvideobuffer.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qabstractvideobuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qabstractvideobuffer.h -------------------------------------------------------------------------------- /src/multimedia/video/qhwvideobuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qhwvideobuffer.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qhwvideobuffer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qhwvideobuffer_p.h -------------------------------------------------------------------------------- /src/multimedia/video/qimagevideobuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qimagevideobuffer.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qimagevideobuffer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qimagevideobuffer_p.h -------------------------------------------------------------------------------- /src/multimedia/video/qmemoryvideobuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qmemoryvideobuffer.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qmemoryvideobuffer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qmemoryvideobuffer_p.h -------------------------------------------------------------------------------- /src/multimedia/video/qtvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qtvideo.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qtvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qtvideo.h -------------------------------------------------------------------------------- /src/multimedia/video/qvideoframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideoframe.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qvideoframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideoframe.h -------------------------------------------------------------------------------- /src/multimedia/video/qvideoframe_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideoframe_p.h -------------------------------------------------------------------------------- /src/multimedia/video/qvideoframeconverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideoframeconverter.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qvideoframeconverter_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideoframeconverter_p.h -------------------------------------------------------------------------------- /src/multimedia/video/qvideoframeformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideoframeformat.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qvideoframeformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideoframeformat.h -------------------------------------------------------------------------------- /src/multimedia/video/qvideoframetexturepool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideoframetexturepool.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qvideoframetexturepool_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideoframetexturepool_p.h -------------------------------------------------------------------------------- /src/multimedia/video/qvideosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideosink.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qvideosink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideosink.h -------------------------------------------------------------------------------- /src/multimedia/video/qvideotexturehelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideotexturehelper.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qvideotexturehelper_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideotexturehelper_p.h -------------------------------------------------------------------------------- /src/multimedia/video/qvideowindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideowindow.cpp -------------------------------------------------------------------------------- /src/multimedia/video/qvideowindow_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/video/qvideowindow_p.h -------------------------------------------------------------------------------- /src/multimedia/wasm/qwasmaudiodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/wasm/qwasmaudiodevice.cpp -------------------------------------------------------------------------------- /src/multimedia/wasm/qwasmaudiodevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/wasm/qwasmaudiodevice_p.h -------------------------------------------------------------------------------- /src/multimedia/wasm/qwasmaudiosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/wasm/qwasmaudiosink.cpp -------------------------------------------------------------------------------- /src/multimedia/wasm/qwasmaudiosink_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/wasm/qwasmaudiosink_p.h -------------------------------------------------------------------------------- /src/multimedia/wasm/qwasmaudiosource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/wasm/qwasmaudiosource.cpp -------------------------------------------------------------------------------- /src/multimedia/wasm/qwasmaudiosource_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/wasm/qwasmaudiosource_p.h -------------------------------------------------------------------------------- /src/multimedia/wasm/qwasmjs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/wasm/qwasmjs.cpp -------------------------------------------------------------------------------- /src/multimedia/wasm/qwasmjs_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/wasm/qwasmjs_p.h -------------------------------------------------------------------------------- /src/multimedia/wasm/qwasmmediadevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/wasm/qwasmmediadevices.cpp -------------------------------------------------------------------------------- /src/multimedia/wasm/qwasmmediadevices_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/wasm/qwasmmediadevices_p.h -------------------------------------------------------------------------------- /src/multimedia/windows/qcominitializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qcominitializer.cpp -------------------------------------------------------------------------------- /src/multimedia/windows/qcominitializer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qcominitializer_p.h -------------------------------------------------------------------------------- /src/multimedia/windows/qcomtaskresource_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qcomtaskresource_p.h -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsaudiodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsaudiodevice.cpp -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsaudiodevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsaudiodevice_p.h -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsaudiodevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsaudiodevices.cpp -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsaudiodevices_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsaudiodevices_p.h -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsaudiosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsaudiosink.cpp -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsaudiosink_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsaudiosink_p.h -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsaudiosource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsaudiosource.cpp -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsaudiosource_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsaudiosource_p.h -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsaudioutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsaudioutils.cpp -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsaudioutils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsaudioutils_p.h -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsresampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsresampler.cpp -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsresampler_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsresampler_p.h -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsvideodevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsvideodevices.cpp -------------------------------------------------------------------------------- /src/multimedia/windows/qwindowsvideodevices_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwindowsvideodevices_p.h -------------------------------------------------------------------------------- /src/multimedia/windows/qwmf_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwmf_support.cpp -------------------------------------------------------------------------------- /src/multimedia/windows/qwmf_support_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimedia/windows/qwmf_support_p.h -------------------------------------------------------------------------------- /src/multimediaquick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/CMakeLists.txt -------------------------------------------------------------------------------- /src/multimediaquick/Video.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/Video.qml -------------------------------------------------------------------------------- /src/multimediaquick/multimedia_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/multimedia_plugin.cpp -------------------------------------------------------------------------------- /src/multimediaquick/qquickimagecapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qquickimagecapture.cpp -------------------------------------------------------------------------------- /src/multimediaquick/qquickimagecapture_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qquickimagecapture_p.h -------------------------------------------------------------------------------- /src/multimediaquick/qquickmediaplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qquickmediaplayer.cpp -------------------------------------------------------------------------------- /src/multimediaquick/qquickmediaplayer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qquickmediaplayer_p.h -------------------------------------------------------------------------------- /src/multimediaquick/qquickscreencapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qquickscreencapture.cpp -------------------------------------------------------------------------------- /src/multimediaquick/qquickscreencapture_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qquickscreencapture_p.h -------------------------------------------------------------------------------- /src/multimediaquick/qquicksoundeffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qquicksoundeffect.cpp -------------------------------------------------------------------------------- /src/multimediaquick/qquicksoundeffect_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qquicksoundeffect_p.h -------------------------------------------------------------------------------- /src/multimediaquick/qquickvideooutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qquickvideooutput.cpp -------------------------------------------------------------------------------- /src/multimediaquick/qquickvideooutput_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qquickvideooutput_p.h -------------------------------------------------------------------------------- /src/multimediaquick/qsgvideonode_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qsgvideonode_p.cpp -------------------------------------------------------------------------------- /src/multimediaquick/qsgvideonode_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qsgvideonode_p.h -------------------------------------------------------------------------------- /src/multimediaquick/qsgvideotexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qsgvideotexture.cpp -------------------------------------------------------------------------------- /src/multimediaquick/qsgvideotexture_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qsgvideotexture_p.h -------------------------------------------------------------------------------- /src/multimediaquick/qtmultimediaquickglobal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qtmultimediaquickglobal_p.h -------------------------------------------------------------------------------- /src/multimediaquick/qtmultimediaquicktypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qtmultimediaquicktypes.cpp -------------------------------------------------------------------------------- /src/multimediaquick/qtmultimediaquicktypes_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediaquick/qtmultimediaquicktypes_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/CMakeLists.txt -------------------------------------------------------------------------------- /src/multimediatestlib/audiogenerationutils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/audiogenerationutils_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/capturesessionfixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/capturesessionfixture.cpp -------------------------------------------------------------------------------- /src/multimediatestlib/capturesessionfixture_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/capturesessionfixture_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/formatutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/formatutils.cpp -------------------------------------------------------------------------------- /src/multimediatestlib/formatutils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/formatutils_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/framegenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/framegenerator.cpp -------------------------------------------------------------------------------- /src/multimediatestlib/framegenerator_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/framegenerator_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/mediabackendutils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/mediabackendutils_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/mediafileselector_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/mediafileselector_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/mediainfo_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/mediainfo_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/osdetection_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/osdetection_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/qcolorutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/qcolorutil.cpp -------------------------------------------------------------------------------- /src/multimediatestlib/qcolorutil_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/qcolorutil_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/qfileutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/qfileutil.cpp -------------------------------------------------------------------------------- /src/multimediatestlib/qfileutil_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/qfileutil_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/qmockiodevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/qmockiodevice_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/qsequentialfileadaptor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/qsequentialfileadaptor_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/qsinewavevalidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/qsinewavevalidator.cpp -------------------------------------------------------------------------------- /src/multimediatestlib/qsinewavevalidator_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/qsinewavevalidator_p.h -------------------------------------------------------------------------------- /src/multimediatestlib/testvideosink_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediatestlib/testvideosink_p.h -------------------------------------------------------------------------------- /src/multimediawidgets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediawidgets/CMakeLists.txt -------------------------------------------------------------------------------- /src/multimediawidgets/qgraphicsvideoitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediawidgets/qgraphicsvideoitem.cpp -------------------------------------------------------------------------------- /src/multimediawidgets/qgraphicsvideoitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediawidgets/qgraphicsvideoitem.h -------------------------------------------------------------------------------- /src/multimediawidgets/qvideowidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediawidgets/qvideowidget.cpp -------------------------------------------------------------------------------- /src/multimediawidgets/qvideowidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediawidgets/qvideowidget.h -------------------------------------------------------------------------------- /src/multimediawidgets/qvideowidget_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/multimediawidgets/qvideowidget_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/multimedia/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/android/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/multimedia/android/android.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "android" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/multimedia/darwin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/darwin/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/multimedia/darwin/avfaudiodecoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/darwin/avfaudiodecoder.mm -------------------------------------------------------------------------------- /src/plugins/multimedia/darwin/avfvideobuffer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/darwin/avfvideobuffer.mm -------------------------------------------------------------------------------- /src/plugins/multimedia/darwin/avfvideobuffer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/darwin/avfvideobuffer_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/darwin/avfvideosink.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/darwin/avfvideosink.mm -------------------------------------------------------------------------------- /src/plugins/multimedia/darwin/avfvideosink_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/darwin/avfvideosink_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/darwin/darwin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "darwin" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/multimedia/darwin/darwin_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/darwin/darwin_pch.h -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/ffmpeg.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "ffmpeg" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/ffmpeg_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/ffmpeg_pch.h -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpeg.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpeg_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpeg_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpegcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpegcodec.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpegcodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpegcodec_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpegdefs_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpegdefs_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpeghwaccel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpeghwaccel.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpeghwaccel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpeghwaccel_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpegioutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpegioutils.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpegioutils_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpegioutils_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpegplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpegplugin.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpegthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpegthread.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qffmpegthread_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qffmpegthread_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qv4l2camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qv4l2camera.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qv4l2camera_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qv4l2camera_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qwindowscamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qwindowscamera.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/qwindowscamera_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/qwindowscamera_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/symbolstubs/va.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/ffmpeg/symbolstubs/va.ver -------------------------------------------------------------------------------- /src/plugins/multimedia/gstreamer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/gstreamer/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/multimedia/gstreamer/common/qgst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/gstreamer/common/qgst.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/gstreamer/common/qgst_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/gstreamer/common/qgst_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/gstreamer/gstreamer.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "gstreamer" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/multimedia/qnx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/qnx/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/multimedia/qnx/camera/qqnxcamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/qnx/camera/qqnxcamera.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/qnx/camera/qqnxcamera_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/qnx/camera/qqnxcamera_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/qnx/qnx.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "qnx" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/multimedia/qnx/qqnxformatinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/qnx/qqnxformatinfo.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/qnx/qqnxformatinfo_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/qnx/qqnxformatinfo_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/qnx/qqnxvideodevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/qnx/qqnxvideodevices.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/qnx/qqnxvideodevices_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/qnx/qqnxvideodevices_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/wasm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/wasm/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/multimedia/wasm/wasm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/wasm/wasm.json -------------------------------------------------------------------------------- /src/plugins/multimedia/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/windows/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/multimedia/windows/mfstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/windows/mfstream.cpp -------------------------------------------------------------------------------- /src/plugins/multimedia/windows/mfstream_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/plugins/multimedia/windows/mfstream_p.h -------------------------------------------------------------------------------- /src/plugins/multimedia/windows/windows.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "windows" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/resonance-audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/resonance-audio/CMakeLists.txt -------------------------------------------------------------------------------- /src/resonance-audio/resonance_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/resonance-audio/resonance_audio.cpp -------------------------------------------------------------------------------- /src/resonance-audio/resonance_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/resonance-audio/resonance_audio.h -------------------------------------------------------------------------------- /src/spatialaudio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatialaudio/doc/qtspatialaudio.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/doc/qtspatialaudio.qdocconf -------------------------------------------------------------------------------- /src/spatialaudio/qambientsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qambientsound.cpp -------------------------------------------------------------------------------- /src/spatialaudio/qambientsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qambientsound.h -------------------------------------------------------------------------------- /src/spatialaudio/qambientsound_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qambientsound_p.h -------------------------------------------------------------------------------- /src/spatialaudio/qambisonicdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qambisonicdecoder.cpp -------------------------------------------------------------------------------- /src/spatialaudio/qambisonicdecoder_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qambisonicdecoder_p.h -------------------------------------------------------------------------------- /src/spatialaudio/qambisonicdecoderdata_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qambisonicdecoderdata_p.h -------------------------------------------------------------------------------- /src/spatialaudio/qaudioengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qaudioengine.cpp -------------------------------------------------------------------------------- /src/spatialaudio/qaudioengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qaudioengine.h -------------------------------------------------------------------------------- /src/spatialaudio/qaudioengine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qaudioengine_p.h -------------------------------------------------------------------------------- /src/spatialaudio/qaudiolistener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qaudiolistener.cpp -------------------------------------------------------------------------------- /src/spatialaudio/qaudiolistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qaudiolistener.h -------------------------------------------------------------------------------- /src/spatialaudio/qaudioroom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qaudioroom.cpp -------------------------------------------------------------------------------- /src/spatialaudio/qaudioroom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qaudioroom.h -------------------------------------------------------------------------------- /src/spatialaudio/qaudioroom_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qaudioroom_p.h -------------------------------------------------------------------------------- /src/spatialaudio/qspatialsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qspatialsound.cpp -------------------------------------------------------------------------------- /src/spatialaudio/qspatialsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qspatialsound.h -------------------------------------------------------------------------------- /src/spatialaudio/qspatialsound_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qspatialsound_p.h -------------------------------------------------------------------------------- /src/spatialaudio/qtspatialaudioglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qtspatialaudioglobal.h -------------------------------------------------------------------------------- /src/spatialaudio/qtspatialaudioglobal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudio/qtspatialaudioglobal_p.h -------------------------------------------------------------------------------- /src/spatialaudioquick3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudioquick3d/CMakeLists.txt -------------------------------------------------------------------------------- /src/spatialaudioquick3d/qquick3daudioroom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudioquick3d/qquick3daudioroom.cpp -------------------------------------------------------------------------------- /src/spatialaudioquick3d/qquick3daudioroom_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/src/spatialaudioquick3d/qquick3daudioroom_p.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/integration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/integration/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/integration/backends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/integration/backends/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/integration/multiapp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/integration/multiapp/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/integration/qaudiosource/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/integration/qaudiosource/Info.plist -------------------------------------------------------------------------------- /tests/auto/integration/qmediacapturesession/BLACKLIST: -------------------------------------------------------------------------------- 1 | # QTBUG-129956 2 | ci !windows !linux !macos !android !ios 3 | -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/invalid_media.m3u: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/recursive.m3u: -------------------------------------------------------------------------------- 1 | #EXTM3U 2 | recursive.m3u 3 | -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/recursive_master.m3u: -------------------------------------------------------------------------------- 1 | recursive.m3u 2 | invalid 3 | test.wav 4 | -------------------------------------------------------------------------------- /tests/auto/integration/qml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/integration/qml/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/integration/qml/tst_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/integration/qml/tst_qml.cpp -------------------------------------------------------------------------------- /tests/auto/integration/qsoundeffect/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/integration/qsoundeffect/test.wav -------------------------------------------------------------------------------- /tests/auto/runautotests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/runautotests.py -------------------------------------------------------------------------------- /tests/auto/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/unit/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/unit/mockbackend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/unit/mockbackend/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/unit/mockbackend/mock.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "mock" ] 3 | } 4 | -------------------------------------------------------------------------------- /tests/auto/unit/mockbackend/qmockaudiooutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/unit/mockbackend/qmockaudiooutput.h -------------------------------------------------------------------------------- /tests/auto/unit/mockbackend/qmockcamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/unit/mockbackend/qmockcamera.cpp -------------------------------------------------------------------------------- /tests/auto/unit/mockbackend/qmockcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/unit/mockbackend/qmockcamera.h -------------------------------------------------------------------------------- /tests/auto/unit/mockbackend/qmockintegration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/unit/mockbackend/qmockintegration.h -------------------------------------------------------------------------------- /tests/auto/unit/mockbackend/qmockmediaplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/unit/mockbackend/qmockmediaplayer.h -------------------------------------------------------------------------------- /tests/auto/unit/mockbackend/qmockvideobuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/unit/mockbackend/qmockvideobuffer.h -------------------------------------------------------------------------------- /tests/auto/unit/mockbackend/qmockvideosink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/unit/mockbackend/qmockvideosink.h -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/auto/unit/multimedia/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qmediaplaylist/testdata/empty.pls: -------------------------------------------------------------------------------- 1 | [playlist] 2 | NumberOfEntries=100 3 | -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qmediaplaylist/testdata/testfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qmediaplaylist/testdata/testfile2#suffix: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/empty.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/notawav.wav: -------------------------------------------------------------------------------- 1 | Ceci n'est pas une wav file 2 | -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/onebyte.wav: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/auto/unit/plugins/multimedia/gstreamer/qmediacapture_gstreamer/BLACKLIST: -------------------------------------------------------------------------------- 1 | # QTBUG-129469 2 | ci 3 | -------------------------------------------------------------------------------- /tests/auto/unit/plugins/multimedia/gstreamer/qmediaplayer_gstreamer/BLACKLIST: -------------------------------------------------------------------------------- 1 | # QTBUG-129469 2 | ci 3 | -------------------------------------------------------------------------------- /tests/global/global.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/global/global.cfg -------------------------------------------------------------------------------- /tests/manual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/audiodecoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/audiodecoder/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/audiodecoder/audiodecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/audiodecoder/audiodecoder.cpp -------------------------------------------------------------------------------- /tests/manual/audiodecoder/audiodecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/audiodecoder/audiodecoder.h -------------------------------------------------------------------------------- /tests/manual/audiodecoder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/audiodecoder/main.cpp -------------------------------------------------------------------------------- /tests/manual/media-metadata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/media-metadata/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/media-metadata/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/media-metadata/Info.plist.in -------------------------------------------------------------------------------- /tests/manual/media-metadata/media-metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/media-metadata/media-metadata.cpp -------------------------------------------------------------------------------- /tests/manual/mediadevices/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/mediadevices/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/mediadevices/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/mediadevices/main.cpp -------------------------------------------------------------------------------- /tests/manual/mediaformats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/mediaformats/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/mediaformats/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/mediaformats/main.cpp -------------------------------------------------------------------------------- /tests/manual/mediaframeinputs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/mediaframeinputs/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/mediaframeinputs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/mediaframeinputs/main.cpp -------------------------------------------------------------------------------- /tests/manual/mediaframeinputs/mediagenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/mediaframeinputs/mediagenerator.h -------------------------------------------------------------------------------- /tests/manual/mediaframeinputs/previewrunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/mediaframeinputs/previewrunner.h -------------------------------------------------------------------------------- /tests/manual/mediaframeinputs/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/mediaframeinputs/settings.h -------------------------------------------------------------------------------- /tests/manual/minimal-player/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/minimal-player/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/minimal-player/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/minimal-player/Info.plist.in -------------------------------------------------------------------------------- /tests/manual/minimal-player/minimal-player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/minimal-player/minimal-player.cpp -------------------------------------------------------------------------------- /tests/manual/qml-camera-advanced/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/qml-camera-advanced/Info.plist -------------------------------------------------------------------------------- /tests/manual/qml-camera-advanced/InfoPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/qml-camera-advanced/InfoPage.qml -------------------------------------------------------------------------------- /tests/manual/qml-camera-advanced/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/qml-camera-advanced/Main.qml -------------------------------------------------------------------------------- /tests/manual/qml-camera-advanced/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/qml-camera-advanced/main.cpp -------------------------------------------------------------------------------- /tests/manual/qml-gstreamer-rtp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/qml-gstreamer-rtp/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/qml-gstreamer-rtp/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/qml-gstreamer-rtp/Info.plist.in -------------------------------------------------------------------------------- /tests/manual/qml-minimal-camera/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/qml-minimal-camera/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/qml-minimal-camera/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/qml-minimal-camera/Info.plist.in -------------------------------------------------------------------------------- /tests/manual/qml-minimal-player/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/qml-minimal-player/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/qml-minimal-player/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/qml-minimal-player/Info.plist.in -------------------------------------------------------------------------------- /tests/manual/wasm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/wasm/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/wasm/camera/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/wasm/camera/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/wasm/camera/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/wasm/camera/main.cpp -------------------------------------------------------------------------------- /tests/manual/wasm/camera/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/wasm/camera/mainwindow.cpp -------------------------------------------------------------------------------- /tests/manual/wasm/camera/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/wasm/camera/mainwindow.h -------------------------------------------------------------------------------- /tests/manual/wasm/camera/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/tests/manual/wasm/camera/mainwindow.ui -------------------------------------------------------------------------------- /util/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/util/REUSE.toml -------------------------------------------------------------------------------- /util/adt_generate_qt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/util/adt_generate_qt.m -------------------------------------------------------------------------------- /util/macos_test_audio_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/util/macos_test_audio_config/CMakeLists.txt -------------------------------------------------------------------------------- /util/macos_test_audio_config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/util/macos_test_audio_config/README -------------------------------------------------------------------------------- /util/macos_test_audio_config/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/HEAD/util/macos_test_audio_config/main.cpp --------------------------------------------------------------------------------