Commit 2eac9327 authored by Masaya TAKAHASHI's avatar Masaya TAKAHASHI Committed by The Qt Project
Browse files

Doc: Fix missing element name in Video


Change-Id: I2237bf4a1da632f0528cfb9e6b32ea88f3930350
Reviewed-by: default avatarJerome Pasion <jerome.pasion@digia.com>
Reviewed-by: default avatarYoann Lopes <yoann.lopes@digia.com>
parent 07f20b8a
No related merge requests found
Showing with 15 additions and 15 deletions
...@@ -186,14 +186,14 @@ Item { ...@@ -186,14 +186,14 @@ Item {
This property holds the error state of the video. It can be one of: This property holds the error state of the video. It can be one of:
\list \list
\li NoError - there is no current error. \li MediaPlayer.NoError - there is no current error.
\li ResourceError - the video cannot be played due to a problem \li MediaPlayer.ResourceError - the video cannot be played due to a problem
allocating resources. allocating resources.
\li FormatError - the video format is not supported. \li MediaPlayer.FormatError - the video format is not supported.
\li NetworkError - the video cannot be played due to network issues. \li MediaPlayer.NetworkError - the video cannot be played due to network issues.
\li AccessDenied - the video cannot be played due to insufficient \li MediaPlayer.AccessDenied - the video cannot be played due to insufficient
permissions. permissions.
\li ServiceMissing - the video cannot be played because the media \li MediaPlayer.ServiceMissing - the video cannot be played because the media
service could not be service could not be
instantiated. instantiated.
\endlist \endlist
...@@ -295,15 +295,15 @@ Item { ...@@ -295,15 +295,15 @@ Item {
This property holds the status of media loading. It can be one of: This property holds the status of media loading. It can be one of:
\list \list
\li NoMedia - no media has been set. \li MediaPlayer.NoMedia - no media has been set.
\li Loading - the media is currently being loaded. \li MediaPlayer.Loading - the media is currently being loaded.
\li Loaded - the media has been loaded. \li MediaPlayer.Loaded - the media has been loaded.
\li Buffering - the media is buffering data. \li MediaPlayer.Buffering - the media is buffering data.
\li Stalled - playback has been interrupted while the media is buffering data. \li MediaPlayer.Stalled - playback has been interrupted while the media is buffering data.
\li Buffered - the media has buffered data. \li MediaPlayer.Buffered - the media has buffered data.
\li EndOfMedia - the media has played to the end. \li MediaPlayer.EndOfMedia - the media has played to the end.
\li InvalidMedia - the media cannot be played. \li MediaPlayer.InvalidMedia - the media cannot be played.
\li UnknownStatus - the status of the media cannot be determined. \li MediaPlayer.UnknownStatus - the status of the media cannot be determined.
\endlist \endlist
*/ */
property alias status: player.status property alias status: player.status
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment