summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Kiagiadakis <george.kiagiadakis@collabora.co.uk>2011-01-20 22:10:22 +0200
committerGeorge Kiagiadakis <george.kiagiadakis@collabora.co.uk>2011-01-20 22:10:22 +0200
commit67324ffec8e1e1909b49f75a013bdfb9328566d6 (patch)
tree415e36bbcb072cd443832de80c8230381f1d8030
parent51a8b92320aa9eb5da15b9913e73edc776caaa4b (diff)
Make the player example appear whole in the documentation and write a few words about it too.
-rw-r--r--examples/examples.dox21
1 files changed, 20 insertions, 1 deletions
diff --git a/examples/examples.dox b/examples/examples.dox
index e7fb4a3..b037f88 100644
--- a/examples/examples.dox
+++ b/examples/examples.dox
@@ -17,7 +17,26 @@
*/
/*! \example player/main.cpp
- * This is an example audio player using QtGStreamer
+ * This is an example audio/video player using QtGStreamer.
+ *
+ * In this example, the GStreamer playbin2 element is used to perform most
+ * of the tasks. Our code is mostly integrating the UI with the pipeline,
+ * handling state changes, doing queries to learn about the position
+ * and duration of the stream, performing seeking, etc...
+ *
+ * player.h:
+ * \include player/player.h
+ *
+ * player.cpp:
+ * \include player/player.cpp
+ *
+ * mediaapp.h:
+ * \include player/mediaapp.h
+ *
+ * mediaapp.cpp:
+ * \include player/mediaapp.cpp
+ *
+ * main.cpp:
*/
/*! \example appsink-src/main.cpp