Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
18d93981
Commit
18d93981
authored
12 years ago
by
Clément Bœsch
Browse files
Options
Downloads
Patches
Plain Diff
doxy: add ref for lavfi, lpp and lsws.
parent
5595e7a1
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
libavfilter/avfilter.h
+15
-0
15 additions, 0 deletions
libavfilter/avfilter.h
libavutil/avutil.h
+3
-3
3 additions, 3 deletions
libavutil/avutil.h
libpostproc/postprocess.h
+11
-2
11 additions, 2 deletions
libpostproc/postprocess.h
libswscale/swscale.h
+11
-2
11 additions, 2 deletions
libswscale/swscale.h
with
40 additions
and
7 deletions
libavfilter/avfilter.h
+
15
−
0
View file @
18d93981
...
@@ -22,6 +22,17 @@
...
@@ -22,6 +22,17 @@
#ifndef AVFILTER_AVFILTER_H
#ifndef AVFILTER_AVFILTER_H
#define AVFILTER_AVFILTER_H
#define AVFILTER_AVFILTER_H
/**
* @file
* @ingroup lavfi
* external API header
*/
/**
* @defgroup lavfi Libavfilter
* @{
*/
#include
<stddef.h>
#include
<stddef.h>
#include
"libavutil/avutil.h"
#include
"libavutil/avutil.h"
...
@@ -840,4 +851,8 @@ void avfilter_free(AVFilterContext *filter);
...
@@ -840,4 +851,8 @@ void avfilter_free(AVFilterContext *filter);
int
avfilter_insert_filter
(
AVFilterLink
*
link
,
AVFilterContext
*
filt
,
int
avfilter_insert_filter
(
AVFilterLink
*
link
,
AVFilterContext
*
filt
,
unsigned
filt_srcpad_idx
,
unsigned
filt_dstpad_idx
);
unsigned
filt_srcpad_idx
,
unsigned
filt_dstpad_idx
);
/**
* @}
*/
#endif
/* AVFILTER_AVFILTER_H */
#endif
/* AVFILTER_AVFILTER_H */
This diff is collapsed.
Click to expand it.
libavutil/avutil.h
+
3
−
3
View file @
18d93981
...
@@ -35,13 +35,13 @@
...
@@ -35,13 +35,13 @@
* provided by FFmpeg.
* provided by FFmpeg.
*
*
* @li @ref libavc "libavcodec" encoding/decoding library
* @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 libavf "libavformat" I/O and muxing/demuxing library
* @li @ref lavd "libavdevice" special devices muxing/demuxing library
* @li @ref lavd "libavdevice" special devices muxing/demuxing library
* @li @ref lavu "libavutil" common utility library
* @li @ref lavu "libavutil" common utility library
* @li @ref lswr "libswresample" audio resampling, format conversion and mixing
* @li @ref lswr "libswresample" audio resampling, format conversion and mixing
* @li @
subpage
libpostproc post processing library
* @li @
ref lpp "
libpostproc
"
post processing library
* @li @
subpage
libswscale
color conversion and scaling library
* @li @
ref lsws "
libswscale
"
color conversion and scaling library
*/
*/
/**
/**
...
...
This diff is collapsed.
Click to expand it.
libpostproc/postprocess.h
+
11
−
2
View file @
18d93981
...
@@ -23,8 +23,13 @@
...
@@ -23,8 +23,13 @@
/**
/**
* @file
* @file
* @brief
* @ingroup lpp
* external postprocessing API
* external API header
*/
/**
* @defgroup lpp Libpostproc
* @{
*/
*/
#include
"libpostproc/version.h"
#include
"libpostproc/version.h"
...
@@ -94,4 +99,8 @@ void pp_free_context(pp_context *ppContext);
...
@@ -94,4 +99,8 @@ void pp_free_context(pp_context *ppContext);
#define PP_PICT_TYPE_QP2 0x00000010 ///< MPEG2 style QScale
#define PP_PICT_TYPE_QP2 0x00000010 ///< MPEG2 style QScale
/**
* @}
*/
#endif
/* POSTPROC_POSTPROCESS_H */
#endif
/* POSTPROC_POSTPROCESS_H */
This diff is collapsed.
Click to expand it.
libswscale/swscale.h
+
11
−
2
View file @
18d93981
...
@@ -23,8 +23,13 @@
...
@@ -23,8 +23,13 @@
/**
/**
* @file
* @file
* @brief
* @ingroup lsws
* external api for the swscale stuff
* external API header
*/
/**
* @defgroup lsws Libswscale
* @{
*/
*/
#include
<stdint.h>
#include
<stdint.h>
...
@@ -342,4 +347,8 @@ void sws_convertPalette8ToPacked24(const uint8_t *src, uint8_t *dst, int num_pix
...
@@ -342,4 +347,8 @@ void sws_convertPalette8ToPacked24(const uint8_t *src, uint8_t *dst, int num_pix
*/
*/
const
AVClass
*
sws_get_class
(
void
);
const
AVClass
*
sws_get_class
(
void
);
/**
* @}
*/
#endif
/* SWSCALE_SWSCALE_H */
#endif
/* SWSCALE_SWSCALE_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment