Split QMediaRecorder::setEncodingSettings to separate setters.

It's easier to change only the necessary part of encoding settings.
The settings are applied during the next event loop or before recording
starts.

Change-Id: Ia2b5c93826a302212aa7f79a0c75e4cbaaf1dd7a
Reviewed-by: Ling Hu <ling.hu@nokia.com>
Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
This commit is contained in:
Dmytro Poplavskiy
2012-01-31 10:08:49 +10:00
committed by Qt by Nokia
parent 9d3102efe2
commit a22a0195f1
19 changed files with 231 additions and 80 deletions

View File

@@ -101,21 +101,21 @@ QMediaContainerControl::~QMediaContainerControl()
*/
/*!
\fn QMediaContainerControl::containerMimeType() const
\fn QMediaContainerControl::containerFormat() const
Returns the MIME type of the selected container format.
Returns the selected container format.
*/
/*!
\fn QMediaContainerControl::setContainerMimeType(const QString &mimeType)
\fn QMediaContainerControl::setContainerFormat(const QString &format)
Sets the current container format to the format identified by the given \a mimeType.
Sets the current container \a format.
*/
/*!
\fn QMediaContainerControl::containerDescription(const QString &mimeType) const
\fn QMediaContainerControl::containerDescription(const QString &format) const
Returns a description of the container format identified by the given \a mimeType.
Returns a description of the container \a format.
*/
#include "moc_qmediacontainercontrol.cpp"