├── .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.txt ├── MPL-2.0.txt └── Qt-GPL-exception-1.0.txt ├── REUSE.toml ├── cmake ├── FindAVFoundation.cmake ├── FindFFmpeg.cmake ├── FindGObject.cmake ├── FindGStreamer.cmake ├── FindMMRenderer.cmake ├── FindMMRendererCore.cmake ├── FindPipeWire.cmake ├── FindVAAPI.cmake ├── FindWMF.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 └── wmsdk │ ├── 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 │ │ ├── audiolevel.cpp │ │ ├── audiolevel.h │ │ ├── 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 │ │ ├── permission-denied.qml │ │ └── 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 │ │ │ ├── MediaList.qml │ │ │ ├── Playback.qml │ │ │ ├── RecordButton.qml │ │ │ ├── SettingsEncoder.qml │ │ │ ├── SettingsMetaData.qml │ │ │ ├── Style.qml │ │ │ ├── StyleParameter.qml │ │ │ ├── StyleRectangle.qml │ │ │ ├── StyleSlider.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 │ │ │ ├── main.qml │ │ │ ├── main_no_permissions.qml │ │ │ └── qmldir │ │ └── 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 │ ├── 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-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 ├── 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 │ │ ├── qandroidaudiodevice.cpp │ │ ├── qandroidaudiodevice_p.h │ │ ├── qandroidaudiodevices.cpp │ │ ├── qandroidaudiodevices_p.h │ │ ├── qandroidaudiosink.cpp │ │ ├── qandroidaudiosink_p.h │ │ ├── qandroidaudiosource.cpp │ │ ├── qandroidaudiosource_p.h │ │ ├── qopenslesengine.cpp │ │ └── qopenslesengine_p.h │ ├── audio │ │ ├── qaudio.h │ │ ├── qaudio_alignment_support_p.h │ │ ├── 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 │ │ ├── qaudiostatemachine.cpp │ │ ├── qaudiostatemachine_p.h │ │ ├── qaudiostatemachineutils_p.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 │ │ ├── qsamplecache_p.cpp │ │ ├── qsamplecache_p.h │ │ ├── qsoundeffect.cpp │ │ ├── qsoundeffect.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 │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 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-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-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_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 │ ├── qmaybe_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_assume_p.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 │ ├── 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 │ │ ├── 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 ├── 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 │ │ │ ├── qavfcamerabase.mm │ │ │ └── qavfcamerabase_p.h │ │ ├── common │ │ │ ├── avfmetadata.mm │ │ │ └── avfmetadata_p.h │ │ ├── darwin.json │ │ ├── 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 │ │ ├── cmake │ │ │ ├── QtAddFFmpegStubs.cmake │ │ │ └── QtDeployFFmpeg.cmake │ │ ├── ffmpeg.json │ │ ├── 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 │ │ ├── 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 │ │ ├── qavfcamera.mm │ │ ├── qavfcamera_p.h │ │ ├── qavfsamplebufferdelegate.mm │ │ ├── qavfsamplebufferdelegate_p.h │ │ ├── qavfscreencapture.mm │ │ ├── qavfscreencapture_p.h │ │ ├── qcgcapturablewindows.mm │ │ ├── qcgcapturablewindows_p.h │ │ ├── qcgwindowcapture.mm │ │ ├── qcgwindowcapture_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_mediacodec.cpp │ │ ├── qffmpeghwaccel_mediacodec_p.h │ │ ├── qffmpeghwaccel_p.h │ │ ├── qffmpeghwaccel_vaapi.cpp │ │ ├── qffmpeghwaccel_vaapi_p.h │ │ ├── qffmpeghwaccel_videotoolbox.mm │ │ ├── qffmpeghwaccel_videotoolbox_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 │ │ │ ├── qwasmimagecapture.cpp │ │ │ ├── qwasmimagecapture_p.h │ │ │ ├── qwasmmediacapturesession.cpp │ │ │ ├── qwasmmediacapturesession_p.h │ │ │ ├── qwasmmediarecorder.cpp │ │ │ └── qwasmmediarecorder_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 │ │ │ ├── BLACKLIST │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── 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 │ ├── 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 │ │ ├── qaudiostatemachine │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qaudiostatemachine.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 │ │ ├── qmaybe │ │ │ ├── CMakeLists.txt │ │ │ └── tst_qmaybe.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 │ │ ├── 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 │ │ ├── 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 │ ├── audiodecoder.pro │ └── main.cpp │ ├── devices │ ├── CMakeLists.txt │ ├── devices.pro │ └── 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 │ ├── 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-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-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 │ └── wasm │ ├── CMakeLists.txt │ └── camera │ ├── CMakeLists.txt │ ├── camera-test.pro │ ├── 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 /.gitreview: -------------------------------------------------------------------------------- 1 | [gerrit] 2 | host=codereview.qt-project.org 3 | project=qt/qtmultimedia 4 | defaultbranch=dev 5 | -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | 45d3cd3ef0747194921ec96ea1c9cefc9ca04da6 2 | -------------------------------------------------------------------------------- /cmake/REUSE.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | 3 | [[annotations]] 4 | path = ["FindPipeWire.cmake"] 5 | precedence = "aggregate" 6 | comment = "build system. The copyright is provided in file." 7 | SPDX-License-Identifier = "BSD-3-Clause" 8 | -------------------------------------------------------------------------------- /config.tests/linux_v4l/main.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd and/or its subsidiary(-ies). 2 | // SPDX-License-Identifier: BSD-3-Clause 3 | 4 | #include 5 | 6 | int main(int argc, char** argv) 7 | { 8 | return 0; 9 | } 10 | -------------------------------------------------------------------------------- /config.tests/wmsdk/main.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: BSD-3-Clause 3 | 4 | #include 5 | 6 | int main(int, char**) 7 | { 8 | return 0; 9 | } 10 | -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += multimedia spatialaudio 4 | -------------------------------------------------------------------------------- /examples/multimedia/audiodevices/doc/images/audiodevices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/audiodevices/doc/images/audiodevices.png -------------------------------------------------------------------------------- /examples/multimedia/audiooutput/doc/images/audiooutput-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/audiooutput/doc/images/audiooutput-example.png -------------------------------------------------------------------------------- /examples/multimedia/audiorecorder/doc/images/audiorecorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/audiorecorder/doc/images/audiorecorder.png -------------------------------------------------------------------------------- /examples/multimedia/audiosource/doc/images/audiosource-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/audiosource/doc/images/audiosource-example.png -------------------------------------------------------------------------------- /examples/multimedia/camera/camera.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | images/shutter.svg 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/multimedia/camera/doc/images/camera-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/camera/doc/images/camera-example.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/doc/images/CaptureControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/doc/images/CaptureControls.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/doc/images/FlashControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/doc/images/FlashControls.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/doc/images/VideoCaptureControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/doc/images/VideoCaptureControls.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/doc/images/ZoomControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/doc/images/ZoomControl.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/doc/images/qml-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/doc/images/qml-camera.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/doc/images/qml-declarative-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/doc/images/qml-declarative-portrait.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/camera_auto_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/images/camera_auto_mode.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/camera_camera_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/images/camera_camera_setting.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/camera_flash_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/images/camera_flash_auto.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/camera_flash_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/images/camera_flash_fill.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/camera_flash_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/images/camera_flash_off.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/camera_flash_redeye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/images/camera_flash_redeye.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/camera_white_balance_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/images/camera_white_balance_cloudy.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/camera_white_balance_flourescent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/images/camera_white_balance_flourescent.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/camera_white_balance_incandescent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/images/camera_white_balance_incandescent.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/camera_white_balance_sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/images/camera_white_balance_sunny.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/toolbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/declarative-camera/images/toolbutton.png -------------------------------------------------------------------------------- /examples/multimedia/declarative-camera/images/toolbutton.sci: -------------------------------------------------------------------------------- 1 | border.left: 15 2 | border.top: 4 3 | border.bottom: 4 4 | border.right: 15 5 | source: toolbutton.png 6 | -------------------------------------------------------------------------------- /examples/multimedia/player/doc/images/mediaplayerex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/player/doc/images/mediaplayerex.jpg -------------------------------------------------------------------------------- /examples/multimedia/screencapture/doc/images/screencapture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/screencapture/doc/images/screencapture.jpg -------------------------------------------------------------------------------- /examples/multimedia/video/mediaplayer/doc/images/qtmultimedia-examples-qml-media-player-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/mediaplayer/doc/images/qtmultimedia-examples-qml-media-player-settings.png -------------------------------------------------------------------------------- /examples/multimedia/video/mediaplayer/doc/images/qtmultimedia-examples-qml-media-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/mediaplayer/doc/images/qtmultimedia-examples-qml-media-player.png -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/doc/images/qmlvideo-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/qmlvideo/doc/images/qmlvideo-menu.jpg -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/doc/images/qmlvideo-overlay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/qmlvideo/doc/images/qmlvideo-overlay.jpg -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/doc/images/video-qml-paint-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/qmlvideo/doc/images/video-qml-paint-rate.png -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/frequencymonitor/qmldir: -------------------------------------------------------------------------------- 1 | module frequencymonitor 2 | 3 | FrequencyItem 1.0 FrequencyItem.qml 4 | PerformanceItem 1.0 PerformanceItem.qml 5 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/qmlvideo/qmlvideo.png -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/CameraBasic.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneBasic { 5 | contentType: "camera" 6 | started: true 7 | } 8 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/CameraDrag.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneDrag { 5 | contentType: "camera" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/CameraFullScreen.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneFullScreen { 5 | contentType: "camera" 6 | } 7 | 8 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/CameraFullScreenInverted.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneFullScreenInverted { 5 | contentType: "camera" 6 | } 7 | 8 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/CameraMove.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneMove { 5 | contentType: "camera" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/CameraOverlay.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneOverlay { 5 | contentType: "camera" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/CameraResize.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneResize { 5 | contentType: "camera" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/CameraRotate.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneRotate { 5 | contentType: "camera" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/CameraSpin.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneSpin { 5 | contentType: "camera" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/VideoBasic.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneBasic { 5 | contentType: "video" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/VideoDrag.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneDrag { 5 | contentType: "video" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/VideoFullScreen.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneFullScreen { 5 | contentType: "video" 6 | } 7 | 8 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/VideoFullScreenInverted.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneFullScreenInverted { 5 | contentType: "video" 6 | } 7 | 8 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/VideoMove.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneMove { 5 | contentType: "video" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/VideoOverlay.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneOverlay { 5 | contentType: "video" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/VideoResize.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneResize { 5 | contentType: "video" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/VideoRotate.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneRotate { 5 | contentType: "video" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/VideoSpin.qml: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | SceneSpin { 5 | contentType: "video" 6 | } 7 | -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/qmlvideo/qmlvideo/images/folder.png -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/images/leaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/qmlvideo/qmlvideo/images/leaves.jpg -------------------------------------------------------------------------------- /examples/multimedia/video/qmlvideo/qmlvideo/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/qmlvideo/qmlvideo/images/up.png -------------------------------------------------------------------------------- /examples/multimedia/video/recorder/doc/images/qml-recorder-control-bar-overview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/recorder/doc/images/qml-recorder-control-bar-overview.gif -------------------------------------------------------------------------------- /examples/multimedia/video/recorder/doc/images/qml-recorder-overview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/recorder/doc/images/qml-recorder-overview.gif -------------------------------------------------------------------------------- /examples/multimedia/video/recorder/doc/images/qmlrecorder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/video/recorder/doc/images/qmlrecorder.jpg -------------------------------------------------------------------------------- /examples/multimedia/video/recorder/qmldir: -------------------------------------------------------------------------------- 1 | module CustomStyles 2 | singleton Style 1.0 Style.qml 3 | -------------------------------------------------------------------------------- /examples/multimedia/video/video.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += qmlvideo 4 | -------------------------------------------------------------------------------- /examples/multimedia/videographicsitem/doc/images/video-videographicsitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/videographicsitem/doc/images/video-videographicsitem.png -------------------------------------------------------------------------------- /examples/multimedia/videowidget/doc/images/video-videowidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/multimedia/videowidget/doc/images/video-videowidget.png -------------------------------------------------------------------------------- /examples/spatialaudio/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 The Qt Company Ltd. 2 | # SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause 3 | 4 | qt_internal_add_example(audiopanning) 5 | -------------------------------------------------------------------------------- /examples/spatialaudio/audiopanning/doc/images/audiopanning-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/examples/spatialaudio/audiopanning/doc/images/audiopanning-example.png -------------------------------------------------------------------------------- /examples/spatialaudio/spatialaudio.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS += audiopanning 3 | 4 | -------------------------------------------------------------------------------- /qt_cmdline.cmake: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | qt_commandline_subconfig(src/multimedia) 5 | -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/Dense: -------------------------------------------------------------------------------- 1 | #include "Core" 2 | #include "LU" 3 | #include "Cholesky" 4 | #include "QR" 5 | #include "SVD" 6 | #include "Geometry" 7 | #include "Eigenvalues" 8 | -------------------------------------------------------------------------------- /src/3rdparty/eigen/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- 1 | #ifdef EIGEN_MPL2_ONLY 2 | #error Including non-MPL2 code in EIGEN_MPL2_ONLY mode 3 | #endif 4 | -------------------------------------------------------------------------------- /src/3rdparty/pffft/COPYRIGHTS: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013 Julien Pommier 2 | Copyright (c) 2004 the University Corporation for Atmospheric Research 'UCAR' 3 | -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | 3 | Contributors (in alphabetical order): 4 | Alper Gungormusler 5 | Dillon Cower 6 | Frank Boland 7 | Ian Kelly 8 | Julius Kammerl 9 | Marcin Gorzel 10 | Yero Yeh 11 | -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Default owners for everything in the repo. 2 | * @anokta @haroonq 3 | 4 | # Wwise plugin. 5 | platforms/wwise/* @ralphyon 6 | 7 | -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/COPYRIGHTS: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015, 2017, 2018 Google Inc. 2 | -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/REUSE.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | 3 | [[annotations]] 4 | path = ["**"] 5 | precedence = "closest" 6 | SPDX-FileCopyrightText = "Copyright (c) 2015, 2017, 2018 Google Inc." 7 | SPDX-License-Identifier = "Apache-2.0" 8 | -------------------------------------------------------------------------------- /src/3rdparty/resonance-audio/third_party/SADIE_hrtf_database/generated/README: -------------------------------------------------------------------------------- 1 | These files have been automatically generated using: 2 | 3 | $./generate_hrtf_assets.py hrtf_assets.iad generated 4 | 5 | Do not modify manually these automatically generated files. -------------------------------------------------------------------------------- /src/3rdparty/signalsmith-stretch/REUSE.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | 3 | [[annotations]] 4 | path = ["**"] 5 | SPDX-FileCopyrightText = ["Copyright (c) 2022 Geraint Luff / Signalsmith Audio Ltd."] 6 | SPDX-License-Identifier = "MIT" 7 | -------------------------------------------------------------------------------- /src/android/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | # Generated from android.pro. 5 | 6 | add_subdirectory(jar) 7 | -------------------------------------------------------------------------------- /src/multimedia/doc/QtMultimediaDoc: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2024 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only 3 | 4 | #include 5 | #include 6 | -------------------------------------------------------------------------------- /src/multimedia/doc/snippets/multimedia-snippets/images/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/snippets/multimedia-snippets/images/qt-logo.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/Zoom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/Zoom.gif -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/annotatedurl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/annotatedurl.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/camera_correctionAngle_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/camera_correctionAngle_90.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/codeless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/codeless.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/how-focus-works.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/how-focus-works.gif -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/image_processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/image_processing.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/qS1FmgPVL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/qS1FmgPVL.jpg -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/qmlcamera-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/qmlcamera-menu.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/radio-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/radio-example.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/slideshow-img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/slideshow-img1.png -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/sound-wave-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/sound-wave-small.jpg -------------------------------------------------------------------------------- /src/multimedia/doc/src/images/video-graphics-memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/src/multimedia/doc/src/images/video-graphics-memory.png -------------------------------------------------------------------------------- /src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(multimedia) 5 | -------------------------------------------------------------------------------- /src/plugins/multimedia/android/android.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "android" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/multimedia/darwin/darwin.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "darwin" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/ffmpeg.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "ffmpeg" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/symbolstubs/openssl3.ver: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | OPENSSL_3.0.0 { 5 | global: 6 | *; 7 | }; 8 | -------------------------------------------------------------------------------- /src/plugins/multimedia/ffmpeg/symbolstubs/va.ver: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | VA_API_0.33.0 { 5 | global: 6 | vaCreateSurfaces; 7 | }; 8 | -------------------------------------------------------------------------------- /src/plugins/multimedia/gstreamer/gstreamer.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "gstreamer" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/multimedia/qnx/qnx.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "qnx" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/multimedia/wasm/wasm.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ 3 | "wasm" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/multimedia/windows/windows.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "windows" ] 3 | } 4 | -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(cmake) 5 | add_subdirectory(unit) 6 | add_subdirectory(integration) 7 | -------------------------------------------------------------------------------- /tests/auto/integration/backends/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | qt_internal_add_test(tst_backends 5 | SOURCES 6 | tst_backends.cpp 7 | LIBRARIES 8 | Qt::MultimediaPrivate 9 | ) 10 | -------------------------------------------------------------------------------- /tests/auto/integration/multiapp/double-drop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/multiapp/double-drop.wav -------------------------------------------------------------------------------- /tests/auto/integration/qaudiodecoderbackend/testdata/test-corrupted.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qaudiodecoderbackend/testdata/test-corrupted.wav -------------------------------------------------------------------------------- /tests/auto/integration/qaudiodecoderbackend/testdata/test-no-audio-track.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qaudiodecoderbackend/testdata/test-no-audio-track.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qaudiodecoderbackend/testdata/test-unsupported.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qaudiodecoderbackend/testdata/test-unsupported.avi -------------------------------------------------------------------------------- /tests/auto/integration/qaudiodecoderbackend/testdata/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qaudiodecoderbackend/testdata/test.wav -------------------------------------------------------------------------------- /tests/auto/integration/qaudiosink/BLACKLIST: -------------------------------------------------------------------------------- 1 | #QTBUG-122309 2 | [pullResumeFromUnderrun] 3 | rhel-9.2 4 | rhel-9.4 5 | ubuntu-24.04 #QTBUG-127733 6 | -------------------------------------------------------------------------------- /tests/auto/integration/qcamerabackend/BLACKLIST: -------------------------------------------------------------------------------- 1 | ci 2 | 3 | [testCameraCaptureMetadata] 4 | osx 5 | ios 6 | 7 | [testCameraStartParallel] 8 | ios 9 | 10 | [testCameraFormat] 11 | osx 12 | ios 13 | -------------------------------------------------------------------------------- /tests/auto/integration/qmediacapturesession/BLACKLIST: -------------------------------------------------------------------------------- 1 | # QTBUG-129956 2 | ci !windows !linux !macos !android !ios 3 | -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayer_concurrent/3colors_with_sound_1s.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayer_concurrent/3colors_with_sound_1s.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/15s.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/15s.mkv -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/3colors_with_sound_1s.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/3colors_with_sound_1s.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/BigBuckBunny.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/BigBuckBunny.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/_test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/_test.wav -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/audio_video_with_jpg_thumbnail.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/audio_video_with_jpg_thumbnail.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/audio_video_with_png_thumbnail.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/audio_video_with_png_thumbnail.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/busAv1.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/busAv1.webm -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/busMpeg4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/busMpeg4.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/color_matrix.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/color_matrix.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_180_deg_clockwise.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_180_deg_clockwise.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_180_deg_clockwise_mirrored.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_180_deg_clockwise_mirrored.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_270_deg_clockwise.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_270_deg_clockwise.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_270_deg_clockwise_mirrored.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_270_deg_clockwise_mirrored.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_90_deg_clockwise.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_90_deg_clockwise.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_90_deg_clockwise_mirrored.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_90_deg_clockwise_mirrored.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_mirrored.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/color_matrix_mirrored.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/colors.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/colors.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/colors.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/colors.ogv -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/corrupt_end.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/corrupt_end.ogg -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/duration_issues.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/duration_issues.webm -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/h264_avc1_yuv420p10le_tv_bt2020.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/h264_avc1_yuv420p10le_tv_bt2020.mov -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/invalid_media.m3u: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/invalid_media2.m3u: -------------------------------------------------------------------------------- 1 | test.wav 2 | invalid 3 | test.wav 4 | -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/multitrack-subtitle-start-at-zero.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/multitrack-subtitle-start-at-zero.mkv -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/multitrack.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/multitrack.mkv -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/nested1.m3u: -------------------------------------------------------------------------------- 1 | #EXTM3U 2 | test.wav 3 | nested2.m3u 4 | _test.wav 5 | -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/nested2.m3u: -------------------------------------------------------------------------------- 1 | #EXTM3U 2 | test.wav 3 | _test.wav 4 | -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/nokia-tune.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/nokia-tune.mkv -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/nokia-tune.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/nokia-tune.mp3 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/one_red_frame.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/one_red_frame.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/par_2_3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/par_2_3.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/par_3_2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/par_3_2.mp4 -------------------------------------------------------------------------------- /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/qmediaplayerbackend/testdata/sample.m3u: -------------------------------------------------------------------------------- 1 | #EXTM3U 2 | test.wav 3 | nested1.m3u 4 | _test.wav 5 | -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/subtitletest.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/subtitletest.mkv -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerbackend/testdata/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerbackend/testdata/test.wav -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/containers/supported/container.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/containers/supported/container.avi -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/containers/supported/container.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/containers/supported/container.mkv -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/containers/supported/container.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/containers/supported/container.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/containers/supported/container.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/containers/supported/container.mpeg -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/containers/supported/container.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/containers/supported/container.wmv -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/containers/unsupported/container.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/containers/unsupported/container.webp -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/flipable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/flipable.gif -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_bgr0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_bgr0.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_bgr24.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_bgr24.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_gray.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_gray.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_gray10le.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_gray10le.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_nv12.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_nv12.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_nv16.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_nv16.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_nv21.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_nv21.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_rgb24.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_rgb24.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv420p.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv420p.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv420p10.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv420p10.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv420p10le.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv420p10le.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv422p.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv422p.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv422p10.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv422p10.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv422p10le.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv422p10le.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv444p.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv444p.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv444p10.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuv444p10.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuvj420p.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuvj420p.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuvj422p.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuvj422p.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuvj444p.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qmediaplayerformatsupport/testdata/pixel_formats/supported/h264_yuvj444p.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qml/tst_qml.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2016 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only 3 | 4 | #include 5 | QUICK_TEST_MAIN(qml) 6 | -------------------------------------------------------------------------------- /tests/auto/integration/qquickvideooutput/main.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | import QtMultimedia 3 | 4 | VideoOutput { 5 | width: 150 6 | height: 100 7 | } 8 | -------------------------------------------------------------------------------- /tests/auto/integration/qsoundeffect/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qsoundeffect/test.wav -------------------------------------------------------------------------------- /tests/auto/integration/qsoundeffect/test_corrupted.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qsoundeffect/test_corrupted.wav -------------------------------------------------------------------------------- /tests/auto/integration/qsoundeffect/test_tone.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qsoundeffect/test_tone.wav -------------------------------------------------------------------------------- /tests/auto/integration/qsoundeffect_concurrent/double-drop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qsoundeffect_concurrent/double-drop.wav -------------------------------------------------------------------------------- /tests/auto/integration/qvideoframebackend/testdata/colors.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qvideoframebackend/testdata/colors.mp4 -------------------------------------------------------------------------------- /tests/auto/integration/qvideoframebackend/testdata/one_red_frame.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/integration/qvideoframebackend/testdata/one_red_frame.mp4 -------------------------------------------------------------------------------- /tests/auto/unit/mockbackend/mock.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "mock" ] 3 | } 4 | -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qmaybe/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | qt_internal_add_test(tst_qmaybe 5 | SOURCES 6 | tst_qmaybe.cpp 7 | LIBRARIES 8 | Qt::MultimediaPrivate 9 | ) 10 | -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qmediaplayer/testdata/nokia-tune.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qmediaplayer/testdata/nokia-tune.mp3 -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qmediaplaylist/testdata/empty.pls: -------------------------------------------------------------------------------- 1 | [playlist] 2 | NumberOfEntries=100 3 | -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qmediaplaylist/testdata/test.m3u: -------------------------------------------------------------------------------- 1 | #comment 2 | 3 | http://test.host/path 4 | http://test.host/path 5 | testfile 6 | 7 | 8 | testdir/testfile 9 | /testdir/testfile 10 | file://path/name#suffix 11 | testfile2#suffix 12 | -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qmediaplaylist/testdata/testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qmediaplaylist/testdata/testfile -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qmediaplaylist/testdata/testfile2#suffix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qmediaplaylist/testdata/testfile2#suffix -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qmediaplaylist/testdata/totem-pl-example.pls: -------------------------------------------------------------------------------- 1 | [playlist] 2 | X-GNOME-Title=totem-pl-file-example 3 | NumberOfEntries=1 4 | File1=http://test.host/path 5 | Title1=Silence 6 | -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qsamplecache/testdata/corrupted.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qsamplecache/testdata/corrupted.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qsamplecache/testdata/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qsamplecache/testdata/test.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qsamplecache/testdata/test2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qsamplecache/testdata/test2.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_abgr8888_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_argb8888_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgra8888_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_bgrx8888_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_adobergb_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_adobergb_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc1_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_adobergb_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_adobergb_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc2_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_adobergb_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_adobergb_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc3_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_adobergb_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_adobergb_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_imc4_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_adobergb_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_adobergb_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv12_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_adobergb_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_adobergb_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_nv21_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_adobergb_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_adobergb_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p010_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_adobergb_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_adobergb_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_p016_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgba8888_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_rgbx8888_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_adobergb_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_adobergb_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_uyvy_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xbgr8888_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_xrgb8888_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_adobergb_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_adobergb_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y16_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_adobergb_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_adobergb_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_y8_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p10_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv420p_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuv422p_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yuyv_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_adobergb_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_adobergb_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_adobergb_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_adobergb_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_adobergb_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_adobergb_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt2020_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt2020_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt2020_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt2020_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt2020_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt2020_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt2020_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt2020_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt601_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt601_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt601_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt601_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt601_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt601_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt601_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt601_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt709_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt709_full.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt709_full_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt709_full_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt709_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt709_video.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt709_video_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qvideoframecolormanagement/testdata/umbrellas.jpg_yv12_bt709_video_cpu.png -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/corrupt_datadesc_1_16_8000.le.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/corrupt_datadesc_1_16_8000.le.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/corrupt_fmtdesc_1_16_8000.le.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/corrupt_fmtdesc_1_16_8000.le.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/corrupt_fmtstring_1_16_8000.le.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/corrupt_fmtstring_1_16_8000.le.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/empty.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/empty.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_16_44100_le.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_16_44100_le.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_16_44100_le_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_16_44100_le_2.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_16_8000_le.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_16_8000_le.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_24_44100_le.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_24_44100_le.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_24_8000_le.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_24_8000_le.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_32_44100_le.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_32_44100_le.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_32_8000_le.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_32_8000_le.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_8_44100.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_8_44100.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_8_8000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_8_8000.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_8_8000_even_bext.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_8_8000_even_bext.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_8_8000_odd_bext.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_8_8000_odd_bext.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_f32_44100_le.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_f32_44100_le.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_f32_8000_le.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_1_f32_8000_le.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_16_44100_be.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_16_44100_be.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_16_8000_be.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_16_8000_be.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_24_44100_be.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_24_44100_be.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_24_8000_be.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_24_8000_be.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_32_44100_be.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_32_44100_be.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_32_8000_be.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_32_8000_be.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_8_44100.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_8_44100.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_8_8000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_8_8000.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_f32_44100_be.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_f32_44100_be.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_f32_8000_be.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/isawav_2_f32_8000_be.wav -------------------------------------------------------------------------------- /tests/auto/unit/multimedia/qwavedecoder/data/nosampledata.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/multimedia/qwavedecoder/data/nosampledata.wav -------------------------------------------------------------------------------- /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/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(multimedia) 5 | -------------------------------------------------------------------------------- /tests/auto/unit/plugins/multimedia/ffmpeg/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(qffmpegmath) 5 | add_subdirectory(texturebridge) 6 | add_subdirectory(qffmpegvideoencoderutils) 7 | -------------------------------------------------------------------------------- /tests/auto/unit/plugins/multimedia/gstreamer/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(gstreamer_backend) 2 | add_subdirectory(qmediacapture_gstreamer) 3 | add_subdirectory(qmediaplayer_gstreamer) 4 | -------------------------------------------------------------------------------- /tests/auto/unit/plugins/multimedia/gstreamer/gstreamer_backend/BLACKLIST: -------------------------------------------------------------------------------- 1 | # gstreamer-1.20-plugin-openh264 is not installable on openSUSE_15_5 at the moment 2 | openSUSE_15_5 ci 3 | -------------------------------------------------------------------------------- /tests/auto/unit/plugins/multimedia/gstreamer/gstreamer_backend/color_matrix_90_deg_clockwise.m2v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/plugins/multimedia/gstreamer/gstreamer_backend/color_matrix_90_deg_clockwise.m2v -------------------------------------------------------------------------------- /tests/auto/unit/plugins/multimedia/gstreamer/gstreamer_backend/color_matrix_90_deg_clockwise.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/plugins/multimedia/gstreamer/gstreamer_backend/color_matrix_90_deg_clockwise.mp4 -------------------------------------------------------------------------------- /tests/auto/unit/plugins/multimedia/gstreamer/gstreamer_backend/metadata_test_file.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/plugins/multimedia/gstreamer/gstreamer_backend/metadata_test_file.mp4 -------------------------------------------------------------------------------- /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/auto/unit/plugins/multimedia/gstreamer/qmediaplayer_gstreamer/testdata/color_matrix.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/auto/unit/plugins/multimedia/gstreamer/qmediaplayer_gstreamer/testdata/color_matrix.mp4 -------------------------------------------------------------------------------- /tests/global/global.cfg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/manual/qml-minimal-sound-effect/double-drop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/manual/qml-minimal-sound-effect/double-drop.wav -------------------------------------------------------------------------------- /tests/manual/qml-minimal-sound-effect/triple-click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/manual/qml-minimal-sound-effect/triple-click.wav -------------------------------------------------------------------------------- /tests/manual/qml-multiple-players/testvideo1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/manual/qml-multiple-players/testvideo1.mp4 -------------------------------------------------------------------------------- /tests/manual/qml-multiple-players/testvideo2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtmultimedia/45d3cd3ef0747194921ec96ea1c9cefc9ca04da6/tests/manual/qml-multiple-players/testvideo2.mp4 -------------------------------------------------------------------------------- /tests/manual/wasm/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2023 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | if(QT_FEATURE_widgets) 5 | add_subdirectory(camera) 6 | endif() 7 | --------------------------------------------------------------------------------