From a7990287aa653e2e296246c52dbd8f0d600c71aa Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Tue, 19 Mar 2013 20:02:16 +0100 Subject: [PATCH] doc: move ffmpeg-devices.texi content to separated file This should simplify inclusion in monolithic tool manuals. --- doc/devices.texi | 21 +++++++++++++++++++++ doc/ffmpeg-devices.texi | 22 +--------------------- 2 files changed, 22 insertions(+), 21 deletions(-) create mode 100644 doc/devices.texi diff --git a/doc/devices.texi b/doc/devices.texi new file mode 100644 index 0000000000..8f8b22a94b --- /dev/null +++ b/doc/devices.texi @@ -0,0 +1,21 @@ +@chapter Device Options +@c man begin DEVICE OPTIONS + +The libavdevice library provides the same interface as +libavformat. Namely, an input device is considered like a demuxer, and +an output device like a muxer, and the interface and generic device +options are the same provided by libavformat (see the ffmpeg-formats +manual). + +In addition each input or output device may support so-called private +options, which are specific for that component. + +Options may be set by specifying -@var{option} @var{value} in the +FFmpeg tools, or by setting the value explicitly in the device +@code{AVFormatContext} options or using the @file{libavutil/opt.h} API +for programmatic use. + +@c man end DEVICE OPTIONS + +@include indevs.texi +@include outdevs.texi diff --git a/doc/ffmpeg-devices.texi b/doc/ffmpeg-devices.texi index 9e004d58a0..b44bd7285b 100644 --- a/doc/ffmpeg-devices.texi +++ b/doc/ffmpeg-devices.texi @@ -17,27 +17,7 @@ libavdevice library. @c man end DESCRIPTION -@chapter Device Options -@c man begin DEVICE OPTIONS - -The libavdevice library provides the same interface as -libavformat. Namely, an input device is considered like a demuxer, and -an output device like a muxer, and the interface and generic device -options are the same provided by libavformat (see the ffmpeg-formats -manual). - -In addition each input or output device may support so-called private -options, which are specific for that component. - -Options may be set by specifying -@var{option} @var{value} in the -FFmpeg tools, or by setting the value explicitly in the device -@code{AVFormatContext} options or using the @file{libavutil/opt.h} API -for programmatic use. - -@c man end DEVICE OPTIONS - -@include indevs.texi -@include outdevs.texi +@include devices.texi @chapter See Also