summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-02-17 06:59:59 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-02-17 13:50:53 +0100
commit341639fe80165455c8b4d4b5ac4703e588b15c88 (patch)
treef251e2fd7afbfbeb30bb45cc8806d359b57cd11a /doc
parent21a0451167bb40035688859302a10d337e2bae1b (diff)
doc/examples: remove pathes from doxy examples
This makes the examples page less cluttered Reviewed-by: Clément Bœsch <u@pkh.me> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/avio_reading.c2
-rw-r--r--doc/examples/demuxing_decoding.c2
-rw-r--r--doc/examples/filtering_audio.c2
-rw-r--r--doc/examples/filtering_video.c2
-rw-r--r--doc/examples/metadata.c2
-rw-r--r--doc/examples/muxing.c2
-rw-r--r--doc/examples/remuxing.c2
-rw-r--r--doc/examples/resampling_audio.c2
-rw-r--r--doc/examples/scaling_video.c2
9 files changed, 9 insertions, 9 deletions
diff --git a/doc/examples/avio_reading.c b/doc/examples/avio_reading.c
index 9a1a6d2b60..45dbd4725a 100644
--- a/doc/examples/avio_reading.c
+++ b/doc/examples/avio_reading.c
@@ -26,7 +26,7 @@
*
* Make libavformat demuxer access media content through a custom
* AVIOContext read callback.
- * @example doc/examples/avio_reading.c
+ * @example avio_reading.c
*/
#include <libavcodec/avcodec.h>
diff --git a/doc/examples/demuxing_decoding.c b/doc/examples/demuxing_decoding.c
index 0ef5df7676..077fc87b5b 100644
--- a/doc/examples/demuxing_decoding.c
+++ b/doc/examples/demuxing_decoding.c
@@ -26,7 +26,7 @@
*
* Show how to use the libavformat and libavcodec API to demux and
* decode audio and video data.
- * @example doc/examples/demuxing_decoding.c
+ * @example demuxing_decoding.c
*/
#include <libavutil/imgutils.h>
diff --git a/doc/examples/filtering_audio.c b/doc/examples/filtering_audio.c
index 2ceee6af1e..46595fb3b8 100644
--- a/doc/examples/filtering_audio.c
+++ b/doc/examples/filtering_audio.c
@@ -25,7 +25,7 @@
/**
* @file
* API example for audio decoding and filtering
- * @example doc/examples/filtering_audio.c
+ * @example filtering_audio.c
*/
#include <unistd.h>
diff --git a/doc/examples/filtering_video.c b/doc/examples/filtering_video.c
index 67c8a8bc10..8d595735b3 100644
--- a/doc/examples/filtering_video.c
+++ b/doc/examples/filtering_video.c
@@ -24,7 +24,7 @@
/**
* @file
* API example for decoding and filtering
- * @example doc/examples/filtering_video.c
+ * @example filtering_video.c
*/
#define _XOPEN_SOURCE 600 /* for usleep */
diff --git a/doc/examples/metadata.c b/doc/examples/metadata.c
index 9c1bcd79d9..f73c267369 100644
--- a/doc/examples/metadata.c
+++ b/doc/examples/metadata.c
@@ -23,7 +23,7 @@
/**
* @file
* Shows how the metadata API can be used in application programs.
- * @example doc/examples/metadata.c
+ * @example metadata.c
*/
#include <stdio.h>
diff --git a/doc/examples/muxing.c b/doc/examples/muxing.c
index 9483607611..ad8e027148 100644
--- a/doc/examples/muxing.c
+++ b/doc/examples/muxing.c
@@ -26,7 +26,7 @@
*
* Output a media file in any supported libavformat format. The default
* codecs are used.
- * @example doc/examples/muxing.c
+ * @example muxing.c
*/
#include <stdlib.h>
diff --git a/doc/examples/remuxing.c b/doc/examples/remuxing.c
index e58393bf53..cdb2f6b329 100644
--- a/doc/examples/remuxing.c
+++ b/doc/examples/remuxing.c
@@ -25,7 +25,7 @@
* libavformat/libavcodec demuxing and muxing API example.
*
* Remux streams from one container format to another.
- * @example doc/examples/remuxing.c
+ * @example remuxing.c
*/
#include <libavutil/timestamp.h>
diff --git a/doc/examples/resampling_audio.c b/doc/examples/resampling_audio.c
index a15e04226b..f743cbe550 100644
--- a/doc/examples/resampling_audio.c
+++ b/doc/examples/resampling_audio.c
@@ -21,7 +21,7 @@
*/
/**
- * @example doc/examples/resampling_audio.c
+ * @example resampling_audio.c
* libswresample API use example.
*/
diff --git a/doc/examples/scaling_video.c b/doc/examples/scaling_video.c
index be2c510ffa..fcb98b7489 100644
--- a/doc/examples/scaling_video.c
+++ b/doc/examples/scaling_video.c
@@ -23,7 +23,7 @@
/**
* @file
* libswscale API use example.
- * @example doc/examples/scaling_video.c
+ * @example scaling_video.c
*/
#include <libavutil/imgutils.h>