Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
18d93981
Commit
18d93981
authored
Dec 11, 2012
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doxy: add ref for lavfi, lpp and lsws.
parent
5595e7a1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
7 deletions
+40
-7
avfilter.h
libavfilter/avfilter.h
+15
-0
avutil.h
libavutil/avutil.h
+3
-3
postprocess.h
libpostproc/postprocess.h
+11
-2
swscale.h
libswscale/swscale.h
+11
-2
No files found.
libavfilter/avfilter.h
View file @
18d93981
...
...
@@ -22,6 +22,17 @@
#ifndef AVFILTER_AVFILTER_H
#define AVFILTER_AVFILTER_H
/**
* @file
* @ingroup lavfi
* external API header
*/
/**
* @defgroup lavfi Libavfilter
* @{
*/
#include <stddef.h>
#include "libavutil/avutil.h"
...
...
@@ -840,4 +851,8 @@ void avfilter_free(AVFilterContext *filter);
int
avfilter_insert_filter
(
AVFilterLink
*
link
,
AVFilterContext
*
filt
,
unsigned
filt_srcpad_idx
,
unsigned
filt_dstpad_idx
);
/**
* @}
*/
#endif
/* AVFILTER_AVFILTER_H */
libavutil/avutil.h
View file @
18d93981
...
...
@@ -35,13 +35,13 @@
* provided by FFmpeg.
*
* @li @ref libavc "libavcodec" encoding/decoding library
* @li @
subpage libavfilter
graph based frame editing library
* @li @
ref lavfi "libavfilter"
graph based frame editing library
* @li @ref libavf "libavformat" I/O and muxing/demuxing library
* @li @ref lavd "libavdevice" special devices muxing/demuxing library
* @li @ref lavu "libavutil" common utility library
* @li @ref lswr "libswresample" audio resampling, format conversion and mixing
* @li @
subpage libpostproc
post processing library
* @li @
subpage libswscale
color conversion and scaling library
* @li @
ref lpp "libpostproc"
post processing library
* @li @
ref lsws "libswscale"
color conversion and scaling library
*/
/**
...
...
libpostproc/postprocess.h
View file @
18d93981
...
...
@@ -23,8 +23,13 @@
/**
* @file
* @brief
* external postprocessing API
* @ingroup lpp
* external API header
*/
/**
* @defgroup lpp Libpostproc
* @{
*/
#include "libpostproc/version.h"
...
...
@@ -94,4 +99,8 @@ void pp_free_context(pp_context *ppContext);
#define PP_PICT_TYPE_QP2 0x00000010 ///< MPEG2 style QScale
/**
* @}
*/
#endif
/* POSTPROC_POSTPROCESS_H */
libswscale/swscale.h
View file @
18d93981
...
...
@@ -23,8 +23,13 @@
/**
* @file
* @brief
* external api for the swscale stuff
* @ingroup lsws
* external API header
*/
/**
* @defgroup lsws Libswscale
* @{
*/
#include <stdint.h>
...
...
@@ -342,4 +347,8 @@ void sws_convertPalette8ToPacked24(const uint8_t *src, uint8_t *dst, int num_pix
*/
const
AVClass
*
sws_get_class
(
void
);
/**
* @}
*/
#endif
/* SWSCALE_SWSCALE_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment