diff --git a/doc/faq.texi b/doc/faq.texi
index 351ba42ff2b861a8ed5d806b7cbbf6b4afa46287..3a57c3df2944625d5a557b4f7e5aaa552214c4ff 100644
--- a/doc/faq.texi
+++ b/doc/faq.texi
@@ -52,6 +52,10 @@ Use @file{-} as filename.
 
 @chapter Development
 
+@section Are there examples of use of the FFmpeg libraries libavcodec and libavformat ?
+
+Yes. Read the Developers Guide of the FFmpeg documentation.
+
 @section Can you support my C compiler XXX ?
 
 No. Only GCC is supported. GCC is ported on most systems available and I
diff --git a/doc/ffmpeg-doc.texi b/doc/ffmpeg-doc.texi
index d4ef24ffa78cb383b7bbd36254a88bede2975c96..3af1afe55f99c6ea209fd6212b4cf1989c07d724 100644
--- a/doc/ffmpeg-doc.texi
+++ b/doc/ffmpeg-doc.texi
@@ -467,8 +467,10 @@ valid results, then crashes.
   decoding). See @file{libavcodec/apiexample.c} to see how to use it.
 
 @item libavformat is the library containing the file formats handling (mux and
-  demux code for several formats). (no example yet, the API is likely to
-  evolve).
+  demux code for several formats). See @file{ffplay.c} to use it in a
+player. See @file{output_example.c} to use it to generate audio or video
+streams.
+
 @end itemize
 
 @section Integrating libavcodec or libavformat in your program