debian/0000755000000000000000000000000012374404642007174 5ustar debian/phonon.templates0000644000000000000000000000006612373124453012415 0ustar INCLUDE#: debian/phonon-backend-null/DEBIAN/templates debian/rules0000755000000000000000000001234012373124453010252 0ustar #!/usr/bin/make -f dh = --dbg-package=phonon-dbg include /usr/share/pkg-kde-tools/qt-kde-team/2/debian-qt-kde.mk # Enable strict interdependencies libpkgs_gen_strict_local_shlibs = $(libpkgs_all_packages) include /usr/share/pkg-kde-tools/qt-kde-team/2/library-packages.mk RECOMMENDED_PHONON_BACKEND := phonon-backend-gstreamer1.0 RECOMMENDED_PHONON4QT5_BACKEND := phonon4qt5-backend-gstreamer override_dh_auto_configure: $(overridden_command) -- -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON $(overridden_command) -Bbuild-phonon-qt5 -- -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=ON -DPHONON_BUILD_PHONON4QT5=ON override_dh_auto_build: $(overridden_command) cd build-phonon-qt5; $(overridden_command); cd .. override_dh_auto_install: $(overridden_command) mkdir -p debian/tmp-phonon-qt5 cd build-phonon-qt5; DESTDIR=$(CURDIR)/debian/tmp-phonon-qt5 make install; cd .. # libphonon4qt5 mkdir -p debian/libphonon4qt5-4/usr/lib/$(DEB_BUILD_MULTIARCH)/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/libphonon4qt5.so.4 debian/libphonon4qt5-4/usr/lib/$(DEB_BUILD_MULTIARCH)/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/libphonon4qt5.so.4.* debian/libphonon4qt5-4/usr/lib/$(DEB_BUILD_MULTIARCH)/ # libphonon4qt5-dev mkdir -p debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/cmake/phonon4qt5/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/cmake/phonon4qt5/Phonon4Qt5Config.cmake debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/cmake/phonon4qt5/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/cmake/phonon4qt5/Phonon4Qt5ConfigVersion.cmake debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/cmake/phonon4qt5/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/cmake/phonon4qt5/PhononTargets-debian.cmake debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/cmake/phonon4qt5/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/cmake/phonon4qt5/PhononTargets.cmake debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/cmake/phonon4qt5/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/libphonon4qt5.so debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/ mkdir -p debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/pkgconfig/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/pkgconfig/phonon4qt5.pc debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/pkgconfig/ mkdir -p debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/qt5/mkspecs/modules/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/qt5/mkspecs/modules/qt_phonon4qt5.pri debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/qt5/mkspecs/modules/qt_phonon4qt5.pri mkdir -p debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/qt5/plugins/designer/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/qt5/plugins/designer/libphononwidgets.so debian/libphonon4qt5-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/qt5/plugins/designer/ # libphonon4qt5experimental4 mkdir -p debian/libphonon4qt5experimental4/usr/lib/$(DEB_BUILD_MULTIARCH)/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/libphonon4qt5experimental.so.4 debian/libphonon4qt5experimental4/usr/lib/$(DEB_BUILD_MULTIARCH)/ cp -a debian/tmp-phonon-qt5/usr/lib/$(DEB_BUILD_MULTIARCH)/libphonon4qt5experimental.so.4.* debian/libphonon4qt5experimental4/usr/lib/$(DEB_BUILD_MULTIARCH)/ # libphonon4qt5experimental-dev mkdir -p debian/libphonon4qt5experimental-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/ cp -a debian/tmp-phonon-qt5/usr/lib/*/libphonon4qt5experimental.so debian/libphonon4qt5experimental-dev/usr/lib/$(DEB_BUILD_MULTIARCH)/ override_dh_auto_clean: rm -rf build-phonon-qt5 debian/tmp-phonon-qt5 $(overridden_command) # shlibs is needed for library-packages.mk (strict shlibs) to work override_dh_makeshlibs: $(overridden_command) -plibphonon4 -V'libphonon4 (>= $(dqk_upstream_version)), phonon' $(overridden_command) -V --remaining-packages override_dh_shlibdeps: $(overridden_command) -- -xphonon override_dh_gencontrol: # Expand some variables in maintainer scripts and debconf templates @for f in debian/*/DEBIAN/post* \ debian/*/DEBIAN/pre* \ debian/*/DEBIAN/config \ debian/*/DEBIAN/templates; do \ if [ -f "$$f" ]; then \ cmd="awk -f debian/expand_vars.awk -v recommended_backend='$(RECOMMENDED_PHONON_BACKEND)' -- $$f > $$f.tmp && cat $$f.tmp >| $$f && rm -f $$f.tmp"; \ echo "$$cmd"; eval "$$cmd"; \ fi; \ if [ -f "$$f" ]; then \ cmd="awk -f debian/expand4qt5_vars.awk -v recommended4qt5_backend='$(RECOMMENDED_PHONON4QT5_BACKEND)' -- $$f > $$f.tmp && cat $$f.tmp >| $$f && rm -f $$f.tmp"; \ echo "$$cmd"; eval "$$cmd"; \ fi; \ done if [ -d debian/phonon-backend-null ]; then \ sed -i 's/\$${recommended_backend}/$(RECOMMENDED_PHONON_BACKEND)/g' \ debian/phonon-backend-null/usr/share/doc/phonon-backend-null/README.Debian; \ fi if [ -d debian/phonon4qt5-backend-null ]; then \ sed -i 's/\$${recommended4qt5_backend}/$(RECOMMENDED_PHONON4QT5_BACKEND)/g' \ debian/phonon4qt5-backend-null/usr/share/doc/phonon4qt5-backend-null/README.Debian; \ fi $(overridden_command) -- -Vphonon:Recommended-Backend=$(RECOMMENDED_PHONON_BACKEND) -Vphonon:Recommended-Backend-qt5=$(RECOMMENDED_PHONON_BACKEND) debian/phonon4qt5-backend-null.dc-config.in0000644000000000000000000000425612373124453015735 0ustar # START CONFIG[phonon4qt5-null-backend/isnt_functional] . /usr/share/debconf/confmodule # This function will show a warning about phonon4qt5-backend-null whenever phonon4qt5 # metapackage or phonon4qt5-backend-null is being installed warn_about_phonon_backend_null() { local package=`basename "$0" .postinst` local show_warning=0 local recommended4qt5_backend="#RECOMMENDED4QT5_BACKEND#" local other_backends # Do not show the note when reconfiguring if [ "$1" = "reconfigure" ] || [ "DEBCONF_RECONFIGURE" = "1" ]; then return 0 fi if [ "$1" = "configure" ]; then # Display the warning only if both (phonon4qt5 and phonon4qt5-backend-null) # are (about to be) installed. In order to avoid checking dpkg status # database, we can check Owners field of the debconf question. db_metaget phonon4qt5-backend-null/isnt_functional Owners OWNERS="`echo "$RET" | sed 's/, /\n/g'`" if echo "$OWNERS" | grep -q -e 'phonon4qt5$' -e 'phonon4qt5:' && echo "$OWNERS" | grep -q phonon4qt5-backend-null; then show_warning=1 fi # Finally show the note if needed (and it wasn't seen already) db_fget phonon4qt5-backend-null/isnt_functional seen || true if [ "$RET" != "true" ] && [ "$show_warning" = "1" ]; then other_backends="`LC_ALL=C apt-cache showpkg phonon4qt5-backend | \ awk '/: *$/{go=0} {if (go==1) print $1;} /^Reverse Provides: *$/ {go=1}' | \ sort -u | \ grep -v -e phonon4qt5-backend-null -e "$recommended4qt5_backend" | \ awk '{printf ", " $1}'`" db_settitle phonon4qt5-backend-null/isnt_functional_title || true db_subst phonon4qt5-backend-null/isnt_functional recommended4qt5_backend "$recommended4qt5_backend" db_subst phonon4qt5-backend-null/isnt_functional other_backends "$other_backends" db_input high phonon4qt5-backend-null/isnt_functional || true db_go || true fi fi } warn_about_phonon_backend_null "$@" # vim: set syntax=sh # END CONFIG[phonon4qt5-null-backend/isnt_functional] debian/libphonon4.install0000644000000000000000000000006412373124453012636 0ustar usr/lib/*/libphonon.so.4 usr/lib/*/libphonon.so.4.* debian/phonon-backend-null.README.Debian0000644000000000000000000000167112373124453015075 0ustar About this backend ------------------ This backend is not a real Phonon backend. Therefore Phonon based (i.e. most KDE and some Qt) applications will produce no audio or video output. Typically, this is an undesirable configuration which you might have gotten to unintentionally. However, `phonon-backend-null' might be useful if you are not interested in multimedia and you don't want to install a number of pretty heavy packages which real backends typically depend on. If you wish to restore full Phonon multimedia capabilities, install a real Phonon backend with your favourite package manager. The recommended backend is `${recommended_backend}' but you may choose any other package which provides the `phonon-backend' virtual package. Use whatever works best with your system setup. Phonon backend package names typically start with 'phonon-backend-' string by convention. Have a look at the packages suggested by the `phonon' package as well. debian/libphonon4qt5-dev.install0000644000000000000000000000125112373124453014043 0ustar debian/tmp-phonon-qt5/usr/include/phonon4qt5/phonon/*h usr/include/phonon4qt5/phonon/ debian/tmp-phonon-qt5/usr/include/phonon4qt5/phonon/Phonon/ usr/include/phonon4qt5/KDE/ debian/tmp-phonon-qt5/usr/include/phonon4qt5/phonon/[A-O]* usr/include/phonon4qt5/phonon/ debian/tmp-phonon-qt5/usr/include/phonon4qt5/phonon/[Q-Z]* usr/include/phonon4qt5/phonon/ debian/tmp-phonon-qt5/usr/include/phonon4qt5/phonon/Path usr/include/phonon4qt5/phonon/ debian/tmp-phonon-qt5/usr/share/dbus-1/interfaces/org.kde.Phonon4Qt5.AudioOutput.xml usr/share/dbus-1/interfaces/org.kde.Phonon4Qt5.AudioOutput.xml debian/tmp-phonon-qt5/usr/share/phonon4qt5/buildsystem/* usr/share/phonon4qt5/buildsystem/ debian/not-installed0000644000000000000000000000006512373124453011673 0ustar ./usr/share/phonon/buildsystem/COPYING-CMAKE-SCRIPTS debian/libphononexperimental4.symbols0000644000000000000000000003522712373124453015307 0ustar # SymbolsHelper-Confirmed: 4:4.6.0really4.5.0 amd64 libphononexperimental.so.4 libphononexperimental4 #MINVER#, phononexperimental-abi-1 _ZN6Phonon10PacketPoolC1ERKS0_@Base 4:4.6.0really4.4.4 _ZN6Phonon10PacketPoolC1Eii@Base 4:4.6.0really4.4.4 _ZN6Phonon10PacketPoolC2ERKS0_@Base 4:4.6.0really4.4.4 _ZN6Phonon10PacketPoolC2Eii@Base 4:4.6.0really4.4.4 _ZN6Phonon10PacketPoolD1Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon10PacketPoolD2Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon10PacketPoolaSERKS0_@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental11MediaSourceC1ERK5QListINS_11MediaSourceEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental11MediaSourceC1ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE65536EEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental11MediaSourceC1ERKS1_@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental11MediaSourceC2ERK5QListINS_11MediaSourceEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental11MediaSourceC2ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE65536EEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental11MediaSourceC2ERKS1_@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental11MediaSourceaSERKS1_@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental13Visualization11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental13Visualization11qt_metacastEPKc@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental13Visualization16setVisualizationERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE4294967294EEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental13Visualization16staticMetaObjectE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental13VisualizationC1EP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental13VisualizationC2EP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental13VisualizationD0Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental13VisualizationD1Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental13VisualizationD2Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15AudioDataOutput10endOfMediaEi@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15AudioDataOutput11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15AudioDataOutput11qt_metacastEPKc@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15AudioDataOutput11setDataSizeEi@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15AudioDataOutput16staticMetaObjectE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15AudioDataOutput9dataReadyERK4QMapINS1_7ChannelE7QVectorIfEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15AudioDataOutput9dataReadyERK4QMapINS1_7ChannelE7QVectorIsEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15AudioDataOutput9setFormatENS1_6FormatE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15AudioDataOutputC1EP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15AudioDataOutputC2EP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15AudioDataOutputD0Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental15AudioDataOutputD1Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental15AudioDataOutputD2Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental15VideoDataOutput10endOfMediaEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15VideoDataOutput10setRunningEb@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15VideoDataOutput11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15VideoDataOutput11qt_metacastEPKc@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15VideoDataOutput12displayFrameExx@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15VideoDataOutput12frameForTimeEx@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15VideoDataOutput16staticMetaObjectE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15VideoDataOutput4stopEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15VideoDataOutput5startEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15VideoDataOutputC1EP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15VideoDataOutputC2EP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental15VideoDataOutputD0Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental15VideoDataOutputD1Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental15VideoDataOutputD2Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental16VideoDataOutput210endOfMediaEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental16VideoDataOutput210frameReadyERKNS0_11VideoFrame2E@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental16VideoDataOutput211qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental16VideoDataOutput211qt_metacastEPKc@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental16VideoDataOutput216endOfMediaSignalEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental16VideoDataOutput216frameReadySignalERKNS0_11VideoFrame2E@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental16VideoDataOutput216staticMetaObjectE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental16VideoDataOutput2C1EP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental16VideoDataOutput2C2EP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental16VideoDataOutput2D0Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental16VideoDataOutput2D1Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental16VideoDataOutput2D2Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental19BackendCapabilities28availableVideoCaptureDevicesEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractAudioDataOutput10setRunningEb@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractAudioDataOutput17setAllowedFormatsERK4QSetINS0_11AudioFormatEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractAudioDataOutput4stopEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractAudioDataOutput5startEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractAudioDataOutputC1Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractAudioDataOutputC2Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractAudioDataOutputD0Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractAudioDataOutputD1Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractAudioDataOutputD2Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractVideoDataOutput10setRunningEb@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractVideoDataOutput17setAllowedFormatsERK4QSetINS0_11VideoFrame26FormatEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractVideoDataOutput4stopEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractVideoDataOutput5startEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractVideoDataOutputC1ERNS0_30AbstractVideoDataOutputPrivateE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractVideoDataOutputC1Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractVideoDataOutputC2ERNS0_30AbstractVideoDataOutputPrivateE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractVideoDataOutputC2Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractVideoDataOutputD0Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractVideoDataOutputD1Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental23AbstractVideoDataOutputD2Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental7Factory19createVisualizationEP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental7Factory21createAudioDataOutputEP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental7Factory6senderEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCapture11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCapture11qt_metacastEPKc@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCapture12stateChangedENS_5StateES2_@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental9AvCapture16staticMetaObjectE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCapture17setCaptureDevicesENS_15CaptureCategoryE@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental9AvCapture21setAudioCaptureDeviceENS_15CaptureCategoryE@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental9AvCapture21setAudioCaptureDeviceENS_8CategoryE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCapture21setAudioCaptureDeviceERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE4EEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCapture21setVideoCaptureDeviceENS_15CaptureCategoryE@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental9AvCapture21setVideoCaptureDeviceENS_8CategoryE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCapture21setVideoCaptureDeviceERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE5EEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCapture21setVideoCaptureDeviceERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE65536EEE@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCapture4stopEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCapture5pauseEv@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental9AvCapture5startEv@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCaptureC1ENS_15CaptureCategoryEP7QObject@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental9AvCaptureC1EP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCaptureC2ENS_15CaptureCategoryEP7QObject@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental9AvCaptureC2EP7QObject@Base 4:4.6.0really4.4.4 _ZN6Phonon12Experimental9AvCaptureD0Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental9AvCaptureD1Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12Experimental9AvCaptureD2Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon6Packet4dataEv@Base 4:4.6.0really4.4.4 _ZN6Phonon6Packet7setSizeEi@Base 4:4.6.0really4.4.4 _ZN6Phonon6PacketC1ERKS0_@Base 4:4.6.0really4.4.4 _ZN6Phonon6PacketC1ERNS_10PacketPoolE@Base 4:4.6.0really4.4.4 _ZN6Phonon6PacketC1ERNS_13PacketPrivateE@Base 4:4.6.0really4.4.4 _ZN6Phonon6PacketC1Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon6PacketC2ERKS0_@Base 4:4.6.0really4.4.4 _ZN6Phonon6PacketC2ERNS_10PacketPoolE@Base 4:4.6.0really4.4.4 _ZN6Phonon6PacketC2ERNS_13PacketPrivateE@Base 4:4.6.0really4.4.4 _ZN6Phonon6PacketC2Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon6PacketD1Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon6PacketD2Ev@Base 4:4.6.0really4.4.4 _ZN6Phonon6PacketaSERKS0_@Base 4:4.6.0really4.4.4 _ZNK6Phonon10PacketPool10packetSizeEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon10PacketPool13unusedPacketsEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon10PacketPool8poolSizeEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental11MediaSource10substreamsEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental11MediaSource18videoCaptureDeviceEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental11MediaSourceeqERKS1_@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental12GlobalConfig21videoCaptureDeviceForENS_15CaptureCategoryEi@Base 4:4.6.0really4.5.0 _ZNK6Phonon12Experimental12GlobalConfig21videoCaptureDeviceForENS_8CategoryEi@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental12GlobalConfig25videoCaptureDeviceListForENS_15CaptureCategoryEi@Base 4:4.6.0really4.5.0 _ZNK6Phonon12Experimental12GlobalConfig25videoCaptureDeviceListForENS_8CategoryEi@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental13Visualization10metaObjectEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental13Visualization13visualizationEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental15AudioDataOutput10metaObjectEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental15AudioDataOutput10sampleRateEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental15AudioDataOutput6formatEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental15AudioDataOutput8dataSizeEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental15VideoDataOutput10metaObjectEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental15VideoDataOutput7latencyEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental15VideoDataOutput9isRunningEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental16VideoDataOutput210metaObjectEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental23AbstractAudioDataOutput14allowedFormatsEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental23AbstractAudioDataOutput9isRunningEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental23AbstractVideoDataOutput14allowedFormatsEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental23AbstractVideoDataOutput9isRunningEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental9AvCapture10metaObjectEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental9AvCapture18audioCaptureDeviceEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental9AvCapture18videoCaptureDeviceEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon12Experimental9AvCapture5stateEv@Base 4:4.6.0really4.5.0 _ZNK6Phonon6Packet4dataEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon6Packet4sizeEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon6Packet6isNullEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon6Packet8capacityEv@Base 4:4.6.0really4.4.4 _ZNK6Phonon6PacketeqERKS0_@Base 4:4.6.0really4.4.4 _ZNK6Phonon6PacketneERKS0_@Base 4:4.6.0really4.4.4 _ZTIN6Phonon12Experimental13VisualizationE@Base 4:4.6.0really4.4.4 _ZTIN6Phonon12Experimental15AudioDataOutputE@Base 4:4.6.0really4.4.4 _ZTIN6Phonon12Experimental15VideoDataOutputE@Base 4:4.6.0really4.4.4 _ZTIN6Phonon12Experimental16VideoDataOutput2E@Base 4:4.6.0really4.4.4 _ZTIN6Phonon12Experimental23AbstractAudioDataOutputE@Base 4:4.6.0really4.4.4 _ZTIN6Phonon12Experimental23AbstractVideoDataOutputE@Base 4:4.6.0really4.4.4 _ZTIN6Phonon12Experimental9AvCaptureE@Base 4:4.6.0really4.4.4 _ZTSN6Phonon12Experimental13VisualizationE@Base 4:4.6.0really4.4.4 _ZTSN6Phonon12Experimental15AudioDataOutputE@Base 4:4.6.0really4.4.4 _ZTSN6Phonon12Experimental15VideoDataOutputE@Base 4:4.6.0really4.4.4 _ZTSN6Phonon12Experimental16VideoDataOutput2E@Base 4:4.6.0really4.4.4 _ZTSN6Phonon12Experimental23AbstractAudioDataOutputE@Base 4:4.6.0really4.4.4 _ZTSN6Phonon12Experimental23AbstractVideoDataOutputE@Base 4:4.6.0really4.4.4 _ZTSN6Phonon12Experimental9AvCaptureE@Base 4:4.6.0really4.4.4 _ZTVN6Phonon12Experimental13VisualizationE@Base 4:4.6.0really4.4.4 _ZTVN6Phonon12Experimental15AudioDataOutputE@Base 4:4.6.0really4.4.4 _ZTVN6Phonon12Experimental15VideoDataOutputE@Base 4:4.6.0really4.4.4 _ZTVN6Phonon12Experimental16VideoDataOutput2E@Base 4:4.6.0really4.4.4 _ZTVN6Phonon12Experimental23AbstractAudioDataOutputE@Base 4:4.6.0really4.4.4 _ZTVN6Phonon12Experimental23AbstractVideoDataOutputE@Base 4:4.6.0really4.4.4 _ZTVN6Phonon12Experimental9AvCaptureE@Base 4:4.6.0really4.4.4 (c++)"non-virtual thunk to Phonon::Experimental::AudioDataOutput::~AudioDataOutput()@Base" 4:4.6.0really4.5.0 (c++)"non-virtual thunk to Phonon::Experimental::AvCapture::~AvCapture()@Base" 4:4.6.0really4.5.0 (c++)"non-virtual thunk to Phonon::Experimental::VideoDataOutput2::endOfMedia()@Base" 4:4.6.0really4.4.4 (c++)"non-virtual thunk to Phonon::Experimental::VideoDataOutput2::frameReady(Phonon::Experimental::VideoFrame2 const&)@Base" 4:4.6.0really4.4.4 (c++)"non-virtual thunk to Phonon::Experimental::VideoDataOutput2::~VideoDataOutput2()@Base" 4:4.6.0really4.5.0 (c++)"non-virtual thunk to Phonon::Experimental::VideoDataOutput::~VideoDataOutput()@Base" 4:4.6.0really4.5.0 (c++)"non-virtual thunk to Phonon::Experimental::Visualization::~Visualization()@Base" 4:4.6.0really4.4.4 debian/libphononexperimental-dev.install0000644000000000000000000000316312373124453015747 0ustar usr/include/KDE/Phonon/Experimental/AbstractVideoDataOutput usr/include/KDE/Phonon/Experimental/AudioDataOutput usr/include/KDE/Phonon/Experimental/SnapshotInterface usr/include/KDE/Phonon/Experimental/VideoDataOutput usr/include/KDE/Phonon/Experimental/VideoDataOutputInterface usr/include/KDE/Phonon/Experimental/VideoFrame usr/include/KDE/Phonon/Experimental/VideoFrame2 usr/include/KDE/Phonon/Experimental/Visualization usr/include/phonon/experimental/abstractaudiodataoutput.h usr/include/phonon/experimental/abstractvideodataoutput.h usr/include/phonon/experimental/audiodataoutput.h usr/include/phonon/experimental/audiodataoutputinterface.h usr/include/phonon/experimental/audioformat.h usr/include/phonon/experimental/avcapture.h usr/include/phonon/experimental/avcaptureinterface.h usr/include/phonon/experimental/backendcapabilities.h usr/include/phonon/experimental/backendinterface.h usr/include/phonon/experimental/export.h usr/include/phonon/experimental/globalconfig.h usr/include/phonon/experimental/mediasource.h usr/include/phonon/experimental/objectdescription.h usr/include/phonon/experimental/packet.h usr/include/phonon/experimental/packetpool.h usr/include/phonon/experimental/phononnamespace.h usr/include/phonon/experimental/snapshotinterface.h usr/include/phonon/experimental/videodataoutput.h usr/include/phonon/experimental/videodataoutput2.h usr/include/phonon/experimental/videodataoutputinterface.h usr/include/phonon/experimental/videoframe.h usr/include/phonon/experimental/videoframe2.h usr/include/phonon/experimental/videowidget.h usr/include/phonon/experimental/visualization.h usr/lib/*/libphononexperimental.so debian/po/0000755000000000000000000000000012373124453007610 5ustar debian/po/it.po0000644000000000000000000000436612373124453010575 0ustar # Italian translation of phonon debconf template. # Copyright (C) 2012, the phonon copyright holder # This file is distributed under the same license as the phonon package. # Francesca Ciceri, , 2012. # msgid "" msgstr "" "Project-Id-Version: phonon_4:4.6.0really4.5.0-1\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2012-01-19 18:04+0100\n" "Last-Translator: Francesca Ciceri \n" "Language-Team: Italian \n" "Language: Italian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Attenzione: Phonon non è funzionante" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Back-end mancante per Phonon" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Le applicazioni che usano Phonon (l'infrastruttura multimediale di Qt 4) " "non produrranno alcun output audio o video perché su questo sistema è " "installato solamente un back-end Phonon fittizio. In genere questa è " "una configurazione involontaria." #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "Per ripristinare una piena funzionalità multimediale di Phonon, " "basterà installare uno degli effettivi pacchetti di backend per Phonon " "attualmente disponibili per questo sistema:" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (raccomandato)${other_backends}" debian/po/fr.po0000644000000000000000000000430112373124453010555 0ustar # Translation of phonon debconf template to French # Copyright (C) 2011 Debian French l10n Team # This file is distributed under the same license as the phonon package. # Steve Petruzzello , 2011. # msgid "" msgstr "" "Project-Id-Version: phonon_4:4.6.0really4.5.0-1\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2011-04-11 14:39+0200\n" "Last-Translator: Steve Petruzzello \n" "Language-Team: French \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Phonon non fonctionnel" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Module de sortie pour Phonon manquant" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Les applications utilisant Phonon (le framework multimédia de QT 4) ne " "produiront ni son ni image tant que le module de sortie factice (« dummy " "backend ») sera le seul installé. Ce n'est généralement pas une " "configuration souhaitée." #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "Afin de profiter des possibilités multimédia complètes de Phonon, veuillez " "installer un module de sortie de Phonon parmi ceux disponibles pour ce " "système :" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (recommandé)${other_backends}" debian/po/pl.po0000644000000000000000000000435112373124453010566 0ustar # Translation of phonon debconf templates to Polish. # Copyright (C) 2011 # This file is distributed under the same license as the phonon package. # # Michał Kułach , 2012. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2012-03-05 03:08+0100\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Ostrzeżenie: Phonon nie funkcjonuje poprawnie" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Brakujący backend do Phonona" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Aplikacje używające Phonona (szkielet multimediów Qt 4) nie odtworzą " "strumieni wideo ani audio, z powodu zainstalowania atrapy backendu Phonon. Z " "reguły jest to niezamierzona konfiguracja." #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "Aby odzyskać pełne możliwości Phonona, należy zainstalować jeden z pakietów z " "prawdziwym backendem, spośród aktualnie dostępnych:" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (zalecany)${other_backends}" debian/po/nl.po0000644000000000000000000000432412373124453010564 0ustar # Dutch translation of phonon debconf templates. # Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the phonon package. # Jeroen Schot , 2011. # msgid "" msgstr "" "Project-Id-Version: phonon 4:4.6.0really4.5.0-4\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2011-07-21 09:45+0200\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Let op: Phonon werkt niet" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Ontbrekend backend voor Phonon" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Applicaties die gebruik maken van Phonon (het QT 4 multimedia-kader) zullen " "geen audio- of video-outvoer produceren omdat er alleen een dummy-backend " "van Phonon is geïnstalleerd op dit systeem. Dit is meestal een onbedoelde " "configuratie." #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "Om de volledige multimedia-capaciteiten van Phonon te herstellen dient u één " "van de echte Phonon backend-pakketten die voor dit systeem beschikbaar zijn " "te installeren:" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (aanbevolen)${other_backends}" debian/po/es.po0000644000000000000000000000617312373124453010566 0ustar # phonon po-debconf translation to Spanish # Copyright (C) 2011 Software in the Public Interest # This file is distributed under the same license as the phonon package. # # Changes: # - Initial translation # Omar Campagne , 2011 # # - Updates # TRANSLATOR # # Traductores, si no conocen el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: # # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/ # especialmente las notas y normas de traducción en # http://www.debian.org/intl/spanish/notas # # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # msgid "" msgstr "" "Project-Id-Version: phonon 4:4.6.0really4.4.4-3\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2011-04-08 12:00+0200\n" "Last-Translator: Omar Campagne \n" "Language-Team: Debian l10n Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.7.0-beta4\n" "X-Project-Style: default\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Advertencia: Phonon no es funcional" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "No se ha detectado un sistema interno para Phonon" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Las aplicaciones que utilizan Phonon (la plataforma multimedia de Qt 4) no " "generarán una salida de audio o vídeo ya que sólo está instalado el sistema " "interno ficticio («dummy») de Phonon. Esta configuración no suele ser la " "deseada." #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "Para restablecer todas las funciones multimedia de Phonon, instale uno de " "los paquetes con un sistema interno real de Phonon que están disponibles " "para este sistema:" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (recomendado)${other_backends}" debian/po/sk.po0000644000000000000000000000436712373124453010577 0ustar # Copyright (C) YEAR THE phonon'S COPYRIGHT HOLDER # This file is distributed under the same license as the phonon package. # Slavko , 2011. # msgid "" msgstr "" "Project-Id-Version: phonon 4:4.6.0really4.5.0-4\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2011-09-18 10:09+0200\n" "Last-Translator: Slavko \n" "Language-Team: Slovak \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Upozornenie: Phonon nie je funkčný" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Chýba pozadie (back-end) pre Phonon" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Aplikácie, ktoré používajú Phonon (multimediálny framework Qt 4) nebudú " "produkovať žiadny audio alebo video výstup, pretože v systéme je " "nainštalované len fiktívne rozhranie (back-end) Phononu. Zvyčajne to nie je " "žiadané nastavenie." #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "Na obnovenie úplných multimediálnych schopností Phonon, nainštalujte " "niektorý z balíkov reálnych rozhraní (back-end) Phononu, ktoré sú momentálne " "v systéme k dispozícii:" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (odporúčané)${other_backends}" debian/po/ru.po0000644000000000000000000000514312373124453010601 0ustar # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the phonon package. # # Yuri Kozlov , 2011. msgid "" msgstr "" "Project-Id-Version: phonon 4:4.6.0really4.4.4-3\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2011-04-19 20:20+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Предупреждение: Phonon не работоспособнен" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Отсутствует исполнительная часть (back-end) Phonon" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Приложения, использующие Phonon (инфраструктура для мультимедиа из Qt 4), не " "будут показывать видео и проигрывать звук, так как в системе установлена " "только заглушка для исполнительной части Phonon. Обычно, это " "непреднамеренная настройка." #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "Чтобы воспользоваться всеми возможностями Phonon, установите один из пакетов " "исполнительной части Phonon:" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (рекомендуется)${other_backends}" debian/po/templates.pot0000644000000000000000000000315612373124453012337 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "" debian/po/ja.po0000644000000000000000000000450112373124453010542 0ustar # Copyright (C) 2011 Debian Qt/KDE Maintainers # This file is distributed under the same license as the phonon package. # Hideki Yamane , 2011. # msgid "" msgstr "" "Project-Id-Version: phonon 4:4.6.0really4.5.0-2\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 00:51+0300\n" "PO-Revision-Date: 2011-05-01 07:26+0900\n" "Last-Translator: Hideki Yamane \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "警告: Phonon は動作しません" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Phonon のバックエンドが見つかりません" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Phonon (Qt 4 マルチメディアフレームワーク) を使うアプリケーションは、システムに" "ダミーの Phonon バックエンドがインストールされているだけなので音声あるいは映像が" "出力されません。一般的に、これは意図されない設定です。" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "Phonon のマルチメディア機能を完全に復旧するには、このシステムで現在入手可能" "な、実際の Phonon バックエンドパッケージの一つをインストールしてください。" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (recommended)${other_backends}" debian/po/cs.po0000644000000000000000000000434412373124453010562 0ustar # Czech PO debconf template translation of phonon. # Copyright (C) 2010 Michal Simunek # This file is distributed under the same license as the phonon package. # Michal Simunek , 2011. # msgid "" msgstr "" "Project-Id-Version: phonon 4:4.6.0really4.4.4-3\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2011-04-04 17:31+0200\n" "Last-Translator: Michal Simunek \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Upozornění: Phonon není funkční" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Chybí back-end pro Phonon" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Aplikace využívající Phonon (Qt 4 multimediální framework) nebudou " "produkovat žádný audio či video výstup, protože na tomto systému je " "nainstalován fiktivní back-end pro Phonon. To je zpravidla nežádoucí " "nastavení." #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "Chcete-li obnovit úplné funkce Phonon, nainstalujte jeden ze skutečných " "balíčků s back-endem pro Phonon, které jsou v současné době pro tento systém " "dostupné." #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (doporučené)${other_backends}" debian/po/da.po0000644000000000000000000000417412373124453010542 0ustar # Danish translation phonon. # Copyright (C) 2011 phonon & nedenstående oversættere. # This file is distributed under the same license as the phonon package. # Joe Hansen , 2011. # msgid "" msgstr "" "Project-Id-Version: phonon\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2011-04-04 17:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Advarsel: Phonon er ikke operationsdygtig" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Manglende motor for Phonon" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Programmer der bruger Phonon (Qt 4-multimedierammen) vil ikke producere lyd- " "eller videooutput, da der kun er installeret en overgangsmotor på dette " "system. Dette skyldes typisk en fejlkonfiguration." #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "For at gendanne fuld multimedieunderstøttelse til Phonon skal du installere " "en af de korrekte pakker som Phononmotor, der aktuelt er tilgængelige for " "dette system:" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (anbefalet)${other_backends}" debian/po/sv.po0000644000000000000000000000432512373124453010604 0ustar # Translation of phonon debconf template to Swedish # Copyright (C) 2011 Martin Bagge # This file is distributed under the same license as the phonon package. # # Martin Bagge , 2011 msgid "" msgstr "" "Project-Id-Version: phonon\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2011-04-20 22:23+0100\n" "Last-Translator: Martin Bagge / brother \n" "Language-Team: Swedish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Swedish\n" "X-Poedit-Country: Sweden\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Varning: Phonon fungerar ej" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Bakdel för Phonon saknas" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Program som använder Phonon (multimedia-ramverket i QT4) kommer inte att " "kunna spela upp ljud eller visa video eftersom Phonon-bakdelen som är " "installerad på systemet inte tillhandahåller funktionen. Detta kan vanligen " "härledas till felaktiga inställningar." #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "För att återställa funktionerna i Phonon behöver ett av de tillgängliga " "paketen med Phonon-bakdelar installeras:" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (rekommenderad)${other_backends}" debian/po/pt.po0000644000000000000000000000473612373124453010605 0ustar # Translation of phonon debconf messages to Portuguese # Copyright (C) 2011 the phonon's copyright holder # This file is distributed under the same license as the phonon package. # # Américo Monteiro , 2011. msgid "" msgstr "" "Project-Id-Version: phonon 4:4.6.0really4.4.4-3\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2011-04-20 03:24+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" "Language: Pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Aviso: O Phonon não está funcional" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Back-end em falta para o Phonon" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "As aplicações que usam o Phono (a estrutura multimédia do Qt 4) não irão " "produzir saída de áudio ou vídeo porque apenas está instalado um back-end " "fictício do phonon neste sistema. Esta é tipicamente uma configuração não " "desejada.As aplicações que usam o Phono (a estrutura multimédia do Qt 4) não " "irão produzir saída de áudio ou vídeo porque apenas está instalado um back-" "end fictício do phonon " #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "Para restaurar as capacidades multimédia totais do Phonon, instale um dos " "pacotes de back-end reais do Phonon que estão actualmente disponíveis para " "este sistema:" #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (recomendado)${other_backends}" debian/po/de.po0000644000000000000000000000463512373124453010550 0ustar # Translation of Phonon debconf templates to German # This file is distributed under the same license as the phonon package. # Martin Eberhard Schauer , 2011. # msgid "" msgstr "" "Project-Id-Version: phonon 4:4.6.0really4.4.4-3\n" "Report-Msgid-Bugs-To: phonon@packages.debian.org\n" "POT-Creation-Date: 2011-04-04 05:56+0200\n" "PO-Revision-Date: 2011-04-11 09:44+0200\n" "Last-Translator: Martin Eberhard Schauer \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: title #. Description #: ../phonon-backend-null.templates:1001 msgid "Warning: Phonon is not functional" msgstr "Warnung: Phonon ist nicht funktionsfähig" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "Missing back-end for Phonon" msgstr "Fehlendes Backend für Phonon" #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "Applications using Phonon (the Qt 4 multimedia framework) will produce no " "audio or video output, because only a dummy Phonon back-end is installed on " "this system. This is typically an unintended configuration." msgstr "" "Auf diesem System ist nur ein Pseudo-Phonon-Backend installiert. " "Anwendungen, die das Qt4-Multimedia-Rahmenwerk Phonon verwenden, werden " "keine Audio- oder Videoausgabe erzeugen. Typischerweise wird eine solche " "Konfiguration nicht mit Absicht herbeigeführt." #. Type: note #. Description #: ../phonon-backend-null.templates:2001 msgid "" "To restore full Phonon multimedia capabilities, install one of the real " "Phonon back-end packages which are currently available for this system:" msgstr "" "Um die gesamten Multimediafähigkeiten von Phonon erneut verfügbar zu machen, " "installieren Sie bitte eines der richtigen, für Ihr System verfügbaren " "Phonon-Backend-Pakete:" # Zum Leerzeichen: # >> I'm afraid I found a missing space in the template. # > No, indeed. The other_backends variable, if not empty, is prepended # > by a comma. #. Type: note #. Description #. Translators: do not translate variable names #. only translate "(recommended)" (the one in parenthesis) #: ../phonon-backend-null.templates:2001 msgid "${recommended_backend} (recommended)${other_backends}" msgstr "${recommended_backend} (empfohlen)${other_backends}" debian/po/POTFILES.in0000644000000000000000000000007012373124453011362 0ustar [type: gettext/rfc822deb] phonon-backend-null.templates debian/phonon4qt5-backend-null.postinst0000644000000000000000000000010012373124453015342 0ustar #!/bin/sh set -e . /usr/share/debconf/confmodule #DEBHELPER# debian/patches/0000755000000000000000000000000012373124453010621 5ustar debian/patches/series0000644000000000000000000000011412373124453012032 0ustar phonon-inc.patch phonon_is_not_forced_in_KDE.diff findqt4_optional_x11.diff debian/patches/findqt4_optional_x11.diff0000644000000000000000000000107712373124453015427 0ustar From: Pino Toscano From: Modestas Vainius Subject: Qt doesn't expose the X11 headers to the world, so no need to make it required. Forwarded: not-needed Origin: vendor Last-Update: 2012-02-19 --- a/cmake/Qt4ConfigDependentSettings.cmake +++ b/cmake/Qt4ConfigDependentSettings.cmake @@ -27,7 +27,7 @@ IF(UNIX) # on OS X X11 may not be required IF (Q_WS_X11) - FIND_PACKAGE(X11 REQUIRED) + FIND_PACKAGE(X11) ENDIF (Q_WS_X11) FIND_PACKAGE(Threads) SET(QT_QTCORE_LIBRARY ${QT_QTCORE_LIBRARY} ${CMAKE_THREAD_LIBS_INIT}) debian/patches/phonon_is_not_forced_in_KDE.diff0000644000000000000000000000073312373124453017025 0ustar From: Sune Vuorela Subject: Install headers where they were earlier Forwarded: no --- a/includes/CMakeLists.txt +++ b/includes/CMakeLists.txt @@ -91,7 +91,7 @@ install( FILES old/Phonon/VolumeFaderEffect old/Phonon/VolumeFaderInterface old/Phonon/VolumeSlider -DESTINATION ${INCLUDE_INSTALL_DIR}/KDE/Phonon COMPONENT Devel) +DESTINATION ${INCLUDE_INSTALL_DIR}/phonon/Phonon COMPONENT Devel) if (PHONON_BUILD_EXPERIMENTAL) install(FILES debian/patches/phonon-inc.patch0000644000000000000000000000277212373124453013722 0ustar From: Sune Vuorela Subject: Create a magic phonon header Thanks to Matthias Kretz. Forwarded: no Last-Update: 2011-12-20 --- a/phonon/CMakeLists.txt +++ b/phonon/CMakeLists.txt @@ -222,3 +222,6 @@ if (QT_QTDBUS_FOUND AND NOT PHONON_NO_DB install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.${PHONON_LIB_SONAME_CAMEL}.AudioOutput.xml DESTINATION ${DBUS_INTERFACES_INSTALL_DIR}) endif (QT_QTDBUS_FOUND AND NOT PHONON_NO_DBUS) +install(FILES + phonon +DESTINATION ${INCLUDE_INSTALL_DIR}/phonon) --- /dev/null +++ b/phonon/phonon @@ -0,0 +1,32 @@ +#include "abstractaudiooutput.h" +#include "abstractmediastream.h" +#include "abstractvideooutput.h" +#include "addoninterface.h" +#include "audiooutput.h" +#include "audiooutputinterface.h" +#include "backendcapabilities.h" +#include "backendinterface.h" +#include "effect.h" +#include "effectinterface.h" +#include "effectparameter.h" +#include "effectwidget.h" +#include "globaldescriptioncontainer.h" +#include "mediacontroller.h" +#include "medianode.h" +#include "mediaobject.h" +#include "mediaobjectinterface.h" +#include "mediasource.h" +#include "objectdescription.h" +#include "objectdescriptionmodel.h" +#include "path.h" +#include "phonondefs.h" +#include "phononnamespace.h" +#include "platformplugin.h" +#include "seekslider.h" +#include "streaminterface.h" +#include "videoplayer.h" +#include "videowidget.h" +#include "videowidgetinterface.h" +#include "volumefadereffect.h" +#include "volumefaderinterface.h" +#include "volumeslider.h" debian/patches/no_rpath.patch0000644000000000000000000000301012373124453013446 0ustar From: Modestas Vainius , Felix Geyer Subject: Do not set install RPATH to /usr/lib by default Forwarded: no Origin: vendor Last-Update: 2012-03-07 Use proper code in order to avoid setting INSTALL_RPATH to /usr/lib. It is disallowed on Debian systems and is a bad practise in general. We also need to ensure LIB_INSTALL_DIR is absolute before checking. --- a/cmake/FindPhononInternal.cmake +++ b/cmake/FindPhononInternal.cmake @@ -217,10 +217,15 @@ endif(APPLE) # RPATH directories outside the current CMAKE_BINARY_DIR and also the library # install directory. Alex set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) -list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${LIB_INSTALL_DIR}" _isSystemPlatformLibDir) -list(FIND CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "${LIB_INSTALL_DIR}" _isSystemCxxLibDir) +if (IS_ABSOLUTE "${LIB_INSTALL_DIR}") + set(_rpath_abs_lib_install_dir "${LIB_INSTALL_DIR}") +else() + set(_rpath_abs_lib_install_dir "${CMAKE_INSTALL_PREFIX}/${LIB_INSTALL_DIR}") +endif() +list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${_rpath_abs_lib_install_dir}" _isSystemPlatformLibDir) +list(FIND CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "${_rpath_abs_lib_install_dir}" _isSystemCxxLibDir) if("${_isSystemPlatformLibDir}" STREQUAL "-1" AND "${_isSystemCxxLibDir}" STREQUAL "-1") - set(CMAKE_INSTALL_RPATH "${LIB_INSTALL_DIR}") + set(CMAKE_INSTALL_RPATH "${_rpath_abs_lib_install_dir}") endif("${_isSystemPlatformLibDir}" STREQUAL "-1" AND "${_isSystemCxxLibDir}" STREQUAL "-1") debian/control0000644000000000000000000002302212373124453010574 0ustar Source: phonon Section: sound Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Qt/KDE Maintainers Uploaders: Modestas Vainius , Fathi Boudra Build-Depends: automoc, cmake (>= 2.8.7), debhelper (>= 8.1.3~), dpkg-dev (>= 1.15.5), libglib2.0-dev, libpulse-dev (>= 0.9.21), libqt4-dev (>= 4:4.8.1), pkg-kde-tools (>= 0.12), qtbase5-dev, qtscript5-dev, qttools5-dev, libqt5opengl5-dev Standards-Version: 3.9.5 Homepage: http://phonon.kde.org/ Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-kde/kde-req/phonon.git Vcs-Git: git://anonscm.debian.org/pkg-kde/kde-req/phonon.git Package: phonon Architecture: any Multi-Arch: same Depends: libphonon4 (>= ${source:Version}), ${misc:Depends}, ${phonon:Recommended-Backend} | phonon-backend Suggests: phonon-backend-vlc, ${phonon:Recommended-Backend} Breaks: phonon-backend-xine (<< 4:4.6.0.0) Description: multimedia framework from KDE - metapackage Phonon is the Qt 4 multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This metapackage ensures that the system has a working Phonon configuration installed (the core library and at least one back-end). Package: libphonon-dev Architecture: any Section: libdevel Depends: libphonon4 (= ${binary:Version}), phonon-backend-null | phonon, ${misc:Depends}, ${sameVersionDep:libqt4-dev:libphonon4}, ${shlibs:Depends} Description: multimedia framework from KDE - development files Phonon is the Qt 4 multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This package contains the development files needed to build Qt 4 applications using the Phonon cross-platform multimedia framework. Package: libphonon4 Architecture: any Multi-Arch: same Section: libs Pre-Depends: ${misc:Pre-Depends} Depends: ${misc:Depends}, ${shlibs:Depends} Breaks: phonon-backend-xine (<< 4:4.6.0really4.3.80) Description: multimedia framework from KDE - core library Phonon is the Qt 4 multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This package contains the core library of the Phonon cross-platform multimedia framework from KDE. It is required to run applications that use Phonon. Package: libphononexperimental-dev Architecture: any Section: libdevel Depends: libphononexperimental4 (= ${binary:Version}), ${misc:Depends}, ${sameVersionDep:libqt4-dev:libphononexperimental4} Replaces: libphonon-dev (<< 4:4.6.0really4.4.4) Breaks: libphonon-dev (<< 4:4.6.0really4.4.4) Description: multimedia framework from KDE - experimental development files Phonon is the Qt 4 multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This package contains the development files needed to build Phonon back-ends or internal applications which need the Phonon-Experimental library. Third-party applications should not depend on this library. Please read README.Debian if you are considering a build-dependency on this package. Package: libphononexperimental4 Architecture: any Multi-Arch: same Section: libs Pre-Depends: ${misc:Pre-Depends} Depends: ${misc:Depends}, ${shlibs:Depends} Provides: phononexperimental-abi-1 Replaces: libphonon4 (<< 4:4.6.0really4.3.80) Breaks: libphonon4 (<< 4:4.6.0really4.3.80) Description: multimedia framework from KDE - experimental library (internal) Phonon is the Qt 4 multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This package contains the Phonon-Experimental library, which might be needed by Phonon back-ends or other internal applications. Third-party applications should not depend on this library. Please read README.Debian before using this library. Package: phonon-backend-null Architecture: any Multi-Arch: same Provides: phonon-backend Depends: libphonon4, ${misc:Depends} Conflicts: phonon-backend Description: multimedia framework from KDE - null back-end (no real back-end) Phonon is the Qt 4 multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This package does not provide any real Phonon back-end. It can be used to disable Phonon audio/video capabilities. Please note that Phonon behavior with this package installed has not been well tested. ### Phonon Qt 5 Package: phonon4qt5 Architecture: any Multi-Arch: same Depends: libphonon4qt5-4 (>= ${source:Version}), ${misc:Depends}, ${phonon:Recommended-Backend-qt5} | phonon4qt5-backend Suggests: phonon4qt5-backend-vlc, ${phonon:Recommended-Backend-qt5} Description: multimedia framework from KF5 - metapackage Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This metapackage ensures that the system has a working Phonon configuration installed (the core library and at least one back-end). . This package is for the version compiled for Qt 5. Package: libphonon4qt5-dev Architecture: any Section: libdevel Depends: libphonon4qt5-4 (= ${binary:Version}), phonon4qt5-backend-null | phonon4qt5, ${misc:Depends}, ${sameVersionDep:qtbase5-dev:libphonon4qt5-4}, ${shlibs:Depends} Description: multimedia framework from KF5 - development files Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This package contains the development files needed to build Qt applications using the Phonon cross-platform multimedia framework. . This package is for the version compiled for Qt 5. Package: libphonon4qt5-4 Architecture: any Multi-Arch: same Section: libs Pre-Depends: ${misc:Pre-Depends} Depends: ${misc:Depends}, ${shlibs:Depends} Description: multimedia framework from KF5 - core library Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This package contains the core library of the Phonon cross-platform multimedia framework from KDE. It is required to run applications that use Phonon. . This package is for the version compiled for Qt 5. Package: libphonon4qt5experimental-dev Architecture: any Section: libdevel Depends: libphonon4qt5experimental4 (= ${binary:Version}), ${misc:Depends}, ${sameVersionDep:qtbase5-dev:libphonon4qt5experimental4} Description: multimedia framework from KF5 - experimental development files Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This package contains the development files needed to build Phonon back-ends or internal applications which need the Phonon-Experimental library. Third-party applications should not depend on this library. Please read README.Debian if you are considering a build-dependency on this package. . This package is for the version compiled for Qt 5. Package: libphonon4qt5experimental4 Architecture: any Multi-Arch: same Section: libs Pre-Depends: ${misc:Pre-Depends} Depends: ${misc:Depends}, ${shlibs:Depends} Provides: phononexperimental-abi-qt5-1 Description: multimedia framework from KF5 - experimental library (internal) Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This package contains the Phonon-Experimental library, which might be needed by Phonon back-ends or other internal applications. Third-party applications should not depend on this library. Please read README.Debian before using this library. . This package is for the version compiled for Qt 5. Package: phonon4qt5-backend-null Architecture: any Multi-Arch: same Provides: phonon4qt5-backend Depends: libphonon4qt5-4, ${misc:Depends} Description: multimedia framework from KF5 - null back-end (no real back-end) Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This package does not provide any real Phonon back-end. It can be used to disable Phonon audio/video capabilities. Please note that Phonon behavior with this package installed has not been well tested. . This package is for the version compiled for Qt 5. Package: phonon-dbg Priority: extra Architecture: any Multi-Arch: same Section: debug Depends: libphonon4 (= ${binary:Version}), ${misc:Depends} Suggests: libphononexperimental4 (= ${binary:Version}), libphonon4qt5-4 (= ${binary:Version}), libphonon4qt5experimental4 (= ${binary:Version}) Description: multimedia framework from KDE - debugging symbols Phonon is the Qt 4 multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. . This package contains debugging symbols for the Phonon library and its main back-ends. Install it if you want to report a crash or debug a problem with Phonon or its back-ends. debian/phonon-backend-null.postrm0000644000000000000000000000063212373124453014277 0ustar #!/bin/sh set -e case "$1" in *upgrade) # Do not touch phonon-backend-null/isnt_functional on upgrades ;; *) if [ -e /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule db_fset phonon-backend-null/isnt_functional seen false || true db_unregister phonon-backend-null/isnt_functional || true fi ;; esac #DEBHELPER# debian/phonon.postinst0000644000000000000000000000010012373124453012267 0ustar #!/bin/sh set -e . /usr/share/debconf/confmodule #DEBHELPER# debian/libphonon-dev.links0000644000000000000000000000005212373124453012775 0ustar usr/include/phonon usr/include/qt4/phonon debian/libphonon4.symbols0000644000000000000000000013051412373125555012670 0ustar # SymbolsHelper-Confirmed: 4:4.7.80 amd64 libphonon.so.4 libphonon4 #MINVER# | phonon, libphonon4 #MINVER# * Build-Depends-Package: libphonon-dev _ZN6Phonon10SeekSlider11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon10SeekSlider11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon10SeekSlider11setIconSizeERK5QSize@Base 4:4.2.0 _ZN6Phonon10SeekSlider11setPageStepEi@Base 4:4.2.0 _ZN6Phonon10SeekSlider11setTrackingEb@Base 4:4.2.0 _ZN6Phonon10SeekSlider13setSingleStepEi@Base 4:4.2.0 _ZN6Phonon10SeekSlider14setIconVisibleEb@Base 4:4.2.0 _ZN6Phonon10SeekSlider14setMediaObjectEPNS_11MediaObjectE@Base 4:4.2.0 _ZN6Phonon10SeekSlider14setOrientationEN2Qt11OrientationE@Base 4:4.2.0 _ZN6Phonon10SeekSlider16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon10SeekSliderC1EP7QWidget@Base 4:4.2.0 _ZN6Phonon10SeekSliderC1EPNS_11MediaObjectEP7QWidget@Base 4:4.2.0 _ZN6Phonon10SeekSliderC2EP7QWidget@Base 4:4.2.0 _ZN6Phonon10SeekSliderC2EPNS_11MediaObjectEP7QWidget@Base 4:4.2.0 _ZN6Phonon10SeekSliderD0Ev@Base 4:4.2.0 _ZN6Phonon10SeekSliderD1Ev@Base 4:4.2.0 _ZN6Phonon10SeekSliderD2Ev@Base 4:4.2.0 _ZN6Phonon10createPathEPNS_9MediaNodeES1_@Base 4:4.2.0 _ZN6Phonon11AudioOutput11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon11AudioOutput11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon11AudioOutput12mutedChangedEb@Base 4:4.2.0 (subst)_ZN6Phonon11AudioOutput13volumeChangedE{qreal}@Base 4:4.2.0 _ZN6Phonon11AudioOutput15setOutputDeviceERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE0EEE@Base 4:4.2.0 (subst)_ZN6Phonon11AudioOutput16setVolumeDecibelE{qreal}@Base 4:4.2.0 _ZN6Phonon11AudioOutput16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon11AudioOutput19outputDeviceChangedERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE0EEE@Base 4:4.2.0 _ZN6Phonon11AudioOutput7setNameERK7QString@Base 4:4.2.0 _ZN6Phonon11AudioOutput8setMutedEb@Base 4:4.2.0 (subst)_ZN6Phonon11AudioOutput9setVolumeE{qreal}@Base 4:4.2.0 _ZN6Phonon11AudioOutputC1ENS_8CategoryEP7QObject@Base 4:4.2.0 _ZN6Phonon11AudioOutputC1EP7QObject@Base 4:4.2.0 _ZN6Phonon11AudioOutputC2ENS_8CategoryEP7QObject@Base 4:4.2.0 _ZN6Phonon11AudioOutputC2EP7QObject@Base 4:4.2.0 _ZN6Phonon11AudioOutputD0Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon11AudioOutputD1Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon11AudioOutputD2Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon11MediaObject10clearQueueEv@Base 4:4.2.0 _ZN6Phonon11MediaObject11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon11MediaObject11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon11MediaObject12bufferStatusEi@Base 4:4.2.0 _ZN6Phonon11MediaObject12stateChangedENS_5StateES1_@Base 4:4.2.0 _ZN6Phonon11MediaObject13aboutToFinishEv@Base 4:4.2.0 _ZN6Phonon11MediaObject15hasVideoChangedEb@Base 4:4.2.0 _ZN6Phonon11MediaObject15metaDataChangedEv@Base 4:4.2.0 _ZN6Phonon11MediaObject15seekableChangedEb@Base 4:4.2.0 _ZN6Phonon11MediaObject15setTickIntervalEi@Base 4:4.2.0 _ZN6Phonon11MediaObject16setCurrentSourceERKNS_11MediaSourceE@Base 4:4.2.0 _ZN6Phonon11MediaObject16setPrefinishMarkEi@Base 4:4.2.0 _ZN6Phonon11MediaObject16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon11MediaObject16totalTimeChangedEx@Base 4:4.2.0 _ZN6Phonon11MediaObject17setTransitionTimeEi@Base 4:4.2.0 _ZN6Phonon11MediaObject20currentSourceChangedERKNS_11MediaSourceE@Base 4:4.2.0 _ZN6Phonon11MediaObject20prefinishMarkReachedEi@Base 4:4.2.0 _ZN6Phonon11MediaObject4playEv@Base 4:4.2.0 1 _ZN6Phonon11MediaObject4seekEx@Base 4:4.2.0 1 _ZN6Phonon11MediaObject4stopEv@Base 4:4.2.0 1 _ZN6Phonon11MediaObject4tickEx@Base 4:4.2.0 _ZN6Phonon11MediaObject5clearEv@Base 4:4.3.0 _ZN6Phonon11MediaObject5pauseEv@Base 4:4.2.0 1 _ZN6Phonon11MediaObject7enqueueERK5QListI4QUrlE@Base 4:4.2.0 _ZN6Phonon11MediaObject7enqueueERK5QListINS_11MediaSourceEE@Base 4:4.2.0 _ZN6Phonon11MediaObject7enqueueERKNS_11MediaSourceE@Base 4:4.2.0 _ZN6Phonon11MediaObject8finishedEv@Base 4:4.2.0 _ZN6Phonon11MediaObject8setQueueERK5QListI4QUrlE@Base 4:4.2.0 _ZN6Phonon11MediaObject8setQueueERK5QListINS_11MediaSourceEE@Base 4:4.2.0 _ZN6Phonon11MediaObjectC1EP7QObject@Base 4:4.2.0 _ZN6Phonon11MediaObjectC2EP7QObject@Base 4:4.2.0 _ZN6Phonon11MediaObjectD0Ev@Base 4:4.2.0 _ZN6Phonon11MediaObjectD1Ev@Base 4:4.2.0 _ZN6Phonon11MediaObjectD2Ev@Base 4:4.2.0 _ZN6Phonon11MediaSource13setAutoDeleteEb@Base 4:4.2.0 _ZN6Phonon11MediaSourceC1ENS_15CaptureCategoryE@Base 4:4.7.0.0 _ZN6Phonon11MediaSourceC1ENS_7Capture10DeviceTypeENS_15CaptureCategoryE@Base 4:4.6.0really4.5.0 _ZN6Phonon11MediaSourceC1ENS_8DiscTypeERK7QString@Base 4:4.2.0 _ZN6Phonon11MediaSourceC1EP9QIODevice@Base 4:4.2.0 _ZN6Phonon11MediaSourceC1EPNS_19AbstractMediaStreamE@Base 4:4.2.0 _ZN6Phonon11MediaSourceC1ERK4QUrl@Base 4:4.2.0 _ZN6Phonon11MediaSourceC1ERK5QPairI10QByteArray7QStringE@Base 4:4.6.0really4.4.3 _ZN6Phonon11MediaSourceC1ERK7QString@Base 4:4.2.0 _ZN6Phonon11MediaSourceC1ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE4EEE@Base 4:4.6.0really4.4.3 _ZN6Phonon11MediaSourceC1ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE5EEE@Base 4:4.6.0really4.4.3 _ZN6Phonon11MediaSourceC1ERKS0_@Base 4:4.2.0 _ZN6Phonon11MediaSourceC1ERNS_18MediaSourcePrivateE@Base 4:4.2.0 _ZN6Phonon11MediaSourceC1Ev@Base 4:4.2.0 _ZN6Phonon11MediaSourceC2ENS_15CaptureCategoryE@Base 4:4.7.0.0 _ZN6Phonon11MediaSourceC2ENS_7Capture10DeviceTypeENS_15CaptureCategoryE@Base 4:4.6.0really4.5.0 _ZN6Phonon11MediaSourceC2ENS_8DiscTypeERK7QString@Base 4:4.2.0 _ZN6Phonon11MediaSourceC2EP9QIODevice@Base 4:4.2.0 _ZN6Phonon11MediaSourceC2EPNS_19AbstractMediaStreamE@Base 4:4.2.0 _ZN6Phonon11MediaSourceC2ERK4QUrl@Base 4:4.2.0 _ZN6Phonon11MediaSourceC2ERK5QPairI10QByteArray7QStringE@Base 4:4.6.0really4.4.3 _ZN6Phonon11MediaSourceC2ERK7QString@Base 4:4.2.0 _ZN6Phonon11MediaSourceC2ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE4EEE@Base 4:4.6.0really4.4.3 _ZN6Phonon11MediaSourceC2ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE5EEE@Base 4:4.6.0really4.4.3 _ZN6Phonon11MediaSourceC2ERKS0_@Base 4:4.2.0 _ZN6Phonon11MediaSourceC2ERNS_18MediaSourcePrivateE@Base 4:4.2.0 _ZN6Phonon11MediaSourceC2Ev@Base 4:4.2.0 _ZN6Phonon11MediaSourceD1Ev@Base 4:4.2.0 _ZN6Phonon11MediaSourceD2Ev@Base 4:4.2.0 _ZN6Phonon11MediaSourceaSERKS0_@Base 4:4.2.0 _ZN6Phonon11PulseStream11muteChangedEb@Base 4:4.6.0really4.4.1 _ZN6Phonon11PulseStream11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.6.0really4.4.1 _ZN6Phonon11PulseStream11qt_metacastEPKc@Base 4:4.6.0really4.4.1 _ZN6Phonon11PulseStream11usingDeviceEi@Base 4:4.6.0really4.4.1 (subst)_ZN6Phonon11PulseStream13volumeChangedE{qreal}@Base 4:4.6.0really4.4.1 (subst)_ZN6Phonon11PulseStream15setCachedVolumeE{qreal}@Base 4:4.7.0.0 _ZN6Phonon11PulseStream16staticMetaObjectE@Base 4:4.6.0really4.4.1 _ZN6Phonon11PulseStream17applyCachedVolumeEv@Base 4:4.7.0.0 _ZN6Phonon11PulseStream7setMuteEb@Base 4:4.6.0really4.4.1 _ZN6Phonon11PulseStream8setIndexEj@Base 4:4.6.0really4.4.1 _ZN6Phonon11PulseStream9setDeviceEi@Base 4:4.6.0really4.4.1 _ZN6Phonon11PulseStream9setVolumeEPK10pa_cvolume@Base 4:4.6.0really4.4.1 _ZN6Phonon11PulseStreamC1E7QStringS1_@Base 4:4.7.0.0 _ZN6Phonon11PulseStreamC2E7QStringS1_@Base 4:4.7.0.0 _ZN6Phonon11PulseStreamD0Ev@Base 4:4.6.0really4.4.1 _ZN6Phonon11PulseStreamD1Ev@Base 4:4.6.0really4.4.1 _ZN6Phonon11PulseStreamD2Ev@Base 4:4.6.0really4.4.1 _ZN6Phonon11VideoPlayer11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon11VideoPlayer11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon11VideoPlayer16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon11VideoPlayer4loadERKNS_11MediaSourceE@Base 4:4.2.0 _ZN6Phonon11VideoPlayer4playERKNS_11MediaSourceE@Base 4:4.2.0 1 _ZN6Phonon11VideoPlayer4playEv@Base 4:4.2.0 1 _ZN6Phonon11VideoPlayer4seekEx@Base 4:4.2.0 1 _ZN6Phonon11VideoPlayer4stopEv@Base 4:4.2.0 1 _ZN6Phonon11VideoPlayer5eventEP6QEvent@Base 4:4.6.0really4.4.3 _ZN6Phonon11VideoPlayer5pauseEv@Base 4:4.2.0 1 _ZN6Phonon11VideoPlayer8finishedEv@Base 4:4.2.0 _ZN6Phonon11VideoPlayer9setVolumeEf@Base 4:4.2.0 _ZN6Phonon11VideoPlayerC1ENS_8CategoryEP7QWidget@Base 4:4.2.0 _ZN6Phonon11VideoPlayerC1EP7QWidget@Base 4:4.3.0 _ZN6Phonon11VideoPlayerC2ENS_8CategoryEP7QWidget@Base 4:4.2.0 _ZN6Phonon11VideoPlayerC2EP7QWidget@Base 4:4.3.0 _ZN6Phonon11VideoPlayerD0Ev@Base 4:4.2.0 _ZN6Phonon11VideoPlayerD1Ev@Base 4:4.2.0 _ZN6Phonon11VideoPlayerD2Ev@Base 4:4.2.0 _ZN6Phonon11VideoWidget11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon11VideoWidget11qt_metacastEPKc@Base 4:4.2.0 (subst)_ZN6Phonon11VideoWidget11setContrastE{qreal}@Base 4:4.2.0 _ZN6Phonon11VideoWidget12setScaleModeENS0_9ScaleModeE@Base 4:4.2.0 (subst)_ZN6Phonon11VideoWidget13setBrightnessE{qreal}@Base 4:4.2.0 _ZN6Phonon11VideoWidget13setFullScreenEb@Base 4:4.2.0 (subst)_ZN6Phonon11VideoWidget13setSaturationE{qreal}@Base 4:4.2.0 _ZN6Phonon11VideoWidget14exitFullScreenEv@Base 4:4.2.0 _ZN6Phonon11VideoWidget14mouseMoveEventEP11QMouseEvent@Base 4:4.2.0 _ZN6Phonon11VideoWidget14setAspectRatioENS0_11AspectRatioE@Base 4:4.2.0 _ZN6Phonon11VideoWidget15enterFullScreenEv@Base 4:4.2.0 _ZN6Phonon11VideoWidget16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon11VideoWidget5eventEP6QEvent@Base 4:4.2.0 (subst)_ZN6Phonon11VideoWidget6setHueE{qreal}@Base 4:4.2.0 _ZN6Phonon11VideoWidgetC1EP7QWidget@Base 4:4.2.0 _ZN6Phonon11VideoWidgetC1ERNS_18VideoWidgetPrivateEP7QWidget@Base 4:4.2.0 _ZN6Phonon11VideoWidgetC2EP7QWidget@Base 4:4.2.0 _ZN6Phonon11VideoWidgetC2ERNS_18VideoWidgetPrivateEP7QWidget@Base 4:4.2.0 _ZN6Phonon11VideoWidgetD0Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon11VideoWidgetD1Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon11VideoWidgetD2Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon12EffectWidget11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon12EffectWidget11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon12EffectWidget16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon12EffectWidgetC1EPNS_6EffectEP7QWidget@Base 4:4.2.0 _ZN6Phonon12EffectWidgetC2EPNS_6EffectEP7QWidget@Base 4:4.2.0 _ZN6Phonon12EffectWidgetD0Ev@Base 4:4.2.0 _ZN6Phonon12EffectWidgetD1Ev@Base 4:4.2.0 _ZN6Phonon12EffectWidgetD2Ev@Base 4:4.2.0 _ZN6Phonon12GlobalConfig22setHideAdvancedDevicesEb@Base 4:4.6.0really4.3.80 _ZN6Phonon12GlobalConfig27setAudioOutputDeviceListForENS_8CategoryE5QListIiE@Base 4:4.6.0really4.3.80 _ZN6Phonon12GlobalConfig28setAudioCaptureDeviceListForENS_15CaptureCategoryE5QListIiE@Base 4:4.6.0really4.5.0 _ZN6Phonon12GlobalConfig28setAudioCaptureDeviceListForENS_8CategoryE5QListIiE@Base 4:4.6.0really4.3.80 _ZN6Phonon12GlobalConfig28setVideoCaptureDeviceListForENS_15CaptureCategoryE5QListIiE@Base 4:4.6.0really4.5.0 _ZN6Phonon12GlobalConfig28setVideoCaptureDeviceListForENS_8CategoryE5QListIiE@Base 4:4.6.0really4.5.0 _ZN6Phonon12GlobalConfigC1Ev@Base 4:4.3.0 _ZN6Phonon12GlobalConfigC2Ev@Base 4:4.3.0 _ZN6Phonon12GlobalConfigD0Ev@Base 4:4.3.0 _ZN6Phonon12GlobalConfigD1Ev@Base 4:4.3.0 _ZN6Phonon12GlobalConfigD2Ev@Base 4:4.3.0 _ZN6Phonon12PulseSupport11getInstanceEv@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupport11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupport11qt_metacastEPKc@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupport13setOutputMuteE7QStringb@Base 4:4.6.0really4.4.1 _ZN6Phonon12PulseSupport13setOutputNameE7QStringS1_@Base 4:4.6.0really4.4.1 _ZN6Phonon12PulseSupport15connectToDaemonEv@Base 4:4.6.0really4.4.1 _ZN6Phonon12PulseSupport15setOutputDeviceE7QStringi@Base 4:4.6.0really4.3.80 (subst)_ZN6Phonon12PulseSupport15setOutputVolumeE7QString{qreal}@Base 4:4.6.0really4.4.1 _ZN6Phonon12PulseSupport16clearStreamCacheE7QString@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupport16setCaptureDeviceE7QStringi@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupport16staticMetaObjectE@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupport17getInstanceOrNullEb@Base 4:4.7.80 _ZN6Phonon12PulseSupport20registerOutputStreamE7QStringNS_8CategoryE@Base 4:4.6.0really4.4.1 _ZN6Phonon12PulseSupport21registerCaptureStreamE7QStringNS_15CaptureCategoryE@Base 4:4.6.0really4.5.0 _ZN6Phonon12PulseSupport21registerCaptureStreamE7QStringNS_8CategoryE@Base 4:4.6.0really4.4.1 _ZN6Phonon12PulseSupport22setupStreamEnvironmentE7QString@Base 4:4.7.0.0 _ZN6Phonon12PulseSupport24objectDescriptionChangedENS_21ObjectDescriptionTypeE@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupport28emitObjectDescriptionChangedENS_21ObjectDescriptionTypeE@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupport34setOutputDevicePriorityForCategoryENS_8CategoryE5QListIiE@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupport35setCaptureDevicePriorityForCategoryENS_15CaptureCategoryE5QListIiE@Base 4:4.6.0really4.5.0 _ZN6Phonon12PulseSupport35setCaptureDevicePriorityForCategoryENS_8CategoryE5QListIiE@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupport5debugEv@Base 4:4.6.0really4.4.2 _ZN6Phonon12PulseSupport6enableEb@Base 4:4.6.0really4.4.0 _ZN6Phonon12PulseSupport8isActiveEv@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupport8shutdownEv@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupportC1Ev@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupportC2Ev@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupportD0Ev@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupportD1Ev@Base 4:4.6.0really4.3.80 _ZN6Phonon12PulseSupportD2Ev@Base 4:4.6.0really4.3.80 _ZN6Phonon12VolumeSlider11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon12VolumeSlider11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon12VolumeSlider11setIconSizeERK5QSize@Base 4:4.2.0 _ZN6Phonon12VolumeSlider11setPageStepEi@Base 4:4.2.0 _ZN6Phonon12VolumeSlider11setTrackingEb@Base 4:4.2.0 _ZN6Phonon12VolumeSlider13setSingleStepEi@Base 4:4.2.0 _ZN6Phonon12VolumeSlider14setAudioOutputEPNS_11AudioOutputE@Base 4:4.2.0 _ZN6Phonon12VolumeSlider14setMuteVisibleEb@Base 4:4.2.0 _ZN6Phonon12VolumeSlider14setOrientationEN2Qt11OrientationE@Base 4:4.2.0 (subst)_ZN6Phonon12VolumeSlider16setMaximumVolumeE{qreal}@Base 4:4.2.0 _ZN6Phonon12VolumeSlider16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon12VolumeSliderC1EP7QWidget@Base 4:4.2.0 _ZN6Phonon12VolumeSliderC1EPNS_11AudioOutputEP7QWidget@Base 4:4.2.0 _ZN6Phonon12VolumeSliderC2EP7QWidget@Base 4:4.2.0 _ZN6Phonon12VolumeSliderC2EPNS_11AudioOutputEP7QWidget@Base 4:4.2.0 _ZN6Phonon12VolumeSliderD0Ev@Base 4:4.2.0 _ZN6Phonon12VolumeSliderD1Ev@Base 4:4.2.0 _ZN6Phonon12VolumeSliderD2Ev@Base 4:4.2.0 _ZN6Phonon12createPlayerENS_8CategoryERKNS_11MediaSourceE@Base 4:4.2.0 _ZN6Phonon13phononVersionEv@Base 4:4.2.0 _ZN6Phonon15AudioDataOutput10endOfMediaEi@Base 4:4.6.0really4.3.80 _ZN6Phonon15AudioDataOutput11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.6.0really4.3.80 _ZN6Phonon15AudioDataOutput11qt_metacastEPKc@Base 4:4.6.0really4.3.80 _ZN6Phonon15AudioDataOutput11setDataSizeEi@Base 4:4.6.0really4.3.80 _ZN6Phonon15AudioDataOutput16staticMetaObjectE@Base 4:4.6.0really4.3.80 _ZN6Phonon15AudioDataOutput9dataReadyERK4QMapINS0_7ChannelE7QVectorIsEE@Base 4:4.6.0really4.3.80 _ZN6Phonon15AudioDataOutputC1EP7QObject@Base 4:4.6.0really4.3.80 _ZN6Phonon15AudioDataOutputC2EP7QObject@Base 4:4.6.0really4.3.80 _ZN6Phonon15AudioDataOutputD0Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon15AudioDataOutputD1Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon15AudioDataOutputD2Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon15EffectParameterC1ERKS0_@Base 4:4.2.0 _ZN6Phonon15EffectParameterC1EiRK7QString6QFlagsINS0_4HintEERK8QVariantS9_S9_RK5QListIS7_ES3_@Base 4:4.2.0 _ZN6Phonon15EffectParameterC1Ev@Base 4:4.2.0 _ZN6Phonon15EffectParameterC2ERKS0_@Base 4:4.2.0 _ZN6Phonon15EffectParameterC2EiRK7QString6QFlagsINS0_4HintEERK8QVariantS9_S9_RK5QListIS7_ES3_@Base 4:4.2.0 _ZN6Phonon15EffectParameterC2Ev@Base 4:4.2.0 _ZN6Phonon15EffectParameterD1Ev@Base 4:4.2.0 _ZN6Phonon15EffectParameterD2Ev@Base 4:4.2.0 _ZN6Phonon15EffectParameteraSERKS0_@Base 4:4.2.0 _ZN6Phonon15MediaController11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon15MediaController11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon15MediaController12angleChangedEi@Base 4:4.2.0 _ZN6Phonon15MediaController12titleChangedEi@Base 4:4.2.0 _ZN6Phonon15MediaController13previousTitleEv@Base 4:4.2.0 _ZN6Phonon15MediaController14chapterChangedEi@Base 4:4.2.0 _ZN6Phonon15MediaController14setCurrentMenuENS0_14NavigationMenuE@Base 4:4.6.0really4.5.0 _ZN6Phonon15MediaController15setCurrentAngleEi@Base 4:4.2.0 _ZN6Phonon15MediaController15setCurrentTitleEi@Base 4:4.2.0 _ZN6Phonon15MediaController15setSubtitleFontERK5QFont@Base 4:4.7.0.0 _ZN6Phonon15MediaController16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon15MediaController17setAutoplayTitlesEb@Base 4:4.2.0 _ZN6Phonon15MediaController17setCurrentChapterEi@Base 4:4.2.0 _ZN6Phonon15MediaController18setCurrentSubtitleERK4QUrl@Base 4:4.7.0.0 _ZN6Phonon15MediaController18setCurrentSubtitleERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE3EEE@Base 4:4.2.0 _ZN6Phonon15MediaController19setSubtitleEncodingERK7QString@Base 4:4.7.0.0 _ZN6Phonon15MediaController21availableMenusChangedE5QListINS0_14NavigationMenuEE@Base 4:4.6.0really4.5.0 _ZN6Phonon15MediaController21setSubtitleAutodetectEb@Base 4:4.7.0.0 _ZN6Phonon15MediaController22availableAnglesChangedEi@Base 4:4.2.0 _ZN6Phonon15MediaController22availableTitlesChangedEi@Base 4:4.2.0 _ZN6Phonon15MediaController22navigationMenuToStringENS0_14NavigationMenuE@Base 4:4.6.0really4.5.0 _ZN6Phonon15MediaController22setCurrentAudioChannelERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE2EEE@Base 4:4.2.0 _ZN6Phonon15MediaController24availableChaptersChangedEi@Base 4:4.2.0 _ZN6Phonon15MediaController25availableSubtitlesChangedEv@Base 4:4.2.0 _ZN6Phonon15MediaController29availableAudioChannelsChangedEv@Base 4:4.2.0 _ZN6Phonon15MediaController9nextTitleEv@Base 4:4.2.0 _ZN6Phonon15MediaControllerC1EPNS_11MediaObjectE@Base 4:4.2.0 _ZN6Phonon15MediaControllerC2EPNS_11MediaObjectE@Base 4:4.2.0 _ZN6Phonon15MediaControllerD0Ev@Base 4:4.2.0 _ZN6Phonon15MediaControllerD1Ev@Base 4:4.2.0 _ZN6Phonon15MediaControllerD2Ev@Base 4:4.2.0 _ZN6Phonon15StreamInterface10enoughDataEv@Base 4:4.2.0 _ZN6Phonon15StreamInterface10seekStreamEx@Base 4:4.2.0 _ZN6Phonon15StreamInterface15connectToSourceERKNS_11MediaSourceE@Base 4:4.2.0 _ZN6Phonon15StreamInterface5resetEv@Base 4:4.2.0 _ZN6Phonon15StreamInterface8needDataEv@Base 4:4.2.0 _ZN6Phonon15StreamInterfaceC1Ev@Base 4:4.2.0 _ZN6Phonon15StreamInterfaceC2Ev@Base 4:4.2.0 _ZN6Phonon15StreamInterfaceD0Ev@Base 4:4.2.0 _ZN6Phonon15StreamInterfaceD1Ev@Base 4:4.2.0 _ZN6Phonon15StreamInterfaceD2Ev@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivate12addInputPathERKNS_4PathE@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivate13addOutputPathERKNS_4PathE@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivate13backendObjectEv@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivate15removeInputPathERKNS_4PathE@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivate16removeOutputPathERKNS_4PathE@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivate19deleteBackendObjectEv@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivate21addDestructionHandlerEPNS_27MediaNodeDestructionHandlerE@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivate24removeDestructionHandlerEPNS_27MediaNodeDestructionHandlerE@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivateC1ENS0_6CastIdE@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivateC2ENS0_6CastIdE@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivateD0Ev@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivateD1Ev@Base 4:4.2.0 _ZN6Phonon16MediaNodePrivateD2Ev@Base 4:4.2.0 _ZN6Phonon16categoryToStringENS_15CaptureCategoryE@Base 4:4.6.0really4.5.0 _ZN6Phonon16categoryToStringENS_8CategoryE@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffect11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffect11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffect12setFadeCurveENS0_9FadeCurveE@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffect16setVolumeDecibelEd@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffect16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffect6fadeInEi@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffect6fadeToEfi@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffect7fadeOutEi@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffect9setVolumeEf@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffectC1EP7QObject@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffectC2EP7QObject@Base 4:4.2.0 _ZN6Phonon17VolumeFaderEffectD0Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon17VolumeFaderEffectD1Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon17VolumeFaderEffectD2Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon17registerMetaTypesEv@Base 4:4.6.0really4.4.3 _ZN6Phonon18MediaObjectPrivate15_k_stateChangedENS_5StateES1_@Base 4:4.2.0 _ZN6Phonon18MediaObjectPrivate18setupBackendObjectEv@Base 4:4.2.0 _ZN6Phonon18MediaSourcePrivate16setCaptureDeviceENS_7Capture10DeviceTypeENS_15CaptureCategoryE@Base 4:4.6.0really4.5.0 _ZN6Phonon18MediaSourcePrivate17setCaptureDevicesENS_15CaptureCategoryE@Base 4:4.7.0.0 (optional=templinst)_ZN6Phonon18MediaSourcePrivate17setCaptureDevicesERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE4EEERKNS1_ILS2_5EEE@Base 4:4.6.0really4.5.0 _ZN6Phonon18MediaSourcePrivate9setStreamEPNS_19AbstractMediaStreamE@Base 4:4.2.0 _ZN6Phonon18MediaSourcePrivateD0Ev@Base 4:4.2.0 _ZN6Phonon18MediaSourcePrivateD1Ev@Base 4:4.2.0 _ZN6Phonon18MediaSourcePrivateD2Ev@Base 4:4.2.0 _ZN6Phonon19AbstractAudioOutput11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon19AbstractAudioOutput11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon19AbstractAudioOutput16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon19AbstractAudioOutputC1ERNS_26AbstractAudioOutputPrivateEP7QObject@Base 4:4.2.0 _ZN6Phonon19AbstractAudioOutputC2ERNS_26AbstractAudioOutputPrivateEP7QObject@Base 4:4.2.0 _ZN6Phonon19AbstractAudioOutputD0Ev@Base 4:4.2.0 _ZN6Phonon19AbstractAudioOutputD1Ev@Base 4:4.2.0 _ZN6Phonon19AbstractAudioOutputD2Ev@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStream10enoughDataEv@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStream10seekStreamEx@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStream11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStream11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStream13setStreamSizeEx@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStream16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStream17setStreamSeekableEb@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStream5errorENS_9ErrorTypeERK7QString@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStream9endOfDataEv@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStream9writeDataERK10QByteArray@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStreamC1EP7QObject@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStreamC1ERNS_26AbstractMediaStreamPrivateEP7QObject@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStreamC2EP7QObject@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStreamC2ERNS_26AbstractMediaStreamPrivateEP7QObject@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStreamD0Ev@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStreamD1Ev@Base 4:4.2.0 _ZN6Phonon19AbstractMediaStreamD2Ev@Base 4:4.2.0 _ZN6Phonon19AbstractVideoOutputC1ERNS_26AbstractVideoOutputPrivateE@Base 4:4.2.0 _ZN6Phonon19AbstractVideoOutputC2ERNS_26AbstractVideoOutputPrivateE@Base 4:4.2.0 _ZN6Phonon19AbstractVideoOutputD0Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon19AbstractVideoOutputD1Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon19AbstractVideoOutputD2Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon19BackendCapabilities18availableMimeTypesEv@Base 4:4.2.0 _ZN6Phonon19BackendCapabilities19isMimeTypeAvailableERK7QString@Base 4:4.2.0 _ZN6Phonon19BackendCapabilities21availableAudioEffectsEv@Base 4:4.2.0 _ZN6Phonon19BackendCapabilities25availableAVCaptureDevicesEv@Base 4:4.6.0really4.4.3 _ZN6Phonon19BackendCapabilities27availableAudioOutputDevicesEv@Base 4:4.2.0 _ZN6Phonon19BackendCapabilities28availableAudioCaptureDevicesEv@Base 4:4.2.0 _ZN6Phonon19BackendCapabilities28availableVideoCaptureDevicesEv@Base 4:4.6.0really4.4.3 _ZN6Phonon19BackendCapabilities8notifierEv@Base 4:4.2.0 _ZN6Phonon21ObjectDescriptionData9fromIndexENS_21ObjectDescriptionTypeEi@Base 4:4.2.0 _ZN6Phonon21ObjectDescriptionDataC1EPNS_24ObjectDescriptionPrivateE@Base 4:4.2.0 _ZN6Phonon21ObjectDescriptionDataC1EiRK5QHashI10QByteArray8QVariantE@Base 4:4.2.0 _ZN6Phonon21ObjectDescriptionDataC2EPNS_24ObjectDescriptionPrivateE@Base 4:4.2.0 _ZN6Phonon21ObjectDescriptionDataC2EiRK5QHashI10QByteArray8QVariantE@Base 4:4.2.0 _ZN6Phonon21ObjectDescriptionDataD1Ev@Base 4:4.2.0 _ZN6Phonon21ObjectDescriptionDataD2Ev@Base 4:4.2.0 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE0EE11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE0EE16staticMetaObjectE@Base 4:4.2.0 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE1EE11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE1EE16staticMetaObjectE@Base 4:4.2.0 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE2EE11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE2EE16staticMetaObjectE@Base 4:4.2.0 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE3EE11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE3EE16staticMetaObjectE@Base 4:4.2.0 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE4EE11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE4EE16staticMetaObjectE@Base 4:4.2.0 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE5EE11qt_metacastEPKc@Base 4:4.6.0really4.4.3 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE5EE16staticMetaObjectE@Base 4:4.6.0really4.4.3 _ZN6Phonon26AbstractMediaStreamPrivate13setStreamSizeEx@Base 4:4.3.0 _ZN6Phonon26AbstractMediaStreamPrivate17setStreamSeekableEb@Base 4:4.3.0 _ZN6Phonon26AbstractMediaStreamPrivate18setStreamInterfaceEPNS_15StreamInterfaceE@Base 4:4.2.0 _ZN6Phonon26AbstractMediaStreamPrivate21phononObjectDestroyedEPNS_16MediaNodePrivateE@Base 4:4.2.0 _ZN6Phonon26AbstractMediaStreamPrivate21setMediaObjectPrivateEPNS_18MediaObjectPrivateE@Base 4:4.2.0 _ZN6Phonon26AbstractMediaStreamPrivate9endOfDataEv@Base 4:4.3.0 _ZN6Phonon26AbstractMediaStreamPrivate9writeDataERK10QByteArray@Base 4:4.3.0 _ZN6Phonon26AbstractMediaStreamPrivateD0Ev@Base 4:4.2.0 _ZN6Phonon26AbstractMediaStreamPrivateD1Ev@Base 4:4.2.0 _ZN6Phonon26AbstractMediaStreamPrivateD2Ev@Base 4:4.2.0 _ZN6Phonon26ObjectDescriptionModelData10removeRowsEiiRK11QModelIndex@Base 4:4.2.0 _ZN6Phonon26ObjectDescriptionModelData12dropMimeDataENS_21ObjectDescriptionTypeEPK9QMimeDataN2Qt10DropActionEiiRK11QModelIndex@Base 4:4.2.0 _ZN6Phonon26ObjectDescriptionModelData12setModelDataERK5QListI28QExplicitlySharedDataPointerINS_21ObjectDescriptionDataEEE@Base 4:4.2.0 _ZN6Phonon26ObjectDescriptionModelData6moveUpERK11QModelIndex@Base 4:4.2.0 _ZN6Phonon26ObjectDescriptionModelData8moveDownERK11QModelIndex@Base 4:4.2.0 _ZN6Phonon26ObjectDescriptionModelDataC1EP18QAbstractListModel@Base 4:4.2.0 _ZN6Phonon26ObjectDescriptionModelDataC2EP18QAbstractListModel@Base 4:4.2.0 _ZN6Phonon26ObjectDescriptionModelDataD1Ev@Base 4:4.2.0 _ZN6Phonon26ObjectDescriptionModelDataD2Ev@Base 4:4.2.0 _ZN6Phonon3MrlC1ERK4QUrl@Base 4:4.6.0really4.5.0 _ZN6Phonon3MrlC1ERK7QString@Base 4:4.6.0really4.5.0 _ZN6Phonon3MrlC1ERKS0_@Base 4:4.6.0really4.5.0 _ZN6Phonon3MrlC1Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon3MrlC2ERK4QUrl@Base 4:4.6.0really4.5.0 _ZN6Phonon3MrlC2ERK7QString@Base 4:4.6.0really4.5.0 _ZN6Phonon3MrlC2ERKS0_@Base 4:4.6.0really4.5.0 _ZN6Phonon3MrlC2Ev@Base 4:4.6.0really4.5.0 _ZN6Phonon3MrlaSERK7QString@Base 4:4.6.0really4.5.0 _ZN6Phonon3MrlaSERKS0_@Base 4:4.6.0really4.5.0 _ZN6Phonon4Path10disconnectEv@Base 4:4.2.0 _ZN6Phonon4Path12insertEffectEPNS_6EffectES2_@Base 4:4.2.0 _ZN6Phonon4Path12insertEffectERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE1EEEPNS_6EffectE@Base 4:4.2.0 _ZN6Phonon4Path12removeEffectEPNS_6EffectE@Base 4:4.2.0 _ZN6Phonon4Path9reconnectEPNS_9MediaNodeES2_@Base 4:4.2.0 _ZN6Phonon4PathC1ERKS0_@Base 4:4.2.0 _ZN6Phonon4PathC1Ev@Base 4:4.2.0 _ZN6Phonon4PathC2ERKS0_@Base 4:4.2.0 _ZN6Phonon4PathC2Ev@Base 4:4.2.0 _ZN6Phonon4PathD1Ev@Base 4:4.2.0 _ZN6Phonon4PathD2Ev@Base 4:4.2.0 _ZN6Phonon4PathaSERKS0_@Base 4:4.2.0 _ZN6Phonon5qHashERKNS_15EffectParameterE@Base 4:4.2.0 _ZN6Phonon6Effect11qt_metacallEN11QMetaObject4CallEiPPv@Base 4:4.2.0 _ZN6Phonon6Effect11qt_metacastEPKc@Base 4:4.2.0 _ZN6Phonon6Effect16staticMetaObjectE@Base 4:4.2.0 _ZN6Phonon6Effect17setParameterValueERKNS_15EffectParameterERK8QVariant@Base 4:4.2.0 _ZN6Phonon6EffectC1ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE1EEEP7QObject@Base 4:4.2.0 _ZN6Phonon6EffectC1ERNS_13EffectPrivateEP7QObject@Base 4:4.2.0 _ZN6Phonon6EffectC2ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE1EEEP7QObject@Base 4:4.2.0 _ZN6Phonon6EffectC2ERNS_13EffectPrivateEP7QObject@Base 4:4.2.0 _ZN6Phonon6EffectD0Ev@Base 4:4.2.0 _ZN6Phonon6EffectD1Ev@Base 4:4.2.0 _ZN6Phonon6EffectD2Ev@Base 4:4.2.0 _ZN6Phonon7Factory10setBackendEP7QObject@Base 4:4.2.0 _ZN6Phonon7Factory11backendNameEv@Base 4:4.2.0 _ZN6Phonon7Factory14platformPluginEv@Base 4:4.2.0 _ZN6Phonon7Factory15registerQObjectEP7QObject@Base 4:4.2.0 _ZN6Phonon7Factory21createAudioDataOutputEP7QObject@Base 4:4.6.0really4.3.80 _ZN6Phonon7Factory22registerFrontendObjectEPNS_16MediaNodePrivateE@Base 4:4.2.0 _ZN6Phonon7Factory24deregisterFrontendObjectEPNS_16MediaNodePrivateE@Base 4:4.2.0 _ZN6Phonon7Factory6senderEv@Base 4:4.2.0 _ZN6Phonon7Factory7backendEb@Base 4:4.2.0 _ZN6Phonon9MediaNodeC1ERNS_16MediaNodePrivateE@Base 4:4.2.0 _ZN6Phonon9MediaNodeC2ERNS_16MediaNodePrivateE@Base 4:4.2.0 _ZN6Phonon9MediaNodeD0Ev@Base 4:4.2.0 _ZN6Phonon9MediaNodeD1Ev@Base 4:4.2.0 _ZN6Phonon9MediaNodeD2Ev@Base 4:4.2.0 _ZN6PhononlsE6QDebugRKNS_11MediaSourceE@Base 4:4.7.0.0 _ZN6PhononlsE6QDebugRKNS_15CaptureCategoryE@Base 4:4.7.1 _ZN6PhononlsE6QDebugRKNS_5StateE@Base 4:4.7.0.0 _ZN6PhononlsE6QDebugRKNS_7Capture10DeviceTypeE@Base 4:4.7.0.0 _ZN6PhononlsE6QDebugRKNS_8CategoryE@Base 4:4.7.0.0 _ZN6PhononlsE6QDebugRKNS_8DiscTypeE@Base 4:4.7.0.0 _ZN6PhononlsE6QDebugRKNS_8MetaDataE@Base 4:4.7.0.0 _ZN6PhononlsE6QDebugRKNS_9ErrorTypeE@Base 4:4.7.0.0 _ZNK6Phonon10SeekSlider10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon10SeekSlider10singleStepEv@Base 4:4.2.0 _ZNK6Phonon10SeekSlider11hasTrackingEv@Base 4:4.2.0 _ZNK6Phonon10SeekSlider11mediaObjectEv@Base 4:4.2.0 _ZNK6Phonon10SeekSlider11orientationEv@Base 4:4.2.0 _ZNK6Phonon10SeekSlider13isIconVisibleEv@Base 4:4.2.0 _ZNK6Phonon10SeekSlider8iconSizeEv@Base 4:4.2.0 _ZNK6Phonon10SeekSlider8pageStepEv@Base 4:4.2.0 _ZNK6Phonon11AudioOutput10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon11AudioOutput12outputDeviceEv@Base 4:4.2.0 _ZNK6Phonon11AudioOutput13volumeDecibelEv@Base 4:4.2.0 _ZNK6Phonon11AudioOutput4nameEv@Base 4:4.2.0 _ZNK6Phonon11AudioOutput6volumeEv@Base 4:4.2.0 _ZNK6Phonon11AudioOutput7isMutedEv@Base 4:4.2.0 _ZNK6Phonon11AudioOutput8categoryEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject10isSeekableEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject11currentTimeEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject11errorStringEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject12tickIntervalEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject13currentSourceEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject13prefinishMarkEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject13remainingTimeEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject14transitionTimeEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject5queueEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject5stateEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject8hasVideoEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject8metaDataENS_8MetaDataE@Base 4:4.2.0 _ZNK6Phonon11MediaObject8metaDataERK7QString@Base 4:4.2.0 _ZNK6Phonon11MediaObject8metaDataEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject9errorTypeEv@Base 4:4.2.0 _ZNK6Phonon11MediaObject9totalTimeEv@Base 4:4.2.0 _ZNK6Phonon11MediaSource10autoDeleteEv@Base 4:4.2.0 _ZNK6Phonon11MediaSource10deviceNameEv@Base 4:4.2.0 _ZNK6Phonon11MediaSource16deviceAccessListEv@Base 4:4.6.0really4.4.3 _ZNK6Phonon11MediaSource18audioCaptureDeviceEv@Base 4:4.6.0really4.4.3 _ZNK6Phonon11MediaSource18videoCaptureDeviceEv@Base 4:4.6.0really4.4.3 _ZNK6Phonon11MediaSource21audioDeviceAccessListEv@Base 4:4.7.0.0 _ZNK6Phonon11MediaSource21videoDeviceAccessListEv@Base 4:4.7.0.0 _ZNK6Phonon11MediaSource3mrlEv@Base 4:4.6.0really4.5.0 _ZNK6Phonon11MediaSource3urlEv@Base 4:4.2.0 _ZNK6Phonon11MediaSource4typeEv@Base 4:4.2.0 _ZNK6Phonon11MediaSource6streamEv@Base 4:4.2.0 _ZNK6Phonon11MediaSource8discTypeEv@Base 4:4.2.0 _ZNK6Phonon11MediaSource8fileNameEv@Base 4:4.2.0 _ZNK6Phonon11MediaSourceeqERKS0_@Base 4:4.2.0 _ZNK6Phonon11PulseStream10metaObjectEv@Base 4:4.6.0really4.4.1 _ZNK6Phonon11PulseStream12cachedVolumeEv@Base 4:4.7.0.0 _ZNK6Phonon11PulseStream4roleEv@Base 4:4.7.0.0 _ZNK6Phonon11PulseStream4uuidEv@Base 4:4.7.0.0 _ZNK6Phonon11PulseStream5indexEv@Base 4:4.7.0.0 _ZNK6Phonon11PulseStream8channelsEv@Base 4:4.7.0.0 _ZNK6Phonon11VideoPlayer10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon11VideoPlayer11audioOutputEv@Base 4:4.2.0 _ZNK6Phonon11VideoPlayer11currentTimeEv@Base 4:4.2.0 _ZNK6Phonon11VideoPlayer11mediaObjectEv@Base 4:4.2.0 _ZNK6Phonon11VideoPlayer11videoWidgetEv@Base 4:4.2.0 _ZNK6Phonon11VideoPlayer6volumeEv@Base 4:4.2.0 _ZNK6Phonon11VideoPlayer8isPausedEv@Base 4:4.2.0 _ZNK6Phonon11VideoPlayer9isPlayingEv@Base 4:4.2.0 _ZNK6Phonon11VideoPlayer9totalTimeEv@Base 4:4.2.0 _ZNK6Phonon11VideoWidget10brightnessEv@Base 4:4.2.0 _ZNK6Phonon11VideoWidget10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon11VideoWidget10saturationEv@Base 4:4.2.0 _ZNK6Phonon11VideoWidget11aspectRatioEv@Base 4:4.2.0 _ZNK6Phonon11VideoWidget3hueEv@Base 4:4.2.0 _ZNK6Phonon11VideoWidget8contrastEv@Base 4:4.2.0 _ZNK6Phonon11VideoWidget8snapshotEv@Base 4:4.6.0really4.3.80 _ZNK6Phonon11VideoWidget9scaleModeEv@Base 4:4.2.0 _ZNK6Phonon12EffectWidget10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon12GlobalConfig16devicePropertiesENS_21ObjectDescriptionTypeEi@Base 4:4.6.0really4.4.3 _ZNK6Phonon12GlobalConfig19hideAdvancedDevicesEv@Base 4:4.6.0really4.3.80 _ZNK6Phonon12GlobalConfig20audioOutputDeviceForENS_8CategoryEi@Base 4:4.3.0 _ZNK6Phonon12GlobalConfig21audioCaptureDeviceForENS_15CaptureCategoryEi@Base 4:4.6.0really4.5.0 _ZNK6Phonon12GlobalConfig21audioCaptureDeviceForENS_8CategoryEi@Base 4:4.3.0 _ZNK6Phonon12GlobalConfig21videoCaptureDeviceForENS_15CaptureCategoryEi@Base 4:4.6.0really4.5.0 _ZNK6Phonon12GlobalConfig21videoCaptureDeviceForENS_8CategoryEi@Base 4:4.6.0really4.4.3 _ZNK6Phonon12GlobalConfig24audioOutputDeviceListForENS_8CategoryEi@Base 4:4.3.0 _ZNK6Phonon12GlobalConfig25audioCaptureDeviceListForENS_15CaptureCategoryEi@Base 4:4.6.0really4.5.0 _ZNK6Phonon12GlobalConfig25audioCaptureDeviceListForENS_8CategoryEi@Base 4:4.3.0 _ZNK6Phonon12GlobalConfig25videoCaptureDeviceListForENS_15CaptureCategoryEi@Base 4:4.6.0really4.5.0 _ZNK6Phonon12GlobalConfig25videoCaptureDeviceListForENS_8CategoryEi@Base 4:4.6.0really4.4.3 _ZNK6Phonon12GlobalConfig27audioOutputDevicePropertiesEi@Base 4:4.6.0really4.4.3 _ZNK6Phonon12GlobalConfig28audioCaptureDevicePropertiesEi@Base 4:4.6.0really4.4.3 _ZNK6Phonon12GlobalConfig28videoCaptureDevicePropertiesEi@Base 4:4.6.0really4.4.3 _ZNK6Phonon12PulseSupport10metaObjectEv@Base 4:4.6.0really4.3.80 _ZNK6Phonon12PulseSupport16streamPropertiesE7QString@Base 4:4.7.0.0 _ZNK6Phonon12PulseSupport23objectIndexesByCategoryENS_21ObjectDescriptionTypeENS_15CaptureCategoryE@Base 4:4.6.0really4.5.0 _ZNK6Phonon12PulseSupport23objectIndexesByCategoryENS_21ObjectDescriptionTypeENS_8CategoryE@Base 4:4.6.0really4.3.80 _ZNK6Phonon12PulseSupport24objectDescriptionIndexesENS_21ObjectDescriptionTypeE@Base 4:4.6.0really4.3.80 _ZNK6Phonon12PulseSupport27objectDescriptionPropertiesENS_21ObjectDescriptionTypeEi@Base 4:4.6.0really4.3.80 _ZNK6Phonon12VolumeSlider10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon12VolumeSlider10singleStepEv@Base 4:4.2.0 _ZNK6Phonon12VolumeSlider11audioOutputEv@Base 4:4.2.0 _ZNK6Phonon12VolumeSlider11hasTrackingEv@Base 4:4.2.0 _ZNK6Phonon12VolumeSlider11orientationEv@Base 4:4.2.0 _ZNK6Phonon12VolumeSlider13isMuteVisibleEv@Base 4:4.2.0 _ZNK6Phonon12VolumeSlider13maximumVolumeEv@Base 4:4.2.0 _ZNK6Phonon12VolumeSlider8iconSizeEv@Base 4:4.2.0 _ZNK6Phonon12VolumeSlider8pageStepEv@Base 4:4.2.0 _ZNK6Phonon15AudioDataOutput10metaObjectEv@Base 4:4.6.0really4.3.80 _ZNK6Phonon15AudioDataOutput10sampleRateEv@Base 4:4.6.0really4.3.80 _ZNK6Phonon15AudioDataOutput8dataSizeEv@Base 4:4.6.0really4.3.80 _ZNK6Phonon15EffectParameter11descriptionEv@Base 4:4.2.0 _ZNK6Phonon15EffectParameter12defaultValueEv@Base 4:4.2.0 _ZNK6Phonon15EffectParameter12maximumValueEv@Base 4:4.2.0 _ZNK6Phonon15EffectParameter12minimumValueEv@Base 4:4.2.0 _ZNK6Phonon15EffectParameter14possibleValuesEv@Base 4:4.2.0 _ZNK6Phonon15EffectParameter20isLogarithmicControlEv@Base 4:4.2.0 _ZNK6Phonon15EffectParameter2idEv@Base 4:4.2.0 _ZNK6Phonon15EffectParameter4nameEv@Base 4:4.2.0 _ZNK6Phonon15EffectParameter4typeEv@Base 4:4.2.0 _ZNK6Phonon15EffectParametereqERKS0_@Base 4:4.2.0 _ZNK6Phonon15EffectParametergtERKS0_@Base 4:4.2.0 _ZNK6Phonon15EffectParameterltERKS0_@Base 4:4.2.0 _ZNK6Phonon15MediaController10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon15MediaController12currentAngleEv@Base 4:4.2.0 _ZNK6Phonon15MediaController12currentTitleEv@Base 4:4.2.0 _ZNK6Phonon15MediaController12subtitleFontEv@Base 4:4.7.0.0 _ZNK6Phonon15MediaController14autoplayTitlesEv@Base 4:4.2.0 _ZNK6Phonon15MediaController14availableMenusEv@Base 4:4.6.0really4.5.0 _ZNK6Phonon15MediaController14currentChapterEv@Base 4:4.2.0 _ZNK6Phonon15MediaController15availableAnglesEv@Base 4:4.2.0 _ZNK6Phonon15MediaController15availableTitlesEv@Base 4:4.2.0 _ZNK6Phonon15MediaController15currentSubtitleEv@Base 4:4.2.0 _ZNK6Phonon15MediaController16subtitleEncodingEv@Base 4:4.7.0.0 _ZNK6Phonon15MediaController17availableChaptersEv@Base 4:4.2.0 _ZNK6Phonon15MediaController17supportedFeaturesEv@Base 4:4.2.0 _ZNK6Phonon15MediaController18availableSubtitlesEv@Base 4:4.2.0 _ZNK6Phonon15MediaController18subtitleAutodetectEv@Base 4:4.7.0.0 _ZNK6Phonon15MediaController19currentAudioChannelEv@Base 4:4.2.0 _ZNK6Phonon15MediaController22availableAudioChannelsEv@Base 4:4.2.0 _ZNK6Phonon17VolumeFaderEffect10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon17VolumeFaderEffect13volumeDecibelEv@Base 4:4.2.0 _ZNK6Phonon17VolumeFaderEffect6volumeEv@Base 4:4.2.0 _ZNK6Phonon17VolumeFaderEffect9fadeCurveEv@Base 4:4.2.0 _ZNK6Phonon19AbstractAudioOutput10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon19AbstractMediaStream10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon19AbstractMediaStream10streamSizeEv@Base 4:4.2.0 _ZNK6Phonon19AbstractMediaStream14streamSeekableEv@Base 4:4.2.0 _ZNK6Phonon21ObjectDescriptionData11descriptionEv@Base 4:4.2.0 _ZNK6Phonon21ObjectDescriptionData13propertyNamesEv@Base 4:4.2.0 _ZNK6Phonon21ObjectDescriptionData4nameEv@Base 4:4.2.0 _ZNK6Phonon21ObjectDescriptionData5indexEv@Base 4:4.2.0 _ZNK6Phonon21ObjectDescriptionData7isValidEv@Base 4:4.2.0 _ZNK6Phonon21ObjectDescriptionData8propertyEPKc@Base 4:4.2.0 _ZNK6Phonon21ObjectDescriptionDataeqERKS0_@Base 4:4.2.0 _ZNK6Phonon22AudioOutputInterface4219deviceAccessListForERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE0EEE@Base 4:4.3.0 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE0EE10metaObjectEv@Base 4:4.2.0 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE1EE10metaObjectEv@Base 4:4.2.0 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE2EE10metaObjectEv@Base 4:4.2.0 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE3EE10metaObjectEv@Base 4:4.2.0 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE4EE10metaObjectEv@Base 4:4.2.0 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE5EE10metaObjectEv@Base 4:4.6.0really4.4.3 _ZNK6Phonon26ObjectDescriptionModelData15tupleIndexOrderEv@Base 4:4.2.0 _ZNK6Phonon26ObjectDescriptionModelData20supportedDropActionsEv@Base 4:4.2.0 _ZNK6Phonon26ObjectDescriptionModelData25tupleIndexAtPositionIndexEi@Base 4:4.2.0 _ZNK6Phonon26ObjectDescriptionModelData4dataERK11QModelIndexi@Base 4:4.2.0 _ZNK6Phonon26ObjectDescriptionModelData5flagsERK11QModelIndex@Base 4:4.2.0 _ZNK6Phonon26ObjectDescriptionModelData8mimeDataENS_21ObjectDescriptionTypeERK5QListI11QModelIndexE@Base 4:4.2.0 _ZNK6Phonon26ObjectDescriptionModelData8rowCountERK11QModelIndex@Base 4:4.2.0 _ZNK6Phonon26ObjectDescriptionModelData9mimeTypesENS_21ObjectDescriptionTypeE@Base 4:4.2.0 _ZNK6Phonon26ObjectDescriptionModelData9modelDataERK11QModelIndex@Base 4:4.2.0 _ZNK6Phonon26ObjectDescriptionModelData9modelDataEv@Base 4:4.2.0 _ZNK6Phonon3Mrl9toEncodedE6QFlagsIN4QUrl16FormattingOptionEE@Base 4:4.6.0really4.5.0 _ZNK6Phonon4Path4sinkEv@Base 4:4.3.0 _ZNK6Phonon4Path6sourceEv@Base 4:4.3.0 _ZNK6Phonon4Path7effectsEv@Base 4:4.2.0 _ZNK6Phonon4Path7isValidEv@Base 4:4.2.0 _ZNK6Phonon4PatheqERKS0_@Base 4:4.2.0 _ZNK6Phonon4PathneERKS0_@Base 4:4.2.0 _ZNK6Phonon6Effect10metaObjectEv@Base 4:4.2.0 _ZNK6Phonon6Effect10parametersEv@Base 4:4.2.0 _ZNK6Phonon6Effect11descriptionEv@Base 4:4.2.0 _ZNK6Phonon6Effect14parameterValueERKNS_15EffectParameterE@Base 4:4.2.0 _ZNK6Phonon9MediaNode10inputPathsEv@Base 4:4.2.0 _ZNK6Phonon9MediaNode11outputPathsEv@Base 4:4.2.0 _ZNK6Phonon9MediaNode7isValidEv@Base 4:4.2.0 _ZTIN6Phonon10SeekSliderE@Base 4:4.2.0 _ZTIN6Phonon11AudioOutputE@Base 4:4.2.0 _ZTIN6Phonon11MediaObjectE@Base 4:4.2.0 _ZTIN6Phonon11PulseStreamE@Base 4:4.6.0really4.4.1 _ZTIN6Phonon11VideoPlayerE@Base 4:4.2.0 _ZTIN6Phonon11VideoWidgetE@Base 4:4.2.0 _ZTIN6Phonon12EffectWidgetE@Base 4:4.2.0 _ZTIN6Phonon12GlobalConfigE@Base 4:4.3.0 _ZTIN6Phonon12PulseSupportE@Base 4:4.6.0really4.3.80 _ZTIN6Phonon12VolumeSliderE@Base 4:4.2.0 _ZTIN6Phonon15AudioDataOutputE@Base 4:4.6.0really4.3.80 _ZTIN6Phonon15MediaControllerE@Base 4:4.2.0 _ZTIN6Phonon15StreamInterfaceE@Base 4:4.2.0 _ZTIN6Phonon16MediaNodePrivateE@Base 4:4.2.0 _ZTIN6Phonon17VolumeFaderEffectE@Base 4:4.2.0 _ZTIN6Phonon18MediaSourcePrivateE@Base 4:4.2.0 _ZTIN6Phonon19AbstractAudioOutputE@Base 4:4.2.0 _ZTIN6Phonon19AbstractMediaStreamE@Base 4:4.2.0 _ZTIN6Phonon19AbstractVideoOutputE@Base 4:4.2.0 _ZTIN6Phonon26AbstractMediaStreamPrivateE@Base 4:4.2.0 _ZTIN6Phonon6EffectE@Base 4:4.2.0 _ZTIN6Phonon9MediaNodeE@Base 4:4.2.0 _ZTSN6Phonon10SeekSliderE@Base 4:4.2.0 _ZTSN6Phonon11AudioOutputE@Base 4:4.2.0 _ZTSN6Phonon11MediaObjectE@Base 4:4.2.0 _ZTSN6Phonon11PulseStreamE@Base 4:4.6.0really4.4.1 _ZTSN6Phonon11VideoPlayerE@Base 4:4.2.0 _ZTSN6Phonon11VideoWidgetE@Base 4:4.2.0 _ZTSN6Phonon12EffectWidgetE@Base 4:4.2.0 _ZTSN6Phonon12GlobalConfigE@Base 4:4.3.0 _ZTSN6Phonon12PulseSupportE@Base 4:4.6.0really4.3.80 _ZTSN6Phonon12VolumeSliderE@Base 4:4.2.0 _ZTSN6Phonon15AudioDataOutputE@Base 4:4.6.0really4.3.80 _ZTSN6Phonon15MediaControllerE@Base 4:4.2.0 _ZTSN6Phonon15StreamInterfaceE@Base 4:4.2.0 _ZTSN6Phonon16MediaNodePrivateE@Base 4:4.2.0 _ZTSN6Phonon17VolumeFaderEffectE@Base 4:4.2.0 _ZTSN6Phonon18MediaSourcePrivateE@Base 4:4.2.0 _ZTSN6Phonon19AbstractAudioOutputE@Base 4:4.2.0 _ZTSN6Phonon19AbstractMediaStreamE@Base 4:4.2.0 _ZTSN6Phonon19AbstractVideoOutputE@Base 4:4.2.0 _ZTSN6Phonon26AbstractMediaStreamPrivateE@Base 4:4.2.0 _ZTSN6Phonon6EffectE@Base 4:4.2.0 _ZTSN6Phonon9MediaNodeE@Base 4:4.2.0 _ZTVN6Phonon10SeekSliderE@Base 4:4.2.0 _ZTVN6Phonon11AudioOutputE@Base 4:4.2.0 _ZTVN6Phonon11MediaObjectE@Base 4:4.2.0 _ZTVN6Phonon11PulseStreamE@Base 4:4.6.0really4.4.1 _ZTVN6Phonon11VideoPlayerE@Base 4:4.2.0 _ZTVN6Phonon11VideoWidgetE@Base 4:4.2.0 _ZTVN6Phonon12EffectWidgetE@Base 4:4.2.0 _ZTVN6Phonon12GlobalConfigE@Base 4:4.3.0 _ZTVN6Phonon12PulseSupportE@Base 4:4.6.0really4.3.80 _ZTVN6Phonon12VolumeSliderE@Base 4:4.2.0 _ZTVN6Phonon15AudioDataOutputE@Base 4:4.6.0really4.3.80 _ZTVN6Phonon15MediaControllerE@Base 4:4.2.0 _ZTVN6Phonon15StreamInterfaceE@Base 4:4.2.0 _ZTVN6Phonon16MediaNodePrivateE@Base 4:4.2.0 _ZTVN6Phonon17VolumeFaderEffectE@Base 4:4.2.0 _ZTVN6Phonon18MediaSourcePrivateE@Base 4:4.2.0 _ZTVN6Phonon19AbstractAudioOutputE@Base 4:4.2.0 _ZTVN6Phonon19AbstractMediaStreamE@Base 4:4.2.0 _ZTVN6Phonon19AbstractVideoOutputE@Base 4:4.2.0 _ZTVN6Phonon26AbstractMediaStreamPrivateE@Base 4:4.2.0 _ZTVN6Phonon6EffectE@Base 4:4.2.0 _ZTVN6Phonon9MediaNodeE@Base 4:4.2.0 (c++)"non-virtual thunk to Phonon::AbstractAudioOutput::~AbstractAudioOutput()@Base" 4:4.2.0 (c++)"non-virtual thunk to Phonon::AudioDataOutput::~AudioDataOutput()@Base" 4:4.6.0really4.5.0 (c++)"non-virtual thunk to Phonon::AudioOutput::~AudioOutput()@Base" 4:4.6.0really4.5.0 (c++)"non-virtual thunk to Phonon::Effect::~Effect()@Base" 4:4.2.0 (c++)"non-virtual thunk to Phonon::EffectWidget::~EffectWidget()@Base" 4:4.2.0 (c++)"non-virtual thunk to Phonon::MediaObject::~MediaObject()@Base" 4:4.2.0 (c++)"non-virtual thunk to Phonon::SeekSlider::~SeekSlider()@Base" 4:4.2.0 (c++)"non-virtual thunk to Phonon::VideoPlayer::~VideoPlayer()@Base" 4:4.2.0 (c++)"non-virtual thunk to Phonon::VideoWidget::~VideoWidget()@Base" 4:4.6.0really4.5.0 (c++)"non-virtual thunk to Phonon::VolumeFaderEffect::~VolumeFaderEffect()@Base" 4:4.6.0really4.5.0 (c++)"non-virtual thunk to Phonon::VolumeSlider::~VolumeSlider()@Base" 4:4.2.0 debian/phonon-backend-null.postinst0000644000000000000000000000010012373124453014624 0ustar #!/bin/sh set -e . /usr/share/debconf/confmodule #DEBHELPER# debian/phonon4qt5.postinst0000644000000000000000000000010012373124453013005 0ustar #!/bin/sh set -e . /usr/share/debconf/confmodule #DEBHELPER# debian/phonon4qt5-backend-null.config0000644000000000000000000000012612373124453014734 0ustar #!/bin/sh set -e #INCLUDE debian/phonon4qt5-backend-null.dc-config.in# #DEBHELPER# debian/libphonon-dev.postinst0000644000000000000000000000076412373124453013552 0ustar #!/bin/sh set -e if [ "$1" = "configure" ]; then # Manually create /usr/include/qt4/phonon symlink on upgrades. # See #404850 why dpkg does not create it by itself. qtphonon="/usr/include/qt4/phonon" if [ -d $qtphonon ] && [ ! -L $qtphonon ]; then if rmdir $qtphonon 2>/dev/null; then ln -s ../phonon $qtphonon else echo "Unable to create $qtphonon symlink due to error above" >&2 exit 1 fi fi fi #DEBHELPER# exit 0 debian/libphononexperimental4.docs0000644000000000000000000000005012373124453014531 0ustar debian/phononexperimental/README.Debian debian/phonon4qt5-backend-null.postrm0000644000000000000000000000064612373124453015022 0ustar #!/bin/sh set -e case "$1" in *upgrade) # Do not touch phonon4qt5-backend-null/isnt_functional on upgrades ;; *) if [ -e /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule db_fset phonon4qt5-backend-null/isnt_functional seen false || true db_unregister phonon4qt5-backend-null/isnt_functional || true fi ;; esac #DEBHELPER# debian/libphonon4qt5-4.symbols0000644000000000000000000012235112373125555013463 0ustar # SymbolsHelper-Confirmed: 4:4.7.80 amd64 libphonon4qt5.so.4 libphonon4qt5-4 #MINVER# | phonon4qt5, libphonon4qt5-4 #MINVER# _ZN6Phonon10SeekSlider11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon10SeekSlider11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon10SeekSlider11setIconSizeERK5QSize@Base 4.7.2 _ZN6Phonon10SeekSlider11setPageStepEi@Base 4.7.2 _ZN6Phonon10SeekSlider11setTrackingEb@Base 4.7.2 _ZN6Phonon10SeekSlider13setSingleStepEi@Base 4.7.2 _ZN6Phonon10SeekSlider14setIconVisibleEb@Base 4.7.2 _ZN6Phonon10SeekSlider14setMediaObjectEPNS_11MediaObjectE@Base 4.7.2 _ZN6Phonon10SeekSlider14setOrientationEN2Qt11OrientationE@Base 4.7.2 _ZN6Phonon10SeekSlider16staticMetaObjectE@Base 4.7.2 _ZN6Phonon10SeekSliderC1EP7QWidget@Base 4.7.2 _ZN6Phonon10SeekSliderC1EPNS_11MediaObjectEP7QWidget@Base 4.7.2 _ZN6Phonon10SeekSliderC2EP7QWidget@Base 4.7.2 _ZN6Phonon10SeekSliderC2EPNS_11MediaObjectEP7QWidget@Base 4.7.2 _ZN6Phonon10SeekSliderD0Ev@Base 4.7.2 _ZN6Phonon10SeekSliderD1Ev@Base 4.7.2 _ZN6Phonon10SeekSliderD2Ev@Base 4.7.2 _ZN6Phonon10createPathEPNS_9MediaNodeES1_@Base 4.7.2 _ZN6Phonon11AudioOutput11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon11AudioOutput11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon11AudioOutput12mutedChangedEb@Base 4.7.2 _ZN6Phonon11AudioOutput13volumeChangedEd@Base 4.7.2 _ZN6Phonon11AudioOutput15setOutputDeviceERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE0EEE@Base 4.7.2 _ZN6Phonon11AudioOutput16setVolumeDecibelEd@Base 4.7.2 _ZN6Phonon11AudioOutput16staticMetaObjectE@Base 4.7.2 _ZN6Phonon11AudioOutput19outputDeviceChangedERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE0EEE@Base 4.7.2 _ZN6Phonon11AudioOutput7setNameERK7QString@Base 4.7.2 _ZN6Phonon11AudioOutput8setMutedEb@Base 4.7.2 _ZN6Phonon11AudioOutput9setVolumeEd@Base 4.7.2 _ZN6Phonon11AudioOutputC1ENS_8CategoryEP7QObject@Base 4.7.2 _ZN6Phonon11AudioOutputC1EP7QObject@Base 4.7.2 _ZN6Phonon11AudioOutputC2ENS_8CategoryEP7QObject@Base 4.7.2 _ZN6Phonon11AudioOutputC2EP7QObject@Base 4.7.2 _ZN6Phonon11AudioOutputD0Ev@Base 4.7.2 _ZN6Phonon11AudioOutputD1Ev@Base 4.7.2 _ZN6Phonon11AudioOutputD2Ev@Base 4.7.2 _ZN6Phonon11MediaObject10clearQueueEv@Base 4.7.2 _ZN6Phonon11MediaObject11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon11MediaObject11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon11MediaObject12bufferStatusEi@Base 4.7.2 _ZN6Phonon11MediaObject12stateChangedENS_5StateES1_@Base 4.7.2 _ZN6Phonon11MediaObject13aboutToFinishEv@Base 4.7.2 _ZN6Phonon11MediaObject15hasVideoChangedEb@Base 4.7.2 _ZN6Phonon11MediaObject15metaDataChangedEv@Base 4.7.2 _ZN6Phonon11MediaObject15seekableChangedEb@Base 4.7.2 _ZN6Phonon11MediaObject15setTickIntervalEi@Base 4.7.2 _ZN6Phonon11MediaObject16setCurrentSourceERKNS_11MediaSourceE@Base 4.7.2 _ZN6Phonon11MediaObject16setPrefinishMarkEi@Base 4.7.2 _ZN6Phonon11MediaObject16staticMetaObjectE@Base 4.7.2 _ZN6Phonon11MediaObject16totalTimeChangedEx@Base 4.7.2 _ZN6Phonon11MediaObject17setTransitionTimeEi@Base 4.7.2 _ZN6Phonon11MediaObject20currentSourceChangedERKNS_11MediaSourceE@Base 4.7.2 _ZN6Phonon11MediaObject20prefinishMarkReachedEi@Base 4.7.2 _ZN6Phonon11MediaObject4playEv@Base 4.7.2 _ZN6Phonon11MediaObject4seekEx@Base 4.7.2 _ZN6Phonon11MediaObject4stopEv@Base 4.7.2 _ZN6Phonon11MediaObject4tickEx@Base 4.7.2 _ZN6Phonon11MediaObject5clearEv@Base 4.7.2 _ZN6Phonon11MediaObject5pauseEv@Base 4.7.2 _ZN6Phonon11MediaObject7enqueueERK5QListI4QUrlE@Base 4.7.2 _ZN6Phonon11MediaObject7enqueueERK5QListINS_11MediaSourceEE@Base 4.7.2 _ZN6Phonon11MediaObject7enqueueERKNS_11MediaSourceE@Base 4.7.2 _ZN6Phonon11MediaObject8finishedEv@Base 4.7.2 _ZN6Phonon11MediaObject8setQueueERK5QListI4QUrlE@Base 4.7.2 _ZN6Phonon11MediaObject8setQueueERK5QListINS_11MediaSourceEE@Base 4.7.2 _ZN6Phonon11MediaObjectC1EP7QObject@Base 4.7.2 _ZN6Phonon11MediaObjectC2EP7QObject@Base 4.7.2 _ZN6Phonon11MediaObjectD0Ev@Base 4.7.2 _ZN6Phonon11MediaObjectD1Ev@Base 4.7.2 _ZN6Phonon11MediaObjectD2Ev@Base 4.7.2 _ZN6Phonon11MediaSource13setAutoDeleteEb@Base 4.7.2 _ZN6Phonon11MediaSourceC1ENS_15CaptureCategoryE@Base 4.7.2 _ZN6Phonon11MediaSourceC1ENS_7Capture10DeviceTypeENS_15CaptureCategoryE@Base 4.7.2 _ZN6Phonon11MediaSourceC1ENS_8DiscTypeERK7QString@Base 4.7.2 _ZN6Phonon11MediaSourceC1EP9QIODevice@Base 4.7.2 _ZN6Phonon11MediaSourceC1EPNS_19AbstractMediaStreamE@Base 4.7.2 _ZN6Phonon11MediaSourceC1ERK4QUrl@Base 4.7.2 _ZN6Phonon11MediaSourceC1ERK5QPairI10QByteArray7QStringE@Base 4.7.2 _ZN6Phonon11MediaSourceC1ERK7QString@Base 4.7.2 _ZN6Phonon11MediaSourceC1ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE4EEE@Base 4.7.2 _ZN6Phonon11MediaSourceC1ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE5EEE@Base 4.7.2 _ZN6Phonon11MediaSourceC1ERKS0_@Base 4.7.2 _ZN6Phonon11MediaSourceC1ERNS_18MediaSourcePrivateE@Base 4.7.2 _ZN6Phonon11MediaSourceC1Ev@Base 4.7.2 _ZN6Phonon11MediaSourceC2ENS_15CaptureCategoryE@Base 4.7.2 _ZN6Phonon11MediaSourceC2ENS_7Capture10DeviceTypeENS_15CaptureCategoryE@Base 4.7.2 _ZN6Phonon11MediaSourceC2ENS_8DiscTypeERK7QString@Base 4.7.2 _ZN6Phonon11MediaSourceC2EP9QIODevice@Base 4.7.2 _ZN6Phonon11MediaSourceC2EPNS_19AbstractMediaStreamE@Base 4.7.2 _ZN6Phonon11MediaSourceC2ERK4QUrl@Base 4.7.2 _ZN6Phonon11MediaSourceC2ERK5QPairI10QByteArray7QStringE@Base 4.7.2 _ZN6Phonon11MediaSourceC2ERK7QString@Base 4.7.2 _ZN6Phonon11MediaSourceC2ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE4EEE@Base 4.7.2 _ZN6Phonon11MediaSourceC2ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE5EEE@Base 4.7.2 _ZN6Phonon11MediaSourceC2ERKS0_@Base 4.7.2 _ZN6Phonon11MediaSourceC2ERNS_18MediaSourcePrivateE@Base 4.7.2 _ZN6Phonon11MediaSourceC2Ev@Base 4.7.2 _ZN6Phonon11MediaSourceD1Ev@Base 4.7.2 _ZN6Phonon11MediaSourceD2Ev@Base 4.7.2 _ZN6Phonon11MediaSourceaSERKS0_@Base 4.7.2 _ZN6Phonon11PulseStream11muteChangedEb@Base 4.7.2 _ZN6Phonon11PulseStream11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon11PulseStream11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon11PulseStream11usingDeviceEi@Base 4.7.2 _ZN6Phonon11PulseStream13volumeChangedEd@Base 4.7.2 _ZN6Phonon11PulseStream15setCachedVolumeEd@Base 4.7.2 _ZN6Phonon11PulseStream16staticMetaObjectE@Base 4.7.2 _ZN6Phonon11PulseStream17applyCachedVolumeEv@Base 4.7.2 _ZN6Phonon11PulseStream7setMuteEb@Base 4.7.2 _ZN6Phonon11PulseStream8setIndexEj@Base 4.7.2 _ZN6Phonon11PulseStream9setDeviceEi@Base 4.7.2 _ZN6Phonon11PulseStream9setVolumeEPK10pa_cvolume@Base 4.7.2 _ZN6Phonon11PulseStreamC1E7QStringS1_@Base 4.7.2 _ZN6Phonon11PulseStreamC2E7QStringS1_@Base 4.7.2 _ZN6Phonon11PulseStreamD0Ev@Base 4.7.2 _ZN6Phonon11PulseStreamD1Ev@Base 4.7.2 _ZN6Phonon11PulseStreamD2Ev@Base 4.7.2 _ZN6Phonon11VideoPlayer11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon11VideoPlayer11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon11VideoPlayer16staticMetaObjectE@Base 4.7.2 _ZN6Phonon11VideoPlayer4loadERKNS_11MediaSourceE@Base 4.7.2 _ZN6Phonon11VideoPlayer4playERKNS_11MediaSourceE@Base 4.7.2 _ZN6Phonon11VideoPlayer4playEv@Base 4.7.2 _ZN6Phonon11VideoPlayer4seekEx@Base 4.7.2 _ZN6Phonon11VideoPlayer4stopEv@Base 4.7.2 _ZN6Phonon11VideoPlayer5eventEP6QEvent@Base 4.7.2 _ZN6Phonon11VideoPlayer5pauseEv@Base 4.7.2 _ZN6Phonon11VideoPlayer8finishedEv@Base 4.7.2 _ZN6Phonon11VideoPlayer9setVolumeEf@Base 4.7.2 _ZN6Phonon11VideoPlayerC1ENS_8CategoryEP7QWidget@Base 4.7.2 _ZN6Phonon11VideoPlayerC1EP7QWidget@Base 4.7.2 _ZN6Phonon11VideoPlayerC2ENS_8CategoryEP7QWidget@Base 4.7.2 _ZN6Phonon11VideoPlayerC2EP7QWidget@Base 4.7.2 _ZN6Phonon11VideoPlayerD0Ev@Base 4.7.2 _ZN6Phonon11VideoPlayerD1Ev@Base 4.7.2 _ZN6Phonon11VideoPlayerD2Ev@Base 4.7.2 _ZN6Phonon11VideoWidget11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon11VideoWidget11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon11VideoWidget11setContrastEd@Base 4.7.2 _ZN6Phonon11VideoWidget12setScaleModeENS0_9ScaleModeE@Base 4.7.2 _ZN6Phonon11VideoWidget13setBrightnessEd@Base 4.7.2 _ZN6Phonon11VideoWidget13setFullScreenEb@Base 4.7.2 _ZN6Phonon11VideoWidget13setSaturationEd@Base 4.7.2 _ZN6Phonon11VideoWidget14exitFullScreenEv@Base 4.7.2 _ZN6Phonon11VideoWidget14mouseMoveEventEP11QMouseEvent@Base 4.7.2 _ZN6Phonon11VideoWidget14setAspectRatioENS0_11AspectRatioE@Base 4.7.2 _ZN6Phonon11VideoWidget15enterFullScreenEv@Base 4.7.2 _ZN6Phonon11VideoWidget16staticMetaObjectE@Base 4.7.2 _ZN6Phonon11VideoWidget5eventEP6QEvent@Base 4.7.2 _ZN6Phonon11VideoWidget6setHueEd@Base 4.7.2 _ZN6Phonon11VideoWidgetC1EP7QWidget@Base 4.7.2 _ZN6Phonon11VideoWidgetC1ERNS_18VideoWidgetPrivateEP7QWidget@Base 4.7.2 _ZN6Phonon11VideoWidgetC2EP7QWidget@Base 4.7.2 _ZN6Phonon11VideoWidgetC2ERNS_18VideoWidgetPrivateEP7QWidget@Base 4.7.2 _ZN6Phonon11VideoWidgetD0Ev@Base 4.7.2 _ZN6Phonon11VideoWidgetD1Ev@Base 4.7.2 _ZN6Phonon11VideoWidgetD2Ev@Base 4.7.2 _ZN6Phonon12EffectWidget11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon12EffectWidget11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon12EffectWidget16staticMetaObjectE@Base 4.7.2 _ZN6Phonon12EffectWidgetC1EPNS_6EffectEP7QWidget@Base 4.7.2 _ZN6Phonon12EffectWidgetC2EPNS_6EffectEP7QWidget@Base 4.7.2 _ZN6Phonon12EffectWidgetD0Ev@Base 4.7.2 _ZN6Phonon12EffectWidgetD1Ev@Base 4.7.2 _ZN6Phonon12EffectWidgetD2Ev@Base 4.7.2 _ZN6Phonon12GlobalConfig22setHideAdvancedDevicesEb@Base 4.7.2 _ZN6Phonon12GlobalConfig27setAudioOutputDeviceListForENS_8CategoryE5QListIiE@Base 4.7.2 _ZN6Phonon12GlobalConfig28setAudioCaptureDeviceListForENS_15CaptureCategoryE5QListIiE@Base 4.7.2 _ZN6Phonon12GlobalConfig28setAudioCaptureDeviceListForENS_8CategoryE5QListIiE@Base 4.7.2 _ZN6Phonon12GlobalConfig28setVideoCaptureDeviceListForENS_15CaptureCategoryE5QListIiE@Base 4.7.2 _ZN6Phonon12GlobalConfig28setVideoCaptureDeviceListForENS_8CategoryE5QListIiE@Base 4.7.2 _ZN6Phonon12GlobalConfigC1Ev@Base 4.7.2 _ZN6Phonon12GlobalConfigC2Ev@Base 4.7.2 _ZN6Phonon12GlobalConfigD0Ev@Base 4.7.2 _ZN6Phonon12GlobalConfigD1Ev@Base 4.7.2 _ZN6Phonon12GlobalConfigD2Ev@Base 4.7.2 _ZN6Phonon12PulseSupport11getInstanceEv@Base 4.7.2 _ZN6Phonon12PulseSupport11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon12PulseSupport11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon12PulseSupport13setOutputMuteE7QStringb@Base 4.7.2 _ZN6Phonon12PulseSupport13setOutputNameE7QStringS1_@Base 4.7.2 _ZN6Phonon12PulseSupport15connectToDaemonEv@Base 4.7.2 _ZN6Phonon12PulseSupport15setOutputDeviceE7QStringi@Base 4.7.2 _ZN6Phonon12PulseSupport15setOutputVolumeE7QStringd@Base 4.7.2 _ZN6Phonon12PulseSupport16clearStreamCacheE7QString@Base 4.7.2 _ZN6Phonon12PulseSupport16setCaptureDeviceE7QStringi@Base 4.7.2 _ZN6Phonon12PulseSupport16staticMetaObjectE@Base 4.7.2 _ZN6Phonon12PulseSupport17getInstanceOrNullEb@Base 4:4.7.80 _ZN6Phonon12PulseSupport20registerOutputStreamE7QStringNS_8CategoryE@Base 4.7.2 _ZN6Phonon12PulseSupport21registerCaptureStreamE7QStringNS_15CaptureCategoryE@Base 4.7.2 _ZN6Phonon12PulseSupport21registerCaptureStreamE7QStringNS_8CategoryE@Base 4.7.2 _ZN6Phonon12PulseSupport22setupStreamEnvironmentE7QString@Base 4.7.2 _ZN6Phonon12PulseSupport24objectDescriptionChangedENS_21ObjectDescriptionTypeE@Base 4.7.2 _ZN6Phonon12PulseSupport28emitObjectDescriptionChangedENS_21ObjectDescriptionTypeE@Base 4.7.2 _ZN6Phonon12PulseSupport34setOutputDevicePriorityForCategoryENS_8CategoryE5QListIiE@Base 4.7.2 _ZN6Phonon12PulseSupport35setCaptureDevicePriorityForCategoryENS_15CaptureCategoryE5QListIiE@Base 4.7.2 _ZN6Phonon12PulseSupport35setCaptureDevicePriorityForCategoryENS_8CategoryE5QListIiE@Base 4.7.2 _ZN6Phonon12PulseSupport5debugEv@Base 4.7.2 _ZN6Phonon12PulseSupport6enableEb@Base 4.7.2 _ZN6Phonon12PulseSupport8isActiveEv@Base 4.7.2 _ZN6Phonon12PulseSupport8shutdownEv@Base 4.7.2 _ZN6Phonon12PulseSupportC1Ev@Base 4.7.2 _ZN6Phonon12PulseSupportC2Ev@Base 4.7.2 _ZN6Phonon12PulseSupportD0Ev@Base 4.7.2 _ZN6Phonon12PulseSupportD1Ev@Base 4.7.2 _ZN6Phonon12PulseSupportD2Ev@Base 4.7.2 _ZN6Phonon12VolumeSlider11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon12VolumeSlider11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon12VolumeSlider11setIconSizeERK5QSize@Base 4.7.2 _ZN6Phonon12VolumeSlider11setPageStepEi@Base 4.7.2 _ZN6Phonon12VolumeSlider11setTrackingEb@Base 4.7.2 _ZN6Phonon12VolumeSlider13setSingleStepEi@Base 4.7.2 _ZN6Phonon12VolumeSlider14setAudioOutputEPNS_11AudioOutputE@Base 4.7.2 _ZN6Phonon12VolumeSlider14setMuteVisibleEb@Base 4.7.2 _ZN6Phonon12VolumeSlider14setOrientationEN2Qt11OrientationE@Base 4.7.2 _ZN6Phonon12VolumeSlider16setMaximumVolumeEd@Base 4.7.2 _ZN6Phonon12VolumeSlider16staticMetaObjectE@Base 4.7.2 _ZN6Phonon12VolumeSliderC1EP7QWidget@Base 4.7.2 _ZN6Phonon12VolumeSliderC1EPNS_11AudioOutputEP7QWidget@Base 4.7.2 _ZN6Phonon12VolumeSliderC2EP7QWidget@Base 4.7.2 _ZN6Phonon12VolumeSliderC2EPNS_11AudioOutputEP7QWidget@Base 4.7.2 _ZN6Phonon12VolumeSliderD0Ev@Base 4.7.2 _ZN6Phonon12VolumeSliderD1Ev@Base 4.7.2 _ZN6Phonon12VolumeSliderD2Ev@Base 4.7.2 _ZN6Phonon12createPlayerENS_8CategoryERKNS_11MediaSourceE@Base 4.7.2 _ZN6Phonon13phononVersionEv@Base 4.7.2 _ZN6Phonon15AudioDataOutput10endOfMediaEi@Base 4.7.2 _ZN6Phonon15AudioDataOutput11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon15AudioDataOutput11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon15AudioDataOutput11setDataSizeEi@Base 4.7.2 _ZN6Phonon15AudioDataOutput16staticMetaObjectE@Base 4.7.2 _ZN6Phonon15AudioDataOutput9dataReadyERK4QMapINS0_7ChannelE7QVectorIsEE@Base 4.7.2 _ZN6Phonon15AudioDataOutputC1EP7QObject@Base 4.7.2 _ZN6Phonon15AudioDataOutputC2EP7QObject@Base 4.7.2 _ZN6Phonon15AudioDataOutputD0Ev@Base 4.7.2 _ZN6Phonon15AudioDataOutputD1Ev@Base 4.7.2 _ZN6Phonon15AudioDataOutputD2Ev@Base 4.7.2 _ZN6Phonon15EffectParameterC1ERKS0_@Base 4.7.2 _ZN6Phonon15EffectParameterC1EiRK7QString6QFlagsINS0_4HintEERK8QVariantS9_S9_RK5QListIS7_ES3_@Base 4.7.2 _ZN6Phonon15EffectParameterC1Ev@Base 4.7.2 _ZN6Phonon15EffectParameterC2ERKS0_@Base 4.7.2 _ZN6Phonon15EffectParameterC2EiRK7QString6QFlagsINS0_4HintEERK8QVariantS9_S9_RK5QListIS7_ES3_@Base 4.7.2 _ZN6Phonon15EffectParameterC2Ev@Base 4.7.2 _ZN6Phonon15EffectParameterD1Ev@Base 4.7.2 _ZN6Phonon15EffectParameterD2Ev@Base 4.7.2 _ZN6Phonon15EffectParameteraSERKS0_@Base 4.7.2 _ZN6Phonon15MediaController11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon15MediaController11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon15MediaController12angleChangedEi@Base 4.7.2 _ZN6Phonon15MediaController12titleChangedEi@Base 4.7.2 _ZN6Phonon15MediaController13previousTitleEv@Base 4.7.2 _ZN6Phonon15MediaController14chapterChangedEi@Base 4.7.2 _ZN6Phonon15MediaController14setCurrentMenuENS0_14NavigationMenuE@Base 4.7.2 _ZN6Phonon15MediaController15setCurrentAngleEi@Base 4.7.2 _ZN6Phonon15MediaController15setCurrentTitleEi@Base 4.7.2 _ZN6Phonon15MediaController15setSubtitleFontERK5QFont@Base 4.7.2 _ZN6Phonon15MediaController16staticMetaObjectE@Base 4.7.2 _ZN6Phonon15MediaController17setAutoplayTitlesEb@Base 4.7.2 _ZN6Phonon15MediaController17setCurrentChapterEi@Base 4.7.2 _ZN6Phonon15MediaController18setCurrentSubtitleERK4QUrl@Base 4.7.2 _ZN6Phonon15MediaController18setCurrentSubtitleERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE3EEE@Base 4.7.2 _ZN6Phonon15MediaController19setSubtitleEncodingERK7QString@Base 4.7.2 _ZN6Phonon15MediaController21availableMenusChangedE5QListINS0_14NavigationMenuEE@Base 4.7.2 _ZN6Phonon15MediaController21setSubtitleAutodetectEb@Base 4.7.2 _ZN6Phonon15MediaController22availableAnglesChangedEi@Base 4.7.2 _ZN6Phonon15MediaController22availableTitlesChangedEi@Base 4.7.2 _ZN6Phonon15MediaController22navigationMenuToStringENS0_14NavigationMenuE@Base 4.7.2 _ZN6Phonon15MediaController22setCurrentAudioChannelERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE2EEE@Base 4.7.2 _ZN6Phonon15MediaController24availableChaptersChangedEi@Base 4.7.2 _ZN6Phonon15MediaController25availableSubtitlesChangedEv@Base 4.7.2 _ZN6Phonon15MediaController29availableAudioChannelsChangedEv@Base 4.7.2 _ZN6Phonon15MediaController9nextTitleEv@Base 4.7.2 _ZN6Phonon15MediaControllerC1EPNS_11MediaObjectE@Base 4.7.2 _ZN6Phonon15MediaControllerC2EPNS_11MediaObjectE@Base 4.7.2 _ZN6Phonon15MediaControllerD0Ev@Base 4.7.2 _ZN6Phonon15MediaControllerD1Ev@Base 4.7.2 _ZN6Phonon15MediaControllerD2Ev@Base 4.7.2 _ZN6Phonon15StreamInterface10enoughDataEv@Base 4.7.2 _ZN6Phonon15StreamInterface10seekStreamEx@Base 4.7.2 _ZN6Phonon15StreamInterface15connectToSourceERKNS_11MediaSourceE@Base 4.7.2 _ZN6Phonon15StreamInterface5resetEv@Base 4.7.2 _ZN6Phonon15StreamInterface8needDataEv@Base 4.7.2 _ZN6Phonon15StreamInterfaceC1Ev@Base 4.7.2 _ZN6Phonon15StreamInterfaceC2Ev@Base 4.7.2 _ZN6Phonon15StreamInterfaceD0Ev@Base 4.7.2 _ZN6Phonon15StreamInterfaceD1Ev@Base 4.7.2 _ZN6Phonon15StreamInterfaceD2Ev@Base 4.7.2 _ZN6Phonon16MediaNodePrivate12addInputPathERKNS_4PathE@Base 4.7.2 _ZN6Phonon16MediaNodePrivate13addOutputPathERKNS_4PathE@Base 4.7.2 _ZN6Phonon16MediaNodePrivate13backendObjectEv@Base 4.7.2 _ZN6Phonon16MediaNodePrivate15removeInputPathERKNS_4PathE@Base 4.7.2 _ZN6Phonon16MediaNodePrivate16removeOutputPathERKNS_4PathE@Base 4.7.2 _ZN6Phonon16MediaNodePrivate19deleteBackendObjectEv@Base 4.7.2 _ZN6Phonon16MediaNodePrivate21addDestructionHandlerEPNS_27MediaNodeDestructionHandlerE@Base 4.7.2 _ZN6Phonon16MediaNodePrivate24removeDestructionHandlerEPNS_27MediaNodeDestructionHandlerE@Base 4.7.2 _ZN6Phonon16MediaNodePrivateC1ENS0_6CastIdE@Base 4.7.2 _ZN6Phonon16MediaNodePrivateC2ENS0_6CastIdE@Base 4.7.2 _ZN6Phonon16MediaNodePrivateD0Ev@Base 4.7.2 _ZN6Phonon16MediaNodePrivateD1Ev@Base 4.7.2 _ZN6Phonon16MediaNodePrivateD2Ev@Base 4.7.2 _ZN6Phonon16categoryToStringENS_15CaptureCategoryE@Base 4.7.2 _ZN6Phonon16categoryToStringENS_8CategoryE@Base 4.7.2 _ZN6Phonon17VolumeFaderEffect11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon17VolumeFaderEffect11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon17VolumeFaderEffect12setFadeCurveENS0_9FadeCurveE@Base 4.7.2 _ZN6Phonon17VolumeFaderEffect16setVolumeDecibelEd@Base 4.7.2 _ZN6Phonon17VolumeFaderEffect16staticMetaObjectE@Base 4.7.2 _ZN6Phonon17VolumeFaderEffect6fadeInEi@Base 4.7.2 _ZN6Phonon17VolumeFaderEffect6fadeToEfi@Base 4.7.2 _ZN6Phonon17VolumeFaderEffect7fadeOutEi@Base 4.7.2 _ZN6Phonon17VolumeFaderEffect9setVolumeEf@Base 4.7.2 _ZN6Phonon17VolumeFaderEffectC1EP7QObject@Base 4.7.2 _ZN6Phonon17VolumeFaderEffectC2EP7QObject@Base 4.7.2 _ZN6Phonon17VolumeFaderEffectD0Ev@Base 4.7.2 _ZN6Phonon17VolumeFaderEffectD1Ev@Base 4.7.2 _ZN6Phonon17VolumeFaderEffectD2Ev@Base 4.7.2 _ZN6Phonon17registerMetaTypesEv@Base 4.7.2 _ZN6Phonon18MediaObjectPrivate15_k_stateChangedENS_5StateES1_@Base 4.7.2 _ZN6Phonon18MediaObjectPrivate18setupBackendObjectEv@Base 4.7.2 _ZN6Phonon18MediaSourcePrivate16setCaptureDeviceENS_7Capture10DeviceTypeENS_15CaptureCategoryE@Base 4.7.2 _ZN6Phonon18MediaSourcePrivate17setCaptureDevicesENS_15CaptureCategoryE@Base 4.7.2 (optional=templinst)_ZN6Phonon18MediaSourcePrivate17setCaptureDevicesERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE4EEERKNS1_ILS2_5EEE@Base 4.7.2 _ZN6Phonon18MediaSourcePrivate9setStreamEPNS_19AbstractMediaStreamE@Base 4.7.2 _ZN6Phonon18MediaSourcePrivateD0Ev@Base 4.7.2 _ZN6Phonon18MediaSourcePrivateD1Ev@Base 4.7.2 _ZN6Phonon18MediaSourcePrivateD2Ev@Base 4.7.2 _ZN6Phonon19AbstractAudioOutput11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon19AbstractAudioOutput11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon19AbstractAudioOutput16staticMetaObjectE@Base 4.7.2 _ZN6Phonon19AbstractAudioOutputC1ERNS_26AbstractAudioOutputPrivateEP7QObject@Base 4.7.2 _ZN6Phonon19AbstractAudioOutputC2ERNS_26AbstractAudioOutputPrivateEP7QObject@Base 4.7.2 _ZN6Phonon19AbstractAudioOutputD0Ev@Base 4.7.2 _ZN6Phonon19AbstractAudioOutputD1Ev@Base 4.7.2 _ZN6Phonon19AbstractAudioOutputD2Ev@Base 4.7.2 _ZN6Phonon19AbstractMediaStream10enoughDataEv@Base 4.7.2 _ZN6Phonon19AbstractMediaStream10seekStreamEx@Base 4.7.2 _ZN6Phonon19AbstractMediaStream11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon19AbstractMediaStream11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon19AbstractMediaStream13setStreamSizeEx@Base 4.7.2 _ZN6Phonon19AbstractMediaStream16staticMetaObjectE@Base 4.7.2 _ZN6Phonon19AbstractMediaStream17setStreamSeekableEb@Base 4.7.2 _ZN6Phonon19AbstractMediaStream5errorENS_9ErrorTypeERK7QString@Base 4.7.2 _ZN6Phonon19AbstractMediaStream9endOfDataEv@Base 4.7.2 _ZN6Phonon19AbstractMediaStream9writeDataERK10QByteArray@Base 4.7.2 _ZN6Phonon19AbstractMediaStreamC1EP7QObject@Base 4.7.2 _ZN6Phonon19AbstractMediaStreamC1ERNS_26AbstractMediaStreamPrivateEP7QObject@Base 4.7.2 _ZN6Phonon19AbstractMediaStreamC2EP7QObject@Base 4.7.2 _ZN6Phonon19AbstractMediaStreamC2ERNS_26AbstractMediaStreamPrivateEP7QObject@Base 4.7.2 _ZN6Phonon19AbstractMediaStreamD0Ev@Base 4.7.2 _ZN6Phonon19AbstractMediaStreamD1Ev@Base 4.7.2 _ZN6Phonon19AbstractMediaStreamD2Ev@Base 4.7.2 _ZN6Phonon19AbstractVideoOutputC1ERNS_26AbstractVideoOutputPrivateE@Base 4.7.2 _ZN6Phonon19AbstractVideoOutputC2ERNS_26AbstractVideoOutputPrivateE@Base 4.7.2 _ZN6Phonon19AbstractVideoOutputD0Ev@Base 4.7.2 _ZN6Phonon19AbstractVideoOutputD1Ev@Base 4.7.2 _ZN6Phonon19AbstractVideoOutputD2Ev@Base 4.7.2 _ZN6Phonon19BackendCapabilities18availableMimeTypesEv@Base 4.7.2 _ZN6Phonon19BackendCapabilities19isMimeTypeAvailableERK7QString@Base 4.7.2 _ZN6Phonon19BackendCapabilities21availableAudioEffectsEv@Base 4.7.2 _ZN6Phonon19BackendCapabilities25availableAVCaptureDevicesEv@Base 4.7.2 _ZN6Phonon19BackendCapabilities27availableAudioOutputDevicesEv@Base 4.7.2 _ZN6Phonon19BackendCapabilities28availableAudioCaptureDevicesEv@Base 4.7.2 _ZN6Phonon19BackendCapabilities28availableVideoCaptureDevicesEv@Base 4.7.2 _ZN6Phonon19BackendCapabilities8notifierEv@Base 4.7.2 _ZN6Phonon21ObjectDescriptionData9fromIndexENS_21ObjectDescriptionTypeEi@Base 4.7.2 _ZN6Phonon21ObjectDescriptionDataC1EPNS_24ObjectDescriptionPrivateE@Base 4.7.2 _ZN6Phonon21ObjectDescriptionDataC1EiRK5QHashI10QByteArray8QVariantE@Base 4.7.2 _ZN6Phonon21ObjectDescriptionDataC2EPNS_24ObjectDescriptionPrivateE@Base 4.7.2 _ZN6Phonon21ObjectDescriptionDataC2EiRK5QHashI10QByteArray8QVariantE@Base 4.7.2 _ZN6Phonon21ObjectDescriptionDataD1Ev@Base 4.7.2 _ZN6Phonon21ObjectDescriptionDataD2Ev@Base 4.7.2 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE0EE11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE0EE16staticMetaObjectE@Base 4.7.2 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE1EE11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE1EE16staticMetaObjectE@Base 4.7.2 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE2EE11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE2EE16staticMetaObjectE@Base 4.7.2 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE3EE11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE3EE16staticMetaObjectE@Base 4.7.2 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE4EE11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE4EE16staticMetaObjectE@Base 4.7.2 (optional=templinst)_ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE5EE11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE5EE16staticMetaObjectE@Base 4.7.2 _ZN6Phonon26AbstractMediaStreamPrivate13setStreamSizeEx@Base 4.7.2 _ZN6Phonon26AbstractMediaStreamPrivate17setStreamSeekableEb@Base 4.7.2 _ZN6Phonon26AbstractMediaStreamPrivate18setStreamInterfaceEPNS_15StreamInterfaceE@Base 4.7.2 _ZN6Phonon26AbstractMediaStreamPrivate21phononObjectDestroyedEPNS_16MediaNodePrivateE@Base 4.7.2 _ZN6Phonon26AbstractMediaStreamPrivate21setMediaObjectPrivateEPNS_18MediaObjectPrivateE@Base 4.7.2 _ZN6Phonon26AbstractMediaStreamPrivate9endOfDataEv@Base 4.7.2 _ZN6Phonon26AbstractMediaStreamPrivate9writeDataERK10QByteArray@Base 4.7.2 _ZN6Phonon26AbstractMediaStreamPrivateD0Ev@Base 4.7.2 _ZN6Phonon26AbstractMediaStreamPrivateD1Ev@Base 4.7.2 _ZN6Phonon26AbstractMediaStreamPrivateD2Ev@Base 4.7.2 _ZN6Phonon26ObjectDescriptionModelData10removeRowsEiiRK11QModelIndex@Base 4.7.2 _ZN6Phonon26ObjectDescriptionModelData12dropMimeDataENS_21ObjectDescriptionTypeEPK9QMimeDataN2Qt10DropActionEiiRK11QModelIndex@Base 4.7.2 _ZN6Phonon26ObjectDescriptionModelData12setModelDataERK5QListI28QExplicitlySharedDataPointerINS_21ObjectDescriptionDataEEE@Base 4.7.2 _ZN6Phonon26ObjectDescriptionModelData6moveUpERK11QModelIndex@Base 4.7.2 _ZN6Phonon26ObjectDescriptionModelData8moveDownERK11QModelIndex@Base 4.7.2 _ZN6Phonon26ObjectDescriptionModelDataC1EP18QAbstractListModel@Base 4.7.2 _ZN6Phonon26ObjectDescriptionModelDataC2EP18QAbstractListModel@Base 4.7.2 _ZN6Phonon26ObjectDescriptionModelDataD1Ev@Base 4.7.2 _ZN6Phonon26ObjectDescriptionModelDataD2Ev@Base 4.7.2 _ZN6Phonon3MrlC1ERK4QUrl@Base 4.7.2 _ZN6Phonon3MrlC1ERK7QString@Base 4.7.2 _ZN6Phonon3MrlC1ERKS0_@Base 4.7.2 _ZN6Phonon3MrlC1Ev@Base 4.7.2 _ZN6Phonon3MrlC2ERK4QUrl@Base 4.7.2 _ZN6Phonon3MrlC2ERK7QString@Base 4.7.2 _ZN6Phonon3MrlC2ERKS0_@Base 4.7.2 _ZN6Phonon3MrlC2Ev@Base 4.7.2 _ZN6Phonon3MrlaSERK7QString@Base 4.7.2 _ZN6Phonon3MrlaSERKS0_@Base 4.7.2 _ZN6Phonon4Path10disconnectEv@Base 4.7.2 _ZN6Phonon4Path12insertEffectEPNS_6EffectES2_@Base 4.7.2 _ZN6Phonon4Path12insertEffectERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE1EEEPNS_6EffectE@Base 4.7.2 _ZN6Phonon4Path12removeEffectEPNS_6EffectE@Base 4.7.2 _ZN6Phonon4Path9reconnectEPNS_9MediaNodeES2_@Base 4.7.2 _ZN6Phonon4PathC1ERKS0_@Base 4.7.2 _ZN6Phonon4PathC1Ev@Base 4.7.2 _ZN6Phonon4PathC2ERKS0_@Base 4.7.2 _ZN6Phonon4PathC2Ev@Base 4.7.2 _ZN6Phonon4PathD1Ev@Base 4.7.2 _ZN6Phonon4PathD2Ev@Base 4.7.2 _ZN6Phonon4PathaSERKS0_@Base 4.7.2 _ZN6Phonon5qHashERKNS_15EffectParameterE@Base 4.7.2 _ZN6Phonon6Effect11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon6Effect11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon6Effect16staticMetaObjectE@Base 4.7.2 _ZN6Phonon6Effect17setParameterValueERKNS_15EffectParameterERK8QVariant@Base 4.7.2 _ZN6Phonon6EffectC1ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE1EEEP7QObject@Base 4.7.2 _ZN6Phonon6EffectC1ERNS_13EffectPrivateEP7QObject@Base 4.7.2 _ZN6Phonon6EffectC2ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE1EEEP7QObject@Base 4.7.2 _ZN6Phonon6EffectC2ERNS_13EffectPrivateEP7QObject@Base 4.7.2 _ZN6Phonon6EffectD0Ev@Base 4.7.2 _ZN6Phonon6EffectD1Ev@Base 4.7.2 _ZN6Phonon6EffectD2Ev@Base 4.7.2 _ZN6Phonon7Factory10setBackendEP7QObject@Base 4.7.2 _ZN6Phonon7Factory11backendNameEv@Base 4.7.2 _ZN6Phonon7Factory14platformPluginEv@Base 4.7.2 _ZN6Phonon7Factory15registerQObjectEP7QObject@Base 4.7.2 _ZN6Phonon7Factory21createAudioDataOutputEP7QObject@Base 4.7.2 _ZN6Phonon7Factory22registerFrontendObjectEPNS_16MediaNodePrivateE@Base 4.7.2 _ZN6Phonon7Factory24deregisterFrontendObjectEPNS_16MediaNodePrivateE@Base 4.7.2 _ZN6Phonon7Factory6senderEv@Base 4.7.2 _ZN6Phonon7Factory7backendEb@Base 4.7.2 _ZN6Phonon9MediaNodeC1ERNS_16MediaNodePrivateE@Base 4.7.2 _ZN6Phonon9MediaNodeC2ERNS_16MediaNodePrivateE@Base 4.7.2 _ZN6Phonon9MediaNodeD0Ev@Base 4.7.2 _ZN6Phonon9MediaNodeD1Ev@Base 4.7.2 _ZN6Phonon9MediaNodeD2Ev@Base 4.7.2 _ZN6PhononlsE6QDebugRKNS_11MediaSourceE@Base 4.7.2 _ZN6PhononlsE6QDebugRKNS_15CaptureCategoryE@Base 4.7.2 _ZN6PhononlsE6QDebugRKNS_5StateE@Base 4.7.2 _ZN6PhononlsE6QDebugRKNS_7Capture10DeviceTypeE@Base 4.7.2 _ZN6PhononlsE6QDebugRKNS_8CategoryE@Base 4.7.2 _ZN6PhononlsE6QDebugRKNS_8DiscTypeE@Base 4.7.2 _ZN6PhononlsE6QDebugRKNS_8MetaDataE@Base 4.7.2 _ZN6PhononlsE6QDebugRKNS_9ErrorTypeE@Base 4.7.2 _ZNK6Phonon10SeekSlider10metaObjectEv@Base 4.7.2 _ZNK6Phonon10SeekSlider10singleStepEv@Base 4.7.2 _ZNK6Phonon10SeekSlider11hasTrackingEv@Base 4.7.2 _ZNK6Phonon10SeekSlider11mediaObjectEv@Base 4.7.2 _ZNK6Phonon10SeekSlider11orientationEv@Base 4.7.2 _ZNK6Phonon10SeekSlider13isIconVisibleEv@Base 4.7.2 _ZNK6Phonon10SeekSlider8iconSizeEv@Base 4.7.2 _ZNK6Phonon10SeekSlider8pageStepEv@Base 4.7.2 _ZNK6Phonon11AudioOutput10metaObjectEv@Base 4.7.2 _ZNK6Phonon11AudioOutput12outputDeviceEv@Base 4.7.2 _ZNK6Phonon11AudioOutput13volumeDecibelEv@Base 4.7.2 _ZNK6Phonon11AudioOutput4nameEv@Base 4.7.2 _ZNK6Phonon11AudioOutput6volumeEv@Base 4.7.2 _ZNK6Phonon11AudioOutput7isMutedEv@Base 4.7.2 _ZNK6Phonon11AudioOutput8categoryEv@Base 4.7.2 _ZNK6Phonon11MediaObject10isSeekableEv@Base 4.7.2 _ZNK6Phonon11MediaObject10metaObjectEv@Base 4.7.2 _ZNK6Phonon11MediaObject11currentTimeEv@Base 4.7.2 _ZNK6Phonon11MediaObject11errorStringEv@Base 4.7.2 _ZNK6Phonon11MediaObject12tickIntervalEv@Base 4.7.2 _ZNK6Phonon11MediaObject13currentSourceEv@Base 4.7.2 _ZNK6Phonon11MediaObject13prefinishMarkEv@Base 4.7.2 _ZNK6Phonon11MediaObject13remainingTimeEv@Base 4.7.2 _ZNK6Phonon11MediaObject14transitionTimeEv@Base 4.7.2 _ZNK6Phonon11MediaObject5queueEv@Base 4.7.2 _ZNK6Phonon11MediaObject5stateEv@Base 4.7.2 _ZNK6Phonon11MediaObject8hasVideoEv@Base 4.7.2 _ZNK6Phonon11MediaObject8metaDataENS_8MetaDataE@Base 4.7.2 _ZNK6Phonon11MediaObject8metaDataERK7QString@Base 4.7.2 _ZNK6Phonon11MediaObject8metaDataEv@Base 4.7.2 _ZNK6Phonon11MediaObject9errorTypeEv@Base 4.7.2 _ZNK6Phonon11MediaObject9totalTimeEv@Base 4.7.2 _ZNK6Phonon11MediaSource10autoDeleteEv@Base 4.7.2 _ZNK6Phonon11MediaSource10deviceNameEv@Base 4.7.2 _ZNK6Phonon11MediaSource16deviceAccessListEv@Base 4.7.2 _ZNK6Phonon11MediaSource18audioCaptureDeviceEv@Base 4.7.2 _ZNK6Phonon11MediaSource18videoCaptureDeviceEv@Base 4.7.2 _ZNK6Phonon11MediaSource21audioDeviceAccessListEv@Base 4.7.2 _ZNK6Phonon11MediaSource21videoDeviceAccessListEv@Base 4.7.2 _ZNK6Phonon11MediaSource3mrlEv@Base 4.7.2 _ZNK6Phonon11MediaSource3urlEv@Base 4.7.2 _ZNK6Phonon11MediaSource4typeEv@Base 4.7.2 _ZNK6Phonon11MediaSource6streamEv@Base 4.7.2 _ZNK6Phonon11MediaSource8discTypeEv@Base 4.7.2 _ZNK6Phonon11MediaSource8fileNameEv@Base 4.7.2 _ZNK6Phonon11MediaSourceeqERKS0_@Base 4.7.2 _ZNK6Phonon11PulseStream10metaObjectEv@Base 4.7.2 _ZNK6Phonon11PulseStream12cachedVolumeEv@Base 4.7.2 _ZNK6Phonon11PulseStream4roleEv@Base 4.7.2 _ZNK6Phonon11PulseStream4uuidEv@Base 4.7.2 _ZNK6Phonon11PulseStream5indexEv@Base 4.7.2 _ZNK6Phonon11PulseStream8channelsEv@Base 4.7.2 _ZNK6Phonon11VideoPlayer10metaObjectEv@Base 4.7.2 _ZNK6Phonon11VideoPlayer11audioOutputEv@Base 4.7.2 _ZNK6Phonon11VideoPlayer11currentTimeEv@Base 4.7.2 _ZNK6Phonon11VideoPlayer11mediaObjectEv@Base 4.7.2 _ZNK6Phonon11VideoPlayer11videoWidgetEv@Base 4.7.2 _ZNK6Phonon11VideoPlayer6volumeEv@Base 4.7.2 _ZNK6Phonon11VideoPlayer8isPausedEv@Base 4.7.2 _ZNK6Phonon11VideoPlayer9isPlayingEv@Base 4.7.2 _ZNK6Phonon11VideoPlayer9totalTimeEv@Base 4.7.2 _ZNK6Phonon11VideoWidget10brightnessEv@Base 4.7.2 _ZNK6Phonon11VideoWidget10metaObjectEv@Base 4.7.2 _ZNK6Phonon11VideoWidget10saturationEv@Base 4.7.2 _ZNK6Phonon11VideoWidget11aspectRatioEv@Base 4.7.2 _ZNK6Phonon11VideoWidget3hueEv@Base 4.7.2 _ZNK6Phonon11VideoWidget8contrastEv@Base 4.7.2 _ZNK6Phonon11VideoWidget8snapshotEv@Base 4.7.2 _ZNK6Phonon11VideoWidget9scaleModeEv@Base 4.7.2 _ZNK6Phonon12EffectWidget10metaObjectEv@Base 4.7.2 _ZNK6Phonon12GlobalConfig16devicePropertiesENS_21ObjectDescriptionTypeEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig19hideAdvancedDevicesEv@Base 4.7.2 _ZNK6Phonon12GlobalConfig20audioOutputDeviceForENS_8CategoryEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig21audioCaptureDeviceForENS_15CaptureCategoryEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig21audioCaptureDeviceForENS_8CategoryEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig21videoCaptureDeviceForENS_15CaptureCategoryEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig21videoCaptureDeviceForENS_8CategoryEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig24audioOutputDeviceListForENS_8CategoryEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig25audioCaptureDeviceListForENS_15CaptureCategoryEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig25audioCaptureDeviceListForENS_8CategoryEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig25videoCaptureDeviceListForENS_15CaptureCategoryEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig25videoCaptureDeviceListForENS_8CategoryEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig27audioOutputDevicePropertiesEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig28audioCaptureDevicePropertiesEi@Base 4.7.2 _ZNK6Phonon12GlobalConfig28videoCaptureDevicePropertiesEi@Base 4.7.2 _ZNK6Phonon12PulseSupport10metaObjectEv@Base 4.7.2 _ZNK6Phonon12PulseSupport16streamPropertiesE7QString@Base 4.7.2 _ZNK6Phonon12PulseSupport23objectIndexesByCategoryENS_21ObjectDescriptionTypeENS_15CaptureCategoryE@Base 4.7.2 _ZNK6Phonon12PulseSupport23objectIndexesByCategoryENS_21ObjectDescriptionTypeENS_8CategoryE@Base 4.7.2 _ZNK6Phonon12PulseSupport24objectDescriptionIndexesENS_21ObjectDescriptionTypeE@Base 4.7.2 _ZNK6Phonon12PulseSupport27objectDescriptionPropertiesENS_21ObjectDescriptionTypeEi@Base 4.7.2 _ZNK6Phonon12VolumeSlider10metaObjectEv@Base 4.7.2 _ZNK6Phonon12VolumeSlider10singleStepEv@Base 4.7.2 _ZNK6Phonon12VolumeSlider11audioOutputEv@Base 4.7.2 _ZNK6Phonon12VolumeSlider11hasTrackingEv@Base 4.7.2 _ZNK6Phonon12VolumeSlider11orientationEv@Base 4.7.2 _ZNK6Phonon12VolumeSlider13isMuteVisibleEv@Base 4.7.2 _ZNK6Phonon12VolumeSlider13maximumVolumeEv@Base 4.7.2 _ZNK6Phonon12VolumeSlider8iconSizeEv@Base 4.7.2 _ZNK6Phonon12VolumeSlider8pageStepEv@Base 4.7.2 _ZNK6Phonon15AudioDataOutput10metaObjectEv@Base 4.7.2 _ZNK6Phonon15AudioDataOutput10sampleRateEv@Base 4.7.2 _ZNK6Phonon15AudioDataOutput8dataSizeEv@Base 4.7.2 _ZNK6Phonon15EffectParameter11descriptionEv@Base 4.7.2 _ZNK6Phonon15EffectParameter12defaultValueEv@Base 4.7.2 _ZNK6Phonon15EffectParameter12maximumValueEv@Base 4.7.2 _ZNK6Phonon15EffectParameter12minimumValueEv@Base 4.7.2 _ZNK6Phonon15EffectParameter14possibleValuesEv@Base 4.7.2 _ZNK6Phonon15EffectParameter20isLogarithmicControlEv@Base 4.7.2 _ZNK6Phonon15EffectParameter2idEv@Base 4.7.2 _ZNK6Phonon15EffectParameter4nameEv@Base 4.7.2 _ZNK6Phonon15EffectParameter4typeEv@Base 4.7.2 _ZNK6Phonon15EffectParametereqERKS0_@Base 4.7.2 _ZNK6Phonon15EffectParametergtERKS0_@Base 4.7.2 _ZNK6Phonon15EffectParameterltERKS0_@Base 4.7.2 _ZNK6Phonon15MediaController10metaObjectEv@Base 4.7.2 _ZNK6Phonon15MediaController12currentAngleEv@Base 4.7.2 _ZNK6Phonon15MediaController12currentTitleEv@Base 4.7.2 _ZNK6Phonon15MediaController12subtitleFontEv@Base 4.7.2 _ZNK6Phonon15MediaController14autoplayTitlesEv@Base 4.7.2 _ZNK6Phonon15MediaController14availableMenusEv@Base 4.7.2 _ZNK6Phonon15MediaController14currentChapterEv@Base 4.7.2 _ZNK6Phonon15MediaController15availableAnglesEv@Base 4.7.2 _ZNK6Phonon15MediaController15availableTitlesEv@Base 4.7.2 _ZNK6Phonon15MediaController15currentSubtitleEv@Base 4.7.2 _ZNK6Phonon15MediaController16subtitleEncodingEv@Base 4.7.2 _ZNK6Phonon15MediaController17availableChaptersEv@Base 4.7.2 _ZNK6Phonon15MediaController17supportedFeaturesEv@Base 4.7.2 _ZNK6Phonon15MediaController18availableSubtitlesEv@Base 4.7.2 _ZNK6Phonon15MediaController18subtitleAutodetectEv@Base 4.7.2 _ZNK6Phonon15MediaController19currentAudioChannelEv@Base 4.7.2 _ZNK6Phonon15MediaController22availableAudioChannelsEv@Base 4.7.2 _ZNK6Phonon17VolumeFaderEffect10metaObjectEv@Base 4.7.2 _ZNK6Phonon17VolumeFaderEffect13volumeDecibelEv@Base 4.7.2 _ZNK6Phonon17VolumeFaderEffect6volumeEv@Base 4.7.2 _ZNK6Phonon17VolumeFaderEffect9fadeCurveEv@Base 4.7.2 _ZNK6Phonon19AbstractAudioOutput10metaObjectEv@Base 4.7.2 _ZNK6Phonon19AbstractMediaStream10metaObjectEv@Base 4.7.2 _ZNK6Phonon19AbstractMediaStream10streamSizeEv@Base 4.7.2 _ZNK6Phonon19AbstractMediaStream14streamSeekableEv@Base 4.7.2 _ZNK6Phonon21ObjectDescriptionData11descriptionEv@Base 4.7.2 _ZNK6Phonon21ObjectDescriptionData13propertyNamesEv@Base 4.7.2 _ZNK6Phonon21ObjectDescriptionData4nameEv@Base 4.7.2 _ZNK6Phonon21ObjectDescriptionData5indexEv@Base 4.7.2 _ZNK6Phonon21ObjectDescriptionData7isValidEv@Base 4.7.2 _ZNK6Phonon21ObjectDescriptionData8propertyEPKc@Base 4.7.2 _ZNK6Phonon21ObjectDescriptionDataeqERKS0_@Base 4.7.2 _ZNK6Phonon22AudioOutputInterface4219deviceAccessListForERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE0EEE@Base 4.7.2 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE0EE10metaObjectEv@Base 4.7.2 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE1EE10metaObjectEv@Base 4.7.2 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE2EE10metaObjectEv@Base 4.7.2 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE3EE10metaObjectEv@Base 4.7.2 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE4EE10metaObjectEv@Base 4.7.2 (optional=templinst)_ZNK6Phonon22ObjectDescriptionModelILNS_21ObjectDescriptionTypeE5EE10metaObjectEv@Base 4.7.2 _ZNK6Phonon26ObjectDescriptionModelData15tupleIndexOrderEv@Base 4.7.2 _ZNK6Phonon26ObjectDescriptionModelData20supportedDropActionsEv@Base 4.7.2 _ZNK6Phonon26ObjectDescriptionModelData25tupleIndexAtPositionIndexEi@Base 4.7.2 _ZNK6Phonon26ObjectDescriptionModelData4dataERK11QModelIndexi@Base 4.7.2 _ZNK6Phonon26ObjectDescriptionModelData5flagsERK11QModelIndex@Base 4.7.2 _ZNK6Phonon26ObjectDescriptionModelData8mimeDataENS_21ObjectDescriptionTypeERK5QListI11QModelIndexE@Base 4.7.2 _ZNK6Phonon26ObjectDescriptionModelData8rowCountERK11QModelIndex@Base 4.7.2 _ZNK6Phonon26ObjectDescriptionModelData9mimeTypesENS_21ObjectDescriptionTypeE@Base 4.7.2 _ZNK6Phonon26ObjectDescriptionModelData9modelDataERK11QModelIndex@Base 4.7.2 _ZNK6Phonon26ObjectDescriptionModelData9modelDataEv@Base 4.7.2 _ZNK6Phonon3Mrl9toEncodedE12QUrlTwoFlagsIN4QUrl19UrlFormattingOptionENS2_25ComponentFormattingOptionEE@Base 4.7.2 _ZNK6Phonon4Path4sinkEv@Base 4.7.2 _ZNK6Phonon4Path6sourceEv@Base 4.7.2 _ZNK6Phonon4Path7effectsEv@Base 4.7.2 _ZNK6Phonon4Path7isValidEv@Base 4.7.2 _ZNK6Phonon4PatheqERKS0_@Base 4.7.2 _ZNK6Phonon4PathneERKS0_@Base 4.7.2 _ZNK6Phonon6Effect10metaObjectEv@Base 4.7.2 _ZNK6Phonon6Effect10parametersEv@Base 4.7.2 _ZNK6Phonon6Effect11descriptionEv@Base 4.7.2 _ZNK6Phonon6Effect14parameterValueERKNS_15EffectParameterE@Base 4.7.2 _ZNK6Phonon9MediaNode10inputPathsEv@Base 4.7.2 _ZNK6Phonon9MediaNode11outputPathsEv@Base 4.7.2 _ZNK6Phonon9MediaNode7isValidEv@Base 4.7.2 _ZTI11QSharedData@Base 4.7.2 _ZTIN6Phonon10SeekSliderE@Base 4.7.2 _ZTIN6Phonon11AudioOutputE@Base 4.7.2 _ZTIN6Phonon11MediaObjectE@Base 4.7.2 _ZTIN6Phonon11PulseStreamE@Base 4.7.2 _ZTIN6Phonon11VideoPlayerE@Base 4.7.2 _ZTIN6Phonon11VideoWidgetE@Base 4.7.2 _ZTIN6Phonon12EffectWidgetE@Base 4.7.2 _ZTIN6Phonon12GlobalConfigE@Base 4.7.2 _ZTIN6Phonon12PulseSupportE@Base 4.7.2 _ZTIN6Phonon12VolumeSliderE@Base 4.7.2 _ZTIN6Phonon15AudioDataOutputE@Base 4.7.2 _ZTIN6Phonon15MediaControllerE@Base 4.7.2 _ZTIN6Phonon15StreamInterfaceE@Base 4.7.2 _ZTIN6Phonon16MediaNodePrivateE@Base 4.7.2 _ZTIN6Phonon17VolumeFaderEffectE@Base 4.7.2 _ZTIN6Phonon18MediaSourcePrivateE@Base 4.7.2 _ZTIN6Phonon19AbstractAudioOutputE@Base 4.7.2 _ZTIN6Phonon19AbstractMediaStreamE@Base 4.7.2 _ZTIN6Phonon19AbstractVideoOutputE@Base 4.7.2 _ZTIN6Phonon26AbstractMediaStreamPrivateE@Base 4.7.2 _ZTIN6Phonon6EffectE@Base 4.7.2 _ZTIN6Phonon9MediaNodeE@Base 4.7.2 _ZTS11QSharedData@Base 4.7.2 _ZTSN6Phonon10SeekSliderE@Base 4.7.2 _ZTSN6Phonon11AudioOutputE@Base 4.7.2 _ZTSN6Phonon11MediaObjectE@Base 4.7.2 _ZTSN6Phonon11PulseStreamE@Base 4.7.2 _ZTSN6Phonon11VideoPlayerE@Base 4.7.2 _ZTSN6Phonon11VideoWidgetE@Base 4.7.2 _ZTSN6Phonon12EffectWidgetE@Base 4.7.2 _ZTSN6Phonon12GlobalConfigE@Base 4.7.2 _ZTSN6Phonon12PulseSupportE@Base 4.7.2 _ZTSN6Phonon12VolumeSliderE@Base 4.7.2 _ZTSN6Phonon15AudioDataOutputE@Base 4.7.2 _ZTSN6Phonon15MediaControllerE@Base 4.7.2 _ZTSN6Phonon15StreamInterfaceE@Base 4.7.2 _ZTSN6Phonon16MediaNodePrivateE@Base 4.7.2 _ZTSN6Phonon17VolumeFaderEffectE@Base 4.7.2 _ZTSN6Phonon18MediaSourcePrivateE@Base 4.7.2 _ZTSN6Phonon19AbstractAudioOutputE@Base 4.7.2 _ZTSN6Phonon19AbstractMediaStreamE@Base 4.7.2 _ZTSN6Phonon19AbstractVideoOutputE@Base 4.7.2 _ZTSN6Phonon26AbstractMediaStreamPrivateE@Base 4.7.2 _ZTSN6Phonon6EffectE@Base 4.7.2 _ZTSN6Phonon9MediaNodeE@Base 4.7.2 _ZTVN6Phonon10SeekSliderE@Base 4.7.2 _ZTVN6Phonon11AudioOutputE@Base 4.7.2 _ZTVN6Phonon11MediaObjectE@Base 4.7.2 _ZTVN6Phonon11PulseStreamE@Base 4.7.2 _ZTVN6Phonon11VideoPlayerE@Base 4.7.2 _ZTVN6Phonon11VideoWidgetE@Base 4.7.2 _ZTVN6Phonon12EffectWidgetE@Base 4.7.2 _ZTVN6Phonon12GlobalConfigE@Base 4.7.2 _ZTVN6Phonon12PulseSupportE@Base 4.7.2 _ZTVN6Phonon12VolumeSliderE@Base 4.7.2 _ZTVN6Phonon15AudioDataOutputE@Base 4.7.2 _ZTVN6Phonon15MediaControllerE@Base 4.7.2 _ZTVN6Phonon15StreamInterfaceE@Base 4.7.2 _ZTVN6Phonon16MediaNodePrivateE@Base 4.7.2 _ZTVN6Phonon17VolumeFaderEffectE@Base 4.7.2 _ZTVN6Phonon18MediaSourcePrivateE@Base 4.7.2 _ZTVN6Phonon19AbstractAudioOutputE@Base 4.7.2 _ZTVN6Phonon19AbstractMediaStreamE@Base 4.7.2 _ZTVN6Phonon19AbstractVideoOutputE@Base 4.7.2 _ZTVN6Phonon26AbstractMediaStreamPrivateE@Base 4.7.2 _ZTVN6Phonon6EffectE@Base 4.7.2 _ZTVN6Phonon9MediaNodeE@Base 4.7.2 (c++)"non-virtual thunk to Phonon::AbstractAudioOutput::~AbstractAudioOutput()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::AudioDataOutput::~AudioDataOutput()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::AudioOutput::~AudioOutput()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::Effect::~Effect()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::EffectWidget::~EffectWidget()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::MediaObject::~MediaObject()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::SeekSlider::~SeekSlider()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::VideoPlayer::~VideoPlayer()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::VideoWidget::~VideoWidget()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::VolumeFaderEffect::~VolumeFaderEffect()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::VolumeSlider::~VolumeSlider()@Base" 4.7.2 debian/libphonon-dev.install0000644000000000000000000001313612373124453013332 0ustar usr/include/phonon/AbstractAudioOutput usr/include/phonon/AbstractMediaStream usr/include/phonon/AbstractVideoOutput usr/include/phonon/AddonInterface usr/include/phonon/AudioCaptureDevice usr/include/phonon/AudioCaptureDeviceModel usr/include/phonon/AudioChannelDescription usr/include/phonon/AudioChannelDescriptionModel usr/include/phonon/AudioDataOutput usr/include/phonon/AudioOutput usr/include/phonon/AudioOutputDevice usr/include/phonon/AudioOutputDeviceModel usr/include/phonon/AudioOutputInterface usr/include/phonon/AudioOutputInterface40 usr/include/phonon/AudioOutputInterface42 usr/include/phonon/AvCapture usr/include/phonon/BackendCapabilities usr/include/phonon/BackendInterface usr/include/phonon/Effect usr/include/phonon/EffectDescription usr/include/phonon/EffectDescriptionModel usr/include/phonon/EffectInterface usr/include/phonon/EffectParameter usr/include/phonon/EffectWidget usr/include/phonon/Global usr/include/phonon/GlobalDescriptionContainer usr/include/phonon/MediaController usr/include/phonon/MediaNode usr/include/phonon/MediaObject usr/include/phonon/MediaObjectInterface usr/include/phonon/MediaSource usr/include/phonon/Mrl usr/include/phonon/ObjectDescription usr/include/phonon/ObjectDescriptionData usr/include/phonon/ObjectDescriptionModel usr/include/phonon/ObjectDescriptionModelData usr/include/phonon/Path usr/include/phonon/Phonon/AbstractAudioOutput usr/include/phonon/Phonon/AbstractMediaStream usr/include/phonon/Phonon/AbstractVideoOutput usr/include/phonon/Phonon/AddonInterface usr/include/phonon/Phonon/AudioDevice usr/include/phonon/Phonon/AudioDeviceEnumerator usr/include/phonon/Phonon/AudioOutput usr/include/phonon/Phonon/AudioOutputDevice usr/include/phonon/Phonon/AudioOutputDeviceModel usr/include/phonon/Phonon/AudioOutputInterface usr/include/phonon/Phonon/BackendCapabilities usr/include/phonon/Phonon/BackendInterface usr/include/phonon/Phonon/Effect usr/include/phonon/Phonon/EffectDescription usr/include/phonon/Phonon/EffectDescriptionModel usr/include/phonon/Phonon/EffectInterface usr/include/phonon/Phonon/EffectParameter usr/include/phonon/Phonon/EffectWidget usr/include/phonon/Phonon/Global usr/include/phonon/Phonon/MediaController usr/include/phonon/Phonon/MediaNode usr/include/phonon/Phonon/MediaObject usr/include/phonon/Phonon/MediaObjectInterface usr/include/phonon/Phonon/MediaSource usr/include/phonon/Phonon/ObjectDescription usr/include/phonon/Phonon/ObjectDescriptionModel usr/include/phonon/Phonon/Path usr/include/phonon/Phonon/PlatformPlugin usr/include/phonon/Phonon/SeekSlider usr/include/phonon/Phonon/StreamInterface usr/include/phonon/Phonon/VideoPlayer usr/include/phonon/Phonon/VideoWidget usr/include/phonon/Phonon/VideoWidgetInterface usr/include/phonon/Phonon/VolumeFaderEffect usr/include/phonon/Phonon/VolumeFaderInterface usr/include/phonon/Phonon/VolumeSlider usr/include/phonon/PlatformPlugin usr/include/phonon/SeekSlider usr/include/phonon/StreamInterface usr/include/phonon/SubtitleDescription usr/include/phonon/SubtitleDescriptionModel usr/include/phonon/VideoCaptureDevice usr/include/phonon/VideoCaptureDeviceModel usr/include/phonon/VideoPlayer usr/include/phonon/VideoWidget usr/include/phonon/VideoWidgetInterface usr/include/phonon/VideoWidgetInterface44 usr/include/phonon/VideoWidgetInterfaceLatest usr/include/phonon/VolumeFaderEffect usr/include/phonon/VolumeFaderInterface usr/include/phonon/VolumeSlider usr/include/phonon/abstractaudiooutput.h usr/include/phonon/abstractmediastream.h usr/include/phonon/abstractvideooutput.h usr/include/phonon/addoninterface.h usr/include/phonon/audiodataoutput.h usr/include/phonon/audiodataoutputinterface.h usr/include/phonon/audiooutput.h usr/include/phonon/audiooutputinterface.h usr/include/phonon/backendcapabilities.h usr/include/phonon/backendinterface.h usr/include/phonon/effect.h usr/include/phonon/effectinterface.h usr/include/phonon/effectparameter.h usr/include/phonon/effectwidget.h usr/include/phonon/globalconfig.h usr/include/phonon/globaldescriptioncontainer.h usr/include/phonon/mediacontroller.h usr/include/phonon/medianode.h usr/include/phonon/mediaobject.h usr/include/phonon/mediaobjectinterface.h usr/include/phonon/mediasource.h usr/include/phonon/mrl.h usr/include/phonon/objectdescription.h usr/include/phonon/objectdescriptionmodel.h usr/include/phonon/path.h usr/include/phonon/phonon usr/include/phonon/phonon_export.h usr/include/phonon/phonondefs.h usr/include/phonon/phononnamespace.h usr/include/phonon/platformplugin.h usr/include/phonon/pulsesupport.h usr/include/phonon/seekslider.h usr/include/phonon/streaminterface.h usr/include/phonon/videoplayer.h usr/include/phonon/videowidget.h usr/include/phonon/videowidgetinterface.h usr/include/phonon/volumefadereffect.h usr/include/phonon/volumefaderinterface.h usr/include/phonon/volumeslider.h usr/lib/*/cmake/phonon/PhononConfig.cmake usr/lib/*/cmake/phonon/PhononConfigVersion.cmake usr/lib/*/cmake/phonon/PhononTargets-debian.cmake usr/lib/*/cmake/phonon/PhononTargets.cmake usr/lib/*/libphonon.so usr/lib/*/pkgconfig/phonon.pc usr/lib/*/qt4/plugins/designer/libphononwidgets.so usr/share/dbus-1/interfaces/org.kde.Phonon.AudioOutput.xml usr/share/phonon/buildsystem/FindAutomoc4.cmake usr/share/phonon/buildsystem/FindPackageHandleStandardArgs.cmake usr/share/phonon/buildsystem/FindPhononInternal.cmake usr/share/phonon/buildsystem/MacroEnsureVersion.cmake usr/share/phonon/buildsystem/MacroLogFeature.cmake usr/share/phonon/buildsystem/MacroOptionalFindPackage.cmake usr/share/phonon/buildsystem/MacroPushRequiredVars.cmake usr/share/phonon/buildsystem/PhononMacros.cmake usr/share/phonon/buildsystem/cmake_uninstall.cmake.in usr/share/qt4/mkspecs/modules/qt_phonon.pri debian/phononexperimental/0000755000000000000000000000000012373124453013111 5ustar debian/phononexperimental/README.Debian0000644000000000000000000000171412373124453015155 0ustar The Phonon-Experimental library ------------------------------- This library is for use by Phonon backends or other internal Phonon applications. It provides a testing ground for new but not-yet-finished features. External third party applications should NOT depend on this library because it might break in a myriad of ways and there is no API compatibility guarantees. Just stick with the core Phonon library (libphonon4 and its development package libphonon-dev) instead. What's more, the effective licence of the Phonon-Experimental library is GNU General Public Licence version 3 or later (in contrast to LGPL of libphonon). We (maintainers) reserve a right to pull this library from the archive if it ends up abused too much. You have been warned. Due to the nature of the libphononexperimental-dev package (see above), it does not depend on the libphonon-dev package. This is not a bug. -- Modestas Vainius Sat, 05 Mar 2011 00:46:42 +0200 debian/changelog0000644000000000000000000005654312374404513011060 0ustar phonon (4:4.7.80-0ubuntu1~ubuntu14.04) trusty; urgency=medium * Trusty SRU, upstream consides this a bugfix release which solves known problems and requests it be updated LP: #1358312 -- Jonathan Riddell Mon, 18 Aug 2014 14:02:50 +0000 phonon (4:4.7.80-0ubuntu1) utopic; urgency=medium * New upstream beta release -- Jonathan Riddell Thu, 14 Aug 2014 14:18:52 +0200 phonon (4:4.7.2-0ubuntu1) utopic; urgency=medium * New upstream release * Add missing symbols files for Qt5 libraries * Add explicit phonon4qt5 dependency to symbols files -- Jonathan Riddell Thu, 10 Jul 2014 12:05:38 +0200 phonon (4:4.7.1-0ubuntu8) trusty; urgency=medium * Fix install location of usr/include/phonon4qt5/KDE/ -- Jonathan Riddell Wed, 02 Apr 2014 13:05:09 +0000 phonon (4:4.7.1-0ubuntu7) trusty; urgency=medium * Change recommended backend to phonon-backend-gstreamer1.0 -- Jonathan Riddell Mon, 24 Mar 2014 20:13:27 +0000 phonon (4:4.7.1-0ubuntu6) trusty; urgency=medium [ Scarlett Clark ] * Fix .pri install location. -- Jonathan Riddell Mon, 24 Mar 2014 17:09:52 +0000 phonon (4:4.7.1-0ubuntu5) trusty; urgency=medium [ Timo Jyrinki ] * Rebuild against Qt 5.2.1 * Use the new mkspecs location -- Timo Jyrinki Mon, 10 Mar 2014 07:18:59 +0000 phonon (4:4.7.1-0ubuntu4) trusty; urgency=medium * Fix install of qt_phonon4qt5.pri -- Jonathan Riddell Fri, 14 Feb 2014 15:55:59 +0000 phonon (4:4.7.1-0ubuntu3) trusty; urgency=medium * Fix paths in libphonon4qt5-dev.install -- Jonathan Riddell Tue, 04 Feb 2014 17:39:47 +0000 phonon (4:4.7.1-0ubuntu2) trusty; urgency=medium * Fix paths in libphonon4qt5-dev.install -- Jonathan Riddell Thu, 30 Jan 2014 10:39:05 +0000 phonon (4:4.7.1-0ubuntu1) trusty; urgency=low * New upstream release * Do not suggest phonon-backend-mplayer which no longer exists * Do second build for phonon4qt5 and duplicate packages and debconf setup for it -- Jonathan Riddell Fri, 06 Dec 2013 12:32:48 +0000 phonon (4:4.7.0.0-2ubuntu3) trusty; urgency=low * Third time's the charm: suggest phonon-backend-vlc to compliment the previous phonon-backend-gstreamer change. -- Adam Conrad Sat, 23 Nov 2013 22:06:30 -0700 phonon (4:4.7.0.0-2ubuntu2) trusty; urgency=low * Actually change default backend to phonon-backend-gstreamer. -- Dmitrijs Ledkovs Sun, 24 Nov 2013 04:53:10 +0000 phonon (4:4.7.0.0-2ubuntu1) trusty; urgency=low * Rebase on to debian, remaining changes: - Drop universe dependency libqzeitgeist-dev. - Change default backend to phonon-backend-gstreamer. -- Dmitrijs Ledkovs Sun, 24 Nov 2013 02:51:02 +0000 phonon (4:4.7.0.0-2) unstable; urgency=low * Confirm symbol file on arm*: fixes FTBFSes. -- Modestas Vainius Tue, 05 Nov 2013 19:39:46 +0200 phonon (4:4.7.0.0-1) unstable; urgency=low * New upstream release (4.7.0). * Adapt no_rpath.patch to upstream changes. * Refresh phonon-inc.patch. * Update install files. * Update symbol files. * Drop phonon-backend-xine transitional package. No longer needed since it has already been released with Wheezy. * Bump Standards-Version to 3.9.5: no further changes needed. * Use canonical Vcs URLs. * No longer explicitly pass multiarch LIB_SUFFIX to cmake. Phonon gets the multiarch libdir from cmake (as of cmake 2.8.7). -- Modestas Vainius Tue, 05 Nov 2013 13:04:32 +0200 phonon (4:4.6.0.0-3) unstable; urgency=low * Team upload. * Add phonon-backend-xine transitional package, transition to the vlc backend. This fixes the "Could not perform immediate configuration on 'phonon-backend-vlc'" apt error on upgrades from squeeze (Closes: #669278). Thanks Andreas Beckmann for the patch to fix this issue. -- Lisandro Damián Nicanor Pérez Meyer Sat, 26 Jan 2013 11:57:09 -0300 phonon (4:4.6.0.0-2) unstable; urgency=low [ Debconf translation updates ] * Polish (Michał Kułach). (Closes: #670645) [ Fathi Boudra ] * Bump Build-Depends on Qt to >= 4.8.1. * Bump debian/compat to 8. -- Debian Qt/KDE Maintainers Fri, 27 Apr 2012 18:11:46 +0200 phonon (4:4.6.0.0-1+exp1) experimental; urgency=low * Team upload. [ Felix Geyer ] * Convert for multiarch. - Bump Build-Depends on Qt to >= 4.8. - Bump Build-Depends on debhelper to >= 8.1.3~. - Install libraries to multiarch paths. - Mark libraries Multi-Arch:same. - Change phonon and phonon-backend-null to arch:any and Multi-Arch:same. - Update no_rpath.patch to include multiarch lib paths. - Fix debconf prompt to cope with multi-arch:same packages. [ Didier Raboud ] * Bump Standards-Version to 3.9.3 without changes needed. -- Didier Raboud Tue, 24 Apr 2012 17:15:50 +0200 phonon (4:4.6.0.0-1) unstable; urgency=low * New upstream release (4.6.0): - add .0 to the upstream version in order to kill "really" suffix. [ Debconf translation updates ] * Italian (Francesca Ciceri). (Closes: #656468) [ Sune Vuorela ] * Make phonon conflicts with the xine backend. People must migrate away [ Modestas Vainius ] * Adapt findqt4_optional_x11.diff to upstream changes. * Adapt no_rpath.patch to upstream changes. * Add globaldescriptioncontainer.h to phonon-inc.patch. * Refresh phonon_is_not_forced_in_KDE.diff. * Update install files. -- Debian Qt/KDE Maintainers Sun, 19 Feb 2012 18:06:07 +0200 phonon (4:4.6.0really4.5.1-1) unstable; urgency=low * New upstream release. [ Pino Toscano ] * Update the patches: - phonon-inc.patch: adapt to the new version - phonon_is_not_forced_in_KDE.diff: refresh - upstream_PHONON_EXPORT_DEPRECATED.diff: drop, applied upstream - upstream_pulse-Use-qPow-as-pow-is-sometimes-not-found.patch: drop, applied upstream * debian/watch: update for the new path and format of tarballs. * Update the symbols files. -- Debian Qt/KDE Maintainers Tue, 20 Dec 2011 13:13:55 +0100 phonon (4:4.6.0really4.5.0-6) unstable; urgency=low [ Pino Toscano ] * Backport upstream patch to switch from pow() to qPow(). (Closes: #650708) (commit d7d3a08, upstream_pulse-Use-qPow-as-pow-is-sometimes-not-found) [ Debconf translation updates ] * Dutch (Jeroen Schot). (Closes: #637506) * Japanese (Hideki Yamane). (Closes: #626849) * Slovak (Slavko). (Closes: #641958) -- Debian Qt/KDE Maintainers Fri, 02 Dec 2011 12:35:02 +0100 phonon (4:4.6.0really4.5.0-5) unstable; urgency=low [ Pino Toscano ] * Do not make X11 mandatory for phonon and its backends (patch findqt4_optional_x11.diff). (Closes: #641111) -- Debian Qt/KDE Maintainers Sat, 10 Sep 2011 16:05:58 +0200 phonon (4:4.6.0really4.5.0-4) unstable; urgency=low [Lisandro Damián Nicanor Pérez Meyer] * Add a B-D on libqzeitgeist-dev. -- Debian Qt/KDE Maintainers Thu, 23 Jun 2011 11:23:58 +0300 phonon (4:4.6.0really4.5.0-3) unstable; urgency=low [ Pino Toscano ] * Backport macro usage for registerMetaTypes() from upstream branch 4.5 (commit 974fb5f, patch upstream_PHONON_EXPORT_DEPRECATED.diff). [ Modestas Vainius ] * Replace $(overriden_command) with $(overridden_command) in debian/rules. Requires pkg-kde-tools 0.12. * Bump Standards-Version to 3.9.2: no changes needed. [ Christian Perrier ] * Debconf translation updates: - Danish (Joe Hansen). Closes: #620817 - Czech (Michal Simunek). Closes: #620855 - German (Martin Eberhard Schauer). Closes: #622223 - French (Steve Petruzzello). Closes: #622736 - Russian (Yuri Kozlov). Closes: #623359 - Portuguese (Américo Monteiro). Closes: #623421 - Swedish (Martin Bagge / brother). Closes: #623399 - Spanish (Omar Campagne). Closes: #623588 -- Debian Qt/KDE Maintainers Sun, 08 May 2011 00:20:00 +0300 phonon (4:4.6.0really4.5.0-2) unstable; urgency=low * Add final post-review version of package descriptions and phonon-backend-null.templates. -- Modestas Vainius Mon, 04 Apr 2011 00:52:30 +0300 phonon (4:4.6.0really4.5.0-1) experimental; urgency=low * New upstream release. * Drop cdbs from Build-Depends. * Update install files. * Update symbol files. * Manage phononexperimental ABI via phononexperimental-abi-N virual package. * Add ${shlibs:Depends} to libphonon-dev Depends. * Update package descriptions (thanks to Christian PERRIER and Justin B Rye). -- Modestas Vainius Sun, 27 Mar 2011 12:25:04 +0300 phonon (4:4.6.0really4.4.4-3) unstable; urgency=low * Fix FTBFS with binary-arch target. -- Modestas Vainius Sat, 12 Mar 2011 19:27:58 +0200 phonon (4:4.6.0really4.4.4-2) unstable; urgency=low * Drop phonon-backends-dbg from phonon-dbg Recommends/Breaks. No longer needed. * Readd packaging copyright/licensing to debian/copyright. * Bump libphonon-dev Breaks/Replaces to << 4:4.6.0really4.4.4 for libphononexperimental-dev. experimental/avcaptureinterface.h header which used to be there up to 4.4.4 (see changelog below). * Switch debian/rules build engine to dhmk (qt-kde-team/2/*): - build-depend on pkg-kde-tools >= 0.11; - port debian/rules to dhmk keeping it dh compatible as much as possible. * Drop unused ${shlibs:Depends} from libphonon-dev and libphononexperimental-dev packages. * Add README.Debian to phonon-backend-null package. * Remove phonon-backend-null.lintian-overrides: phonon-backend-null is no longer and empty package due to README.Debian (see above). * Release to unstable. -- Modestas Vainius Fri, 11 Mar 2011 21:39:20 +0200 phonon (4:4.6.0really4.4.4-1) experimental; urgency=low * New upstream release. [ Pino Toscano ] * Do not install the header experimental/avcaptureinterface.h in libphonon-dev, as it experimental. [ Modestas Vainius ] * Drop phonon-backend-xine and phonon-backend-gstreamer. They have been split off to their own source packages upstream. Only phonon-backend-null remains here. * Remove xine and gstreamer specific packages from Build-Depends. * Adapt 02_no_rpath.patch to upstream changes. * Refresh other debian patches. * Remove sequence number from debian patches filenames. * Update install files. * Switch default backend to phonon-backend-vlc (phonon metapackage). * Try to solve an issue with Phonon backends getting auto-installed on buildds. phonon-backend-null will be preferred if Phonon is installed via libphonon-dev (which normally won't be a case on user systems). * Add lintian override for "phonon-backend-null: empty-binary-package". * Reshuffle backends in the Suggests of the phonon metapackage in the order of preferrence. * Drop README.source, no longer needed since switch to 3.0 (quilt). * Show a debconf warning to users who end up installing phonon-backend-null (probably unintentionally). The warning is displayed only if both phonon and phonon-backend-null packages end up being installed. * Update debian/copyright. * Point Homepage to http://phonon.kde.org/. * Add packages (libphononexperimental4 and libphononexperimental-dev) for the Phonon-Experimental library. It's needed by phonon-backend-gstreamer. The packages include disclaimers (in the README.Debian) about expected usage of this library. * Add libphononexperimental4 to phonon-dbg Suggests. * phonon-dbg: replace "Conflicts: phonon-backends-dbg" with Breaks. -- Modestas Vainius Sat, 05 Mar 2011 02:38:24 +0200 phonon (4:4.6.0really4.4.3-1) experimental; urgency=low * New upstream release. [ Modestas Vainius ] * Point debian/control Vcs fields to the new Git repository. * Update symbol file. for 4.4.3 on amd64. * Update install files. * Remove references to obsolete << KDE 4.1 from debian/control. * Bump Standards-Version to 3.9.1: add Breaks next to Replaces where needed. -- Debian Qt/KDE Maintainers Fri, 26 Nov 2010 02:01:14 +0200 phonon (4:4.6.0really4.4.2-1) unstable; urgency=low * New upstream release: - fixes PulseAudio breakage in xine backend (Closes: #582716). * Switch to 3.0 (quilt) format: - build depend on pkg-kde-tools (>= 0.9); - set appropriate debian/source/format; - remove quilt from build depends; - use original tar.bz2 tarballs from now on. * Update symbol file. * Drop unused phonon-backend-null lintian-override. -- Modestas Vainius Tue, 08 Jun 2010 02:13:01 +0300 phonon (4:4.6.0really4.4.1-2) unstable; urgency=low * Update symbol file for armel, fixes FTBFS. -- Modestas Vainius Sun, 09 May 2010 12:42:34 +0300 phonon (4:4.6.0really4.4.1-1) unstable; urgency=low * New upstream release: - fixes crash when opening PDF document (Closes: #580802); [ Modestas Vainius ] * Add debian/watch. * Update patches: - refresh 01 and 02; - adapt 03 to upstream changes; - remove 04, was stolen from upstream. * Use dh_xine, version libxine-dev build dependency to >= 1.1.16.3 (Closes: #575115). * Update libphonon4 symbol file. * Add ${misc:Depends} to phonon-backend-null. * Update libphonon-dev.install: ship new style CamelCase headers in /usr/include/phonon. -- Debian Qt/KDE Maintainers Sun, 09 May 2010 00:55:16 +0300 phonon (4:4.6.0really4.4.0-4) unstable; urgency=high [ Modestas Vainius ] * Make libphonon-dev depend on libqt4-dev. * Manually create /usr/include/qt4/phonon symlink on upgrades. See #404850 why dpkg does not create it by itself. * Urgency high as the bug leaves Phonon undiscoverable by KDE FindPhonon.cmake after upgrade and the buggy libphonon-dev is already in testing. -- Debian Qt/KDE Maintainers Thu, 29 Apr 2010 00:52:29 +0300 phonon (4:4.6.0really4.4.0-3) unstable; urgency=low [ Pino Toscano ] * phonon-backend-gstreamer: depend on gstreamer0.10-alsa only on Linux architectures, as ALSA is available only there. (Closes: #578255) -- Debian Qt/KDE Maintainers Sat, 17 Apr 2010 00:56:32 +0200 phonon (4:4.6.0really4.4.0-2) unstable; urgency=low * Upload to unstable. -- Modestas Vainius Wed, 14 Apr 2010 23:13:57 +0300 phonon (4:4.6.0really4.4.0-1) experimental; urgency=low * New upstream release (4.4.0). [ Modestas Vainius ] * Add 04_skip_pa_detection_if_no_glib_loop.diff patch which fixes phonon hang if GLib loop is disabled in Qt. * Refresh patches. * Update libphonon4 symbol file. * Update libphonon-dev.install: add pulsesupport.h. * Override lintian "phonon-backend-null: empty-binary-package". * Add explicit debian/source/format as lintian suggests. -- Debian Qt/KDE Maintainers Wed, 07 Apr 2010 01:42:07 +0300 phonon (4:4.6.0really4.3.80-1) experimental; urgency=low * New upstream release (using really-style version number). [ Fathi Boudra ] * Build Phonon from kdesupport again: - Add phonon, phonon-dbg, libphonon4 and libphonon-dev packages. * Remove patches: - 02_disable_phonon_build.diff - dropped. - 03_r950739_fullscreen_hidecursor.diff - stolen upstream. - 05_924144_encoding_local_files_fix.diff - stolen upstream. - 06_983650_play_filenames_with_hash.diff - stolen upstream. - 07_feature_backport_xine_equalizer.diff - stolen upstream. * Update debian/control: - Bump build dependencies (debhelper and pkg-kde-tools). - Add libpulse-dev build dependency. - Remove libphonon-dev build dependency. - Bump Standards-Version from 3.8.2 to 3.8.4 (no changes needed). [ Ana Beatriz Guerrero Lopez ] * Remove myself from Uploaders. [ Modestas Vainius ] * Change my email address to modax@debian.org in Uploaders field. * Fix Vcs-Browser URL. * Improve descriptions. * Downgrade Qt build dependency to 4.5. * Bump version to 4:4.6.0really4.3.80 to be higher than the last release of the Phonon libraries with the qt4-x11 source package. * Convert libphonon4.symbols to new pkg-kde-tools 0.6 style, adjust for 4.3.80 release. * Do not install "experimental" headers to libphonon-dev. * Add libphonon4 lintian overrides for {shlibs,symbols}-declares-dependency-on-other-package warnings. * Add 02_no_rpath.patch patch to disable /usr/lib RPATH by default. * Add DEP-3 patch header to 01_phonon-inc.patch. * Tweak copyright file a bit so lintian stops thinking it's of old-dh-make style. Also bump years of packaging copyright. * Add phonon-backends-dbg to phonon-dbg Conflicts and Replaces. * Do not version dependency on the phonon metapackage. * Use strict interdependencies among backends and libphonon4. * Build depend on dpkg-dev 1.15.5. * Make libphonon4 break phonon-backend-xine (<< 4:4.6.0really4.3.80). [ Sune Vuorela ] * Fix installing of include headers so that others can also find them. -- Debian Qt/KDE Maintainers Mon, 01 Mar 2010 13:26:14 +0100 phonon-backends (4:4.3.1-5) unstable; urgency=low +++ Changes by Modestas Vainius: * Rename source package to phonon-backends. * Add phonon-backends-dbg debug package. * Add patch (06_983650_play_filenames_with_hash.diff) to fix playback of files with hash (#) symbol in their name (Closes: #546271). * Backport Xine equalizer support from Phonon trunk (patch 07_feature_backport_xine_equalizer.diff). -- Debian Qt/KDE Maintainers Thu, 15 Oct 2009 20:31:26 +0300 phonon (4:4.3.1-4) unstable; urgency=low +++ Changes by Modestas Vainius: * Install backends to /usr/lib/qt4 (Closes: #539623). Otherwise pure Qt4 applications cannot find any backends. +++ Changes by Sune Vuorela: * Backport a bugfix from upstream to fix encoding issues with filenames. * Fix not-installed file and remove trailing whitespaces -- Debian Qt/KDE Maintainers Thu, 06 Aug 2009 22:36:33 +0200 phonon (4:4.3.1-3) unstable; urgency=low +++ Changes by Fathi Boudra: * Add gstreamer0.10-alsa dependency to phonon-backend-gstreamer. (Closes: #532490) +++ Changes by Modestas Vainius: * Add 03_r950739_fullscreen_hidecursor.diff patch which makes it possible to hide mouse cursor in fullscreen mode when xine backend is in use. -- Debian Qt/KDE Maintainers Sun, 02 Aug 2009 00:38:26 +0200 phonon (4:4.3.1-2) unstable; urgency=low * Build Phonon from Qt sources: - Add myself to Uploaders field. - Add 02_disable_phonon_build.diff to avoid Phonon build. - Add versioned libphonon-dev build dependency. - Bump Standards-Version from 3.8.1 to 3.8.2 (no changes needed). - Remove phonon, phonon-dbg, libphonon4 and libphonon-dev packages. - Cleanup unnecessary files. -- Fathi Boudra Mon, 06 Jul 2009 10:26:39 +0200 phonon (4:4.3.1-1) unstable; urgency=low * New upstream release. +++ Changes by Modestas Vainius: * Point Debian Vcs URLs to pkg-kde/trunk (new location). -- Debian Qt/KDE Maintainers Mon, 09 Mar 2009 00:18:07 +0100 phonon (4:4.3.0-2) unstable; urgency=low +++ Changes by Modestas Vainius * Bump debian/compat and debhelper build dependency to v7 (to get more sophisticated debian/tmp handling). * Switch from internal debian/cdbs/kde.mk to pkg-kde-tools: - bump pkg-kde-tools build depend to 0.4; - remove debian/cdbs directory; - replace debian/cdbs/kde.mk with /usr/share/pkg-kde-tools/qt-kde-team/1/debian-qt-kde.mk in debian/rules; - remove custom symbolshelper rules from debian/rules. * Remove THIS_SHOULD_GO_TO_UNSTABLE from debian/rules. -- Debian Qt/KDE Maintainers Thu, 19 Feb 2009 00:52:44 +0100 phonon (4:4.3.0-1) experimental; urgency=low * New upstream release. +++ Changes by Modestas Vainius: * Add xine backend. Based on kdebase-runtime packaging. * Make xine backend a default one (via phonon metapackage). * Bump cmake build dependency to 2.6.2. * Bump Standards-Version to 3.8.0: add README.source. * phonon-xine-backend replaces earlier kde-icons-oxygen. * Add symbols file for libphonon4. This needs pkg-kde-tools (>= 0.3) at build time. - Hook up phonon dependency to play(), stop(), pause() etc. methods. * Resync patches: - drop phonon-libraryPaths.patch patch. Merged upstream. - prepend sequence number to phonon-inc.patch (01_) and refresh it. * Switch to new installgen format. * Make phonon-backend-xine depend on gstreamer0.10-plugins-base. Otherwise, it causes crashes sometimes. * Make phonon-backend-gstreamer recommend gstreamer0.10-plugins-good and suggest gstreamer0.10-plugins-ugly. Explain reasoning in the package description. +++ Changes by George Kiagiadakis: * Build-conflict with the experimental libxine2 as the phonon-xine backend cannot build with it. +++ Changes by Pino Toscano: * Update copyright file. +++ Changes by Ana Beatriz Guerrero Lopez: * Update packaging years and upstream URL in copyright. -- Debian Qt/KDE Maintainers Fri, 22 Jan 2009 00:31:24 +0100 phonon (4:4.2.0-2) unstable; urgency=low * Make phonon find its backends. (Closes: 498573) Thanks to Vincent Fourmond for tracking down the cause and Matthias Kretz for the fix. * Create a magic phonon header (thanks to Matthias Kretz) and as the Qt. documentation is unclear, symlink Phonon to the phonon header. Also create a symlink from /usr/include/qt4/phonon to /usr/include/phonon so that application using qmake can use it. -- Sune Vuorela Thu, 20 Nov 2008 20:06:34 +0100 phonon (4:4.2.0-1) unstable; urgency=low * New upstream release. +++ Changes by Modestas Vainius: * Bump libphonon shlibs to 4.2.0. -- Debian Qt/KDE Maintainers Wed, 23 Jul 2008 16:01:05 +0300 phonon (4:4.2~svn825656-1) unstable; urgency=low * New snapshot, upload to unstable. -- Ana Beatriz Guerrero Lopez Sun, 29 Jun 2008 00:59:59 +0200 phonon (4:4.2~svn820171-2) experimental; urgency=low +++ Changes by Modestas Vainius: * Exclude phonon metapackage from automatic shlibdeps because libphonon4 itself ended up depending on it somehow. +++ Changes by Ana Beatriz Guerrero Lopez: * Update copyright file and write the BSD license instead of pointing at it. * Replace the N/A stuff with some more meaningful (unspecified). -- Debian Qt/KDE Maintainers Sat, 14 Jun 2008 00:54:52 +0300 phonon (4:4.2~svn820171-1) experimental; urgency=low +++ Changes by Ana Guerrero, Modestas Vainius, Pino Toscano and Sune Vuorela: * First release. This has been split out from kde4libs. * Add support for Phonon backends: - Make the phonon-backend-gstreamer provide a virtual phonon-backend. - Create a phonon metapackage that installs the phonon library and ensure a backend is installed too. -- Debian Qt/KDE Maintainers Fri, 13 Jun 2008 20:15:41 +0200 debian/phonon-backend-null.dc-config.in0000644000000000000000000000412212373124453015207 0ustar # START CONFIG[phonon-null-backend/isnt_functional] . /usr/share/debconf/confmodule # This function will show a warning about phonon-backend-null whenever phonon # metapackage or phonon-backend-null is being installed warn_about_phonon_backend_null() { local package=`basename "$0" .postinst` local show_warning=0 local recommended_backend="#RECOMMENDED_BACKEND#" local other_backends # Do not show the note when reconfiguring if [ "$1" = "reconfigure" ] || [ "DEBCONF_RECONFIGURE" = "1" ]; then return 0 fi if [ "$1" = "configure" ]; then # Display the warning only if both (phonon and phonon-backend-null) # are (about to be) installed. In order to avoid checking dpkg status # database, we can check Owners field of the debconf question. db_metaget phonon-backend-null/isnt_functional Owners OWNERS="`echo "$RET" | sed 's/, /\n/g'`" if echo "$OWNERS" | grep -q -e 'phonon$' -e 'phonon:' && echo "$OWNERS" | grep -q phonon-backend-null; then show_warning=1 fi # Finally show the note if needed (and it wasn't seen already) db_fget phonon-backend-null/isnt_functional seen || true if [ "$RET" != "true" ] && [ "$show_warning" = "1" ]; then other_backends="`LC_ALL=C apt-cache showpkg phonon-backend | \ awk '/: *$/{go=0} {if (go==1) print $1;} /^Reverse Provides: *$/ {go=1}' | \ sort -u | \ grep -v -e phonon-backend-null -e "$recommended_backend" | \ awk '{printf ", " $1}'`" db_settitle phonon-backend-null/isnt_functional_title || true db_subst phonon-backend-null/isnt_functional recommended_backend "$recommended_backend" db_subst phonon-backend-null/isnt_functional other_backends "$other_backends" db_input high phonon-backend-null/isnt_functional || true db_go || true fi fi } warn_about_phonon_backend_null "$@" # vim: set syntax=sh # END CONFIG[phonon-null-backend/isnt_functional] debian/libphonon4qt5experimental-dev.install0000644000000000000000000000031212373124453016456 0ustar debian/tmp-phonon-qt5/usr/include/phonon4qt5/KDE/Phonon/Experimental/ usr/include/phonon4qt5/KDE/Phonon/ debian/tmp-phonon-qt5/usr/include/phonon4qt5/phonon/experimental/ usr/include/phonon4qt5/phonon/ debian/watch0000644000000000000000000000020712373124453010222 0ustar version=3 opts=uversionmangle=s/^/4.6.0really/ \ ftp://ftp.kde.org/pub/kde/stable/phonon/([\d.]+)/src/ phonon-([\d.]+).tar.(?:bz2|xz) debian/compat0000644000000000000000000000000212373124453010370 0ustar 8 debian/libphononexperimental-dev.docs0000644000000000000000000000005012373124453015221 0ustar debian/phononexperimental/README.Debian debian/phonon4qt5.config0000644000000000000000000000012612373124453012377 0ustar #!/bin/sh set -e #INCLUDE debian/phonon4qt5-backend-null.dc-config.in# #DEBHELPER# debian/phonon4qt5-backend-null.templates0000644000000000000000000000141512373124453015467 0ustar Template: phonon4qt5-backend-null/isnt_functional_title Type: title _Description: Warning: Phonon4Qt5 is not functional Template: phonon4qt5-backend-null/isnt_functional Type: note #flag:comment:4 # Translators: do not translate variable names # only translate "(recommended)" (the one in parenthesis) _Description: Missing back-end for Phonon4Qt5 Applications using Phonon4Qt5 (the KF 5 multimedia framework) will produce no audio or video output, because only a dummy Phonon back-end is installed on this system. This is typically an unintended configuration. . To restore full Phonon4Qt5 multimedia capabilities, install one of the real Phonon4Qt5 back-end packages which are currently available for this system: . ${recommended_backend} (recommended)${other_backends} debian/source/0000755000000000000000000000000012373124453010472 5ustar debian/source/format0000644000000000000000000000001412373124453011700 0ustar 3.0 (quilt) debian/expand_vars.awk0000644000000000000000000000060112373124453012205 0ustar function readfile(file) { while (getline < file) { process() } } function process() { gsub(/#RECOMMENDED_BACKEND#/,recommended_backend); if (/^#INCLUDE [^#]+#$/) { readfile(substr($0,10,length($0)-9-1)); return } else if (/^INCLUDE#: .+/) { readfile(substr($0,11,length($0)-10)); return } print } { process() } debian/libphonon4.lintian-overrides0000644000000000000000000000016112373124453014624 0ustar libphonon4: shlibs-declares-dependency-on-other-package libphonon4: symbols-declares-dependency-on-other-package debian/libphononexperimental4.install0000644000000000000000000000011412373124453015250 0ustar usr/lib/*/libphononexperimental.so.4 usr/lib/*/libphononexperimental.so.4.* debian/phonon4qt5-backend-null.README.Debian0000644000000000000000000000174212373124453015612 0ustar About this backend ------------------ This backend is not a real Phonon4Qt5 backend. Therefore Phonon4Qt5 based (i.e. most KF5 and some Qt5) applications will produce no audio or video output. Typically, this is an undesirable configuration which you might have gotten to unintentionally. However, `phonon4qt5-backend-null' might be useful if you are not interested in multimedia and you don't want to install a number of pretty heavy packages which real backends typically depend on. If you wish to restore full Phonon4Qt5 multimedia capabilities, install a real Phonon4Qt5 backend with your favourite package manager. The recommended backend is `${recommended4qt5_backend}' but you may choose any other package which provides the `phonon4qt5-backend' virtual package. Use whatever works best with your system setup. Phonon4Qt5 backend package names typically start with 'phonon4qt5-backend-' string by convention. Have a look at the packages suggested by the `phonon4qt5' package as well. debian/libphonon4qt5experimental4.symbols0000644000000000000000000003115012373124453016014 0ustar # SymbolsHelper-Confirmed: 4.7.2 amd64 libphonon4qt5experimental.so.4 libphonon4qt5experimental4 #MINVER#, phononexperimental-abi-qt5-1 _ZN6Phonon10PacketPoolC1ERKS0_@Base 4.7.2 _ZN6Phonon10PacketPoolC1Eii@Base 4.7.2 _ZN6Phonon10PacketPoolC2ERKS0_@Base 4.7.2 _ZN6Phonon10PacketPoolC2Eii@Base 4.7.2 _ZN6Phonon10PacketPoolD1Ev@Base 4.7.2 _ZN6Phonon10PacketPoolD2Ev@Base 4.7.2 _ZN6Phonon10PacketPoolaSERKS0_@Base 4.7.2 _ZN6Phonon12Experimental11MediaSourceC1ERK5QListINS_11MediaSourceEE@Base 4.7.2 _ZN6Phonon12Experimental11MediaSourceC1ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE65536EEE@Base 4.7.2 _ZN6Phonon12Experimental11MediaSourceC1ERKS1_@Base 4.7.2 _ZN6Phonon12Experimental11MediaSourceC2ERK5QListINS_11MediaSourceEE@Base 4.7.2 _ZN6Phonon12Experimental11MediaSourceC2ERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE65536EEE@Base 4.7.2 _ZN6Phonon12Experimental11MediaSourceC2ERKS1_@Base 4.7.2 _ZN6Phonon12Experimental11MediaSourceaSERKS1_@Base 4.7.2 _ZN6Phonon12Experimental13Visualization11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon12Experimental13Visualization11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon12Experimental13Visualization16setVisualizationERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE4294967294EEE@Base 4.7.2 _ZN6Phonon12Experimental13Visualization16staticMetaObjectE@Base 4.7.2 _ZN6Phonon12Experimental13VisualizationC1EP7QObject@Base 4.7.2 _ZN6Phonon12Experimental13VisualizationC2EP7QObject@Base 4.7.2 _ZN6Phonon12Experimental13VisualizationD0Ev@Base 4.7.2 _ZN6Phonon12Experimental13VisualizationD1Ev@Base 4.7.2 _ZN6Phonon12Experimental13VisualizationD2Ev@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutput10endOfMediaEi@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutput11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutput11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutput11setDataSizeEi@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutput16staticMetaObjectE@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutput9dataReadyERK4QMapINS1_7ChannelE7QVectorIfEE@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutput9dataReadyERK4QMapINS1_7ChannelE7QVectorIsEE@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutput9setFormatENS1_6FormatE@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutputC1EP7QObject@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutputC2EP7QObject@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutputD0Ev@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutputD1Ev@Base 4.7.2 _ZN6Phonon12Experimental15AudioDataOutputD2Ev@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutput10endOfMediaEv@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutput10setRunningEb@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutput11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutput11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutput12displayFrameExx@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutput12frameForTimeEx@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutput16staticMetaObjectE@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutput4stopEv@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutput5startEv@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutputC1EP7QObject@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutputC2EP7QObject@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutputD0Ev@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutputD1Ev@Base 4.7.2 _ZN6Phonon12Experimental15VideoDataOutputD2Ev@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput210endOfMediaEv@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput210frameReadyERKNS0_11VideoFrame2E@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput211qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput211qt_metacastEPKc@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput216endOfMediaSignalEv@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput216frameReadySignalERKNS0_11VideoFrame2E@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput216staticMetaObjectE@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput2C1EP7QObject@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput2C2EP7QObject@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput2D0Ev@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput2D1Ev@Base 4.7.2 _ZN6Phonon12Experimental16VideoDataOutput2D2Ev@Base 4.7.2 _ZN6Phonon12Experimental19BackendCapabilities28availableVideoCaptureDevicesEv@Base 4.7.2 _ZN6Phonon12Experimental23AbstractAudioDataOutput10setRunningEb@Base 4.7.2 _ZN6Phonon12Experimental23AbstractAudioDataOutput17setAllowedFormatsERK4QSetINS0_11AudioFormatEE@Base 4.7.2 _ZN6Phonon12Experimental23AbstractAudioDataOutput4stopEv@Base 4.7.2 _ZN6Phonon12Experimental23AbstractAudioDataOutput5startEv@Base 4.7.2 _ZN6Phonon12Experimental23AbstractAudioDataOutputC1Ev@Base 4.7.2 _ZN6Phonon12Experimental23AbstractAudioDataOutputC2Ev@Base 4.7.2 _ZN6Phonon12Experimental23AbstractAudioDataOutputD0Ev@Base 4.7.2 _ZN6Phonon12Experimental23AbstractAudioDataOutputD1Ev@Base 4.7.2 _ZN6Phonon12Experimental23AbstractAudioDataOutputD2Ev@Base 4.7.2 _ZN6Phonon12Experimental23AbstractVideoDataOutput10setRunningEb@Base 4.7.2 _ZN6Phonon12Experimental23AbstractVideoDataOutput17setAllowedFormatsERK4QSetINS0_11VideoFrame26FormatEE@Base 4.7.2 _ZN6Phonon12Experimental23AbstractVideoDataOutput4stopEv@Base 4.7.2 _ZN6Phonon12Experimental23AbstractVideoDataOutput5startEv@Base 4.7.2 _ZN6Phonon12Experimental23AbstractVideoDataOutputC1ERNS0_30AbstractVideoDataOutputPrivateE@Base 4.7.2 _ZN6Phonon12Experimental23AbstractVideoDataOutputC1Ev@Base 4.7.2 _ZN6Phonon12Experimental23AbstractVideoDataOutputC2ERNS0_30AbstractVideoDataOutputPrivateE@Base 4.7.2 _ZN6Phonon12Experimental23AbstractVideoDataOutputC2Ev@Base 4.7.2 _ZN6Phonon12Experimental23AbstractVideoDataOutputD0Ev@Base 4.7.2 _ZN6Phonon12Experimental23AbstractVideoDataOutputD1Ev@Base 4.7.2 _ZN6Phonon12Experimental23AbstractVideoDataOutputD2Ev@Base 4.7.2 _ZN6Phonon12Experimental7Factory19createVisualizationEP7QObject@Base 4.7.2 _ZN6Phonon12Experimental7Factory21createAudioDataOutputEP7QObject@Base 4.7.2 _ZN6Phonon12Experimental7Factory6senderEv@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture11qt_metacastEPKc@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture12stateChangedENS_5StateES2_@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture16staticMetaObjectE@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture17setCaptureDevicesENS_15CaptureCategoryE@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture21setAudioCaptureDeviceENS_15CaptureCategoryE@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture21setAudioCaptureDeviceENS_8CategoryE@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture21setAudioCaptureDeviceERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE4EEE@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture21setVideoCaptureDeviceENS_15CaptureCategoryE@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture21setVideoCaptureDeviceENS_8CategoryE@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture21setVideoCaptureDeviceERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE5EEE@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture21setVideoCaptureDeviceERKNS_17ObjectDescriptionILNS_21ObjectDescriptionTypeE65536EEE@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture4stopEv@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture5pauseEv@Base 4.7.2 _ZN6Phonon12Experimental9AvCapture5startEv@Base 4.7.2 _ZN6Phonon12Experimental9AvCaptureC1ENS_15CaptureCategoryEP7QObject@Base 4.7.2 _ZN6Phonon12Experimental9AvCaptureC1EP7QObject@Base 4.7.2 _ZN6Phonon12Experimental9AvCaptureC2ENS_15CaptureCategoryEP7QObject@Base 4.7.2 _ZN6Phonon12Experimental9AvCaptureC2EP7QObject@Base 4.7.2 _ZN6Phonon12Experimental9AvCaptureD0Ev@Base 4.7.2 _ZN6Phonon12Experimental9AvCaptureD1Ev@Base 4.7.2 _ZN6Phonon12Experimental9AvCaptureD2Ev@Base 4.7.2 _ZN6Phonon19AbstractVideoOutputD0Ev@Base 4.7.2 _ZN6Phonon19AbstractVideoOutputD1Ev@Base 4.7.2 _ZN6Phonon19AbstractVideoOutputD2Ev@Base 4.7.2 _ZN6Phonon6Packet4dataEv@Base 4.7.2 _ZN6Phonon6Packet7setSizeEi@Base 4.7.2 _ZN6Phonon6PacketC1ERKS0_@Base 4.7.2 _ZN6Phonon6PacketC1ERNS_10PacketPoolE@Base 4.7.2 _ZN6Phonon6PacketC1ERNS_13PacketPrivateE@Base 4.7.2 _ZN6Phonon6PacketC1Ev@Base 4.7.2 _ZN6Phonon6PacketC2ERKS0_@Base 4.7.2 _ZN6Phonon6PacketC2ERNS_10PacketPoolE@Base 4.7.2 _ZN6Phonon6PacketC2ERNS_13PacketPrivateE@Base 4.7.2 _ZN6Phonon6PacketC2Ev@Base 4.7.2 _ZN6Phonon6PacketD1Ev@Base 4.7.2 _ZN6Phonon6PacketD2Ev@Base 4.7.2 _ZN6Phonon6PacketaSERKS0_@Base 4.7.2 _ZNK6Phonon10PacketPool10packetSizeEv@Base 4.7.2 _ZNK6Phonon10PacketPool13unusedPacketsEv@Base 4.7.2 _ZNK6Phonon10PacketPool8poolSizeEv@Base 4.7.2 _ZNK6Phonon12Experimental11MediaSource10substreamsEv@Base 4.7.2 _ZNK6Phonon12Experimental11MediaSource18videoCaptureDeviceEv@Base 4.7.2 _ZNK6Phonon12Experimental11MediaSourceeqERKS1_@Base 4.7.2 _ZNK6Phonon12Experimental12GlobalConfig21videoCaptureDeviceForENS_15CaptureCategoryEi@Base 4.7.2 _ZNK6Phonon12Experimental12GlobalConfig21videoCaptureDeviceForENS_8CategoryEi@Base 4.7.2 _ZNK6Phonon12Experimental12GlobalConfig25videoCaptureDeviceListForENS_15CaptureCategoryEi@Base 4.7.2 _ZNK6Phonon12Experimental12GlobalConfig25videoCaptureDeviceListForENS_8CategoryEi@Base 4.7.2 _ZNK6Phonon12Experimental13Visualization10metaObjectEv@Base 4.7.2 _ZNK6Phonon12Experimental13Visualization13visualizationEv@Base 4.7.2 _ZNK6Phonon12Experimental15AudioDataOutput10metaObjectEv@Base 4.7.2 _ZNK6Phonon12Experimental15AudioDataOutput10sampleRateEv@Base 4.7.2 _ZNK6Phonon12Experimental15AudioDataOutput6formatEv@Base 4.7.2 _ZNK6Phonon12Experimental15AudioDataOutput8dataSizeEv@Base 4.7.2 _ZNK6Phonon12Experimental15VideoDataOutput10metaObjectEv@Base 4.7.2 _ZNK6Phonon12Experimental15VideoDataOutput7latencyEv@Base 4.7.2 _ZNK6Phonon12Experimental15VideoDataOutput9isRunningEv@Base 4.7.2 _ZNK6Phonon12Experimental16VideoDataOutput210metaObjectEv@Base 4.7.2 _ZNK6Phonon12Experimental23AbstractAudioDataOutput14allowedFormatsEv@Base 4.7.2 _ZNK6Phonon12Experimental23AbstractAudioDataOutput9isRunningEv@Base 4.7.2 _ZNK6Phonon12Experimental23AbstractVideoDataOutput14allowedFormatsEv@Base 4.7.2 _ZNK6Phonon12Experimental23AbstractVideoDataOutput9isRunningEv@Base 4.7.2 _ZNK6Phonon12Experimental9AvCapture10metaObjectEv@Base 4.7.2 _ZNK6Phonon12Experimental9AvCapture18audioCaptureDeviceEv@Base 4.7.2 _ZNK6Phonon12Experimental9AvCapture18videoCaptureDeviceEv@Base 4.7.2 _ZNK6Phonon12Experimental9AvCapture5stateEv@Base 4.7.2 _ZNK6Phonon6Packet4dataEv@Base 4.7.2 _ZNK6Phonon6Packet4sizeEv@Base 4.7.2 _ZNK6Phonon6Packet6isNullEv@Base 4.7.2 _ZNK6Phonon6Packet8capacityEv@Base 4.7.2 _ZNK6Phonon6PacketeqERKS0_@Base 4.7.2 _ZNK6Phonon6PacketneERKS0_@Base 4.7.2 _ZTIN6Phonon12Experimental13VisualizationE@Base 4.7.2 _ZTIN6Phonon12Experimental15AudioDataOutputE@Base 4.7.2 _ZTIN6Phonon12Experimental15VideoDataOutputE@Base 4.7.2 _ZTIN6Phonon12Experimental16VideoDataOutput2E@Base 4.7.2 _ZTIN6Phonon12Experimental23AbstractAudioDataOutputE@Base 4.7.2 _ZTIN6Phonon12Experimental23AbstractVideoDataOutputE@Base 4.7.2 _ZTIN6Phonon12Experimental9AvCaptureE@Base 4.7.2 _ZTIN6Phonon19AbstractVideoOutputE@Base 4.7.2 _ZTSN6Phonon12Experimental13VisualizationE@Base 4.7.2 _ZTSN6Phonon12Experimental15AudioDataOutputE@Base 4.7.2 _ZTSN6Phonon12Experimental15VideoDataOutputE@Base 4.7.2 _ZTSN6Phonon12Experimental16VideoDataOutput2E@Base 4.7.2 _ZTSN6Phonon12Experimental23AbstractAudioDataOutputE@Base 4.7.2 _ZTSN6Phonon12Experimental23AbstractVideoDataOutputE@Base 4.7.2 _ZTSN6Phonon12Experimental9AvCaptureE@Base 4.7.2 _ZTSN6Phonon19AbstractVideoOutputE@Base 4.7.2 _ZTVN6Phonon12Experimental13VisualizationE@Base 4.7.2 _ZTVN6Phonon12Experimental15AudioDataOutputE@Base 4.7.2 _ZTVN6Phonon12Experimental15VideoDataOutputE@Base 4.7.2 _ZTVN6Phonon12Experimental16VideoDataOutput2E@Base 4.7.2 _ZTVN6Phonon12Experimental23AbstractAudioDataOutputE@Base 4.7.2 _ZTVN6Phonon12Experimental23AbstractVideoDataOutputE@Base 4.7.2 _ZTVN6Phonon12Experimental9AvCaptureE@Base 4.7.2 _ZTVN6Phonon19AbstractVideoOutputE@Base 4.7.2 (c++)"non-virtual thunk to Phonon::Experimental::AudioDataOutput::~AudioDataOutput()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::Experimental::AvCapture::~AvCapture()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::Experimental::VideoDataOutput2::endOfMedia()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::Experimental::VideoDataOutput2::frameReady(Phonon::Experimental::VideoFrame2 const&)@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::Experimental::VideoDataOutput2::~VideoDataOutput2()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::Experimental::VideoDataOutput::~VideoDataOutput()@Base" 4.7.2 (c++)"non-virtual thunk to Phonon::Experimental::Visualization::~Visualization()@Base" 4.7.2 debian/installgen0000644000000000000000000000035512373124453011260 0ustar [phonon-backend-gstreamer] dst:gstreamer [phonon-backend-xine] dst:xine [libphonon4] dst:usr/lib/libphonon.*\.so\.4($|\.) [libphonon-dev] dst:usr/include/.*(?i:phonon)/.* dst:usr/lib/libphonon.*\.so$ dst:usr/share/dbus-\d+/ dst:\.pc$ debian/phonon4qt5.templates0000644000000000000000000000007212373124453013130 0ustar INCLUDE#: debian/phonon4qt5-backend-null/DEBIAN/templates debian/phonon-backend-null.config0000644000000000000000000000012212373124453014212 0ustar #!/bin/sh set -e #INCLUDE debian/phonon-backend-null.dc-config.in# #DEBHELPER# debian/copyright0000644000000000000000000003253712373124453011137 0ustar This package was debianized by the Debian Qt/KDE Maintainers on Thu, 12 Jun 2008 15:01:17 +0200 It was downloaded from http://websvn.kde.org/branches/phonon/4.3/ Upstream Author: Matthias Kretz and others. The Debian packaging (debian/*) is © 2008-2011, Debian Qt/KDE Maintainers and is licensed under the LGPL version 2 or later, see `/usr/share/common-licenses/LGPL-2 Copyright: © 2004-2008 Matthias Kretz Copyright: © 2005-2008 Cláudio da Silveira Copyright: © 2005-2008 Pinheiro Copyright: © 2010 Casian Andrei Copyright: © 2009 Alan Jones Copyright: © 2009-2010 Colin Guthrie Copyright: © 2007 Will Stephenson Copyright: © 2002-2009 Kopete Copyright: © 2006, 2008-2009 Alexander Neundorf Copyright: © 2010 Harald Sitter Copyright: © 2006 David Faure Copyright: © 2004 Takafumi Mizuno Copyright: © 2006-2008 Ricardo Villalba Copyright: © 2010 Mark Kretschmann Copyright: © 2006 Allen Winter Copyright: © 2008 Helio Chissini de Castro Copyright: © 2008 Laurent Montel Copyright: © 2009 Marcus Hufgard Copyright: © 2002 Insight Consortium. All Rights Reserved. Copyright: © 2006 Tim Beaulen Copyright: © 2008 Ian Monroe License for all components unless stated otherwise: -- GNU Lesser General Public License, version 2.1 or later (LGPL-2.1+) 214 files are licensed under this license: phonon/* phonon/experimental/* excluding: -? phonon/experimental/CMakeLists.txt -+ phonon/experimental/abstractvideodataoutput.cpp -+ phonon/experimental/backendcapabilities.cpp -+ phonon/experimental/factory.cpp -+ phonon/experimental/mediasource.cpp -+ phonon/experimental/packet.cpp -+ phonon/experimental/packet.h -+ phonon/experimental/packet_p.h -+ phonon/experimental/packetpool.cpp -+ phonon/experimental/packetpool.h -+ phonon/experimental/packetpool_p.h + phonon/experimental/tests/videodataoutputtest.cpp phonon/experimental/tests/avcaptureapptest/* excluding: -? phonon/experimental/tests/avcaptureapptest/CMakeLists.txt phonon/tests/* excluding: -? phonon/tests/CMakeLists.txt -+ phonon/tests/audiodevicelisttest.cpp -+ phonon/tests/bytestreamtest.cpp -+ phonon/tests/bytestreamtest.h -+ phonon/tests/bytestreamtest2.cpp -+ phonon/tests/bytestreamtest2.h -+ phonon/tests/lockfreequeuetest.cpp -+ phonon/tests/lockfreequeuetest2.cpp -+ phonon/tests/mediaobjecttest.cpp -+ phonon/tests/mediaplayer.cpp -+ phonon/tests/methodtest.cpp -+ phonon/tests/pathtest.cpp phonon/tests/captureapptest/* excluding: -? phonon/tests/captureapptest/CMakeLists.txt phonon/tests/fakebackend/* excluding: -? phonon/tests/fakebackend/CMakeLists.txt | This package is free software; you can redistribute it and/or | modify it under the terms of the GNU Library General Public | License version 2.1 as published by the Free Software Foundation | | This package is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | Lesser General Public License for more details. | | You should have received a copy of the GNU Lesser General Public | License along with this package; if not, write to the Free Software | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU Lesser General Public License version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1 -- Other used licenses: -- | Redistribution and use in source and binary forms, with or without | modification, are permitted provided that the following conditions | are met: | | 1. Redistributions of source code must retain the copyright | notice, this list of conditions and the following disclaimer. | 2. Redistributions in binary form must reproduce the copyright | notice, this list of conditions and the following disclaimer in the | documentation and/or other materials provided with the distribution. | 3. The name of the author may not be used to endorse or promote products | derived from this software without specific prior written permission. | | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. cmake/* + */CMakeLists.txt + CMakeLists.txt -- -- BSD-like 2-clause License: 2 files are licensed under this license: + phonon/experimental/videocapturedevice/videocapture/bayer.cpp + phonon/experimental/videocapturedevice/videocapture/bayer.h | Sonix SN9C101 based webcam basic I/F routines | Copyright (C) 2004 Takafumi Mizuno | | Redistribution and use in source and binary forms, with or without | modification, are permitted provided that the following conditions | are met: | 1. Redistributions of source code must retain the above copyright | notice, this list of conditions and the following disclaimer. | 2. Redistributions in binary form must reproduce the above copyright | notice, this list of conditions and the following disclaimer in the | documentation and/or other materials provided with the distribution. | | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | SUCH DAMAGE. -- -- GNU General Public License, version 2 or version 3 (GPL-2or3) The following file is licensed under this license: + phonon/tests/pathtest.cpp | This program is free software; you can redistribute it and/or | modify it under the terms of the GNU General Public License as | published by the Free Software Foundation; either version 2 of | the License, or (at your option) version 3. | This program is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | GNU General Public License for more details. On Debian systems, the complete text of the: * GNU General Public License version 2 can be found in /usr/share/common-licenses/GPL-2 * GNU General Public License version 3 can be found in /usr/share/common-licenses/GPL-3 -- -- GNU General Public License, version 2 or later (GPL-2+) 17 files are licensed under this license: + phonon/experimental/abstractvideodataoutput.cpp + phonon/experimental/backendcapabilities.cpp + phonon/experimental/factory.cpp + phonon/experimental/mediasource.cpp + phonon/experimental/videocapturedevice/videocapturetestapp/* + phonon/tests/audiodevicelisttest.cpp + phonon/tests/bytestreamtest.cpp + phonon/tests/bytestreamtest.h + phonon/tests/bytestreamtest2.cpp + phonon/tests/bytestreamtest2.h + phonon/tests/lockfreequeuetest.cpp + phonon/tests/lockfreequeuetest2.cpp + phonon/tests/mediaobjecttest.cpp + phonon/tests/mediaplayer.cpp + phonon/tests/methodtest.cpp | This program is free software; you can redistribute it and/or | modify it under the terms of the GNU General Public License as | published by the Free Software Foundation; either version 2 of | the License or (at your option) version 3 or any later version | accepted by the membership of KDE e.V. (or its successor approved | by the membership of KDE e.V.), Nokia Corporation (or its successors, | if any) and the KDE Free Qt Foundation, which shall act as a proxy | defined in Section 14 of version 3 of the license. | | This program is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | GNU General Public License for more details. On Debian systems, the complete text of the * GNU General Public License version 2 can be found in /usr/share/common-licenses/GPL-2 * GNU General Public License version 3 can be found in /usr/share/common-licenses/GPL-3 -- -- GNU General Public License, version 3 or later (GPL-3+) 2 files are licensed under this license: + phonon/experimental/videocapturedevice/videocapture/videodevicevector.cpp + phonon/experimental/videocapturedevice/videocapture/videodevicevector.h | Copyright (c) 2009 by Alan Jones | | Kopete (c) 2002-2009 by the Kopete developers | | ************************************************************************* | * * | * This library is free software; you can redistribute it and/or * | * modify it under the terms of the GNU General Public * | * License as published by the Free Software Foundation; either * | * version 3 of the License, or (at your option) any later version. * | * * | * This program is distributed in the hope that it will be useful, * | * but WITHOUT ANY WARRANTY; without even the implied warranty of * | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * | * GNU General Public License for more details. * | * * | * You should have received a copy of the GNU General Public License * | * along with this program. If not, see . * | ************************************************************************* On Debian systems, the complete text of the GNU General Public License version 3 can be found in /usr/share/common-licenses/GPL-3 -- -- GNU Library General Public License, version 2 (LGPL-2) 6 files are licensed under this license: + phonon/experimental/packet.cpp + phonon/experimental/packet.h + phonon/experimental/packet_p.h + phonon/experimental/packetpool.cpp + phonon/experimental/packetpool.h + phonon/experimental/packetpool_p.h | Copyright (C) 2008 Matthias Kretz | | This program is free software; you can redistribute it and/or | modify it under the terms of the GNU Library General Public | License as published by the Free Software Foundation; either | version 2 of the License, or (at your option) version 3. | | This library is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | Library General Public License for more details. On Debian systems, the complete text of the GNU Library General Public License version 2 can be found in /usr/share/common-licenses/LGPL-2 -- -- GNU Library General Public License, version 2 or later (LGPL-2+) 10 files are licensed under this license: phonon/experimental/videocapturedevice/videocapture/* excluding: -? phonon/experimental/videocapturedevice/videocapture/CMakeLists.txt -+ phonon/experimental/videocapturedevice/videocapture/bayer.cpp -+ phonon/experimental/videocapturedevice/videocapture/bayer.h -? phonon/experimental/videocapturedevice/videocapture/sonix_compress.cpp -? phonon/experimental/videocapturedevice/videocapture/sonix_compress.h -+ phonon/experimental/videocapturedevice/videocapture/videodevicevector.cpp -+ phonon/experimental/videocapturedevice/videocapture/videodevicevector.h | This library is free software; you can redistribute it and/or | modify it under the terms of the GNU Lesser General Public | License as published by the Free Software Foundation; either | version 2 of the License, or (at your option) any later version. On Debian systems, the complete text of the GNU Library General Public License version 2 can be found in /usr/share/common-licenses/LGPL-2 -- debian/phonon.config0000644000000000000000000000012212373124453011655 0ustar #!/bin/sh set -e #INCLUDE debian/phonon-backend-null.dc-config.in# #DEBHELPER# debian/expand4qt5_vars.awk0000644000000000000000000000061112373124453012724 0ustar function readfile(file) { while (getline < file) { process() } } function process() { gsub(/#RECOMMENDED4QT5_BACKEND#/,recommended4qt5_backend); if (/^#INCLUDE [^#]+#$/) { readfile(substr($0,10,length($0)-9-1)); return } else if (/^INCLUDE#: .+/) { readfile(substr($0,11,length($0)-10)); return } print } { process() } debian/phonon-backend-null.templates0000644000000000000000000000136112373124453014751 0ustar Template: phonon-backend-null/isnt_functional_title Type: title _Description: Warning: Phonon is not functional Template: phonon-backend-null/isnt_functional Type: note #flag:comment:4 # Translators: do not translate variable names # only translate "(recommended)" (the one in parenthesis) _Description: Missing back-end for Phonon Applications using Phonon (the Qt 4 multimedia framework) will produce no audio or video output, because only a dummy Phonon back-end is installed on this system. This is typically an unintended configuration. . To restore full Phonon multimedia capabilities, install one of the real Phonon back-end packages which are currently available for this system: . ${recommended_backend} (recommended)${other_backends}