Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
a1d9de30
Commit
a1d9de30
authored
Nov 09, 2016
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some mismatches between function parameter and doxygen parameter names.
parent
4d960a11
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
avcodec.h
libavcodec/avcodec.h
+1
-1
avresample.h
libavresample/avresample.h
+2
-2
hwcontext.h
libavutil/hwcontext.h
+1
-1
imgutils.h
libavutil/imgutils.h
+2
-2
stereo3d.h
libavutil/stereo3d.h
+1
-1
No files found.
libavcodec/avcodec.h
View file @
a1d9de30
...
...
@@ -3838,7 +3838,7 @@ AVPacket *av_packet_clone(const AVPacket *src);
* Free the packet, if the packet is reference counted, it will be
* unreferenced first.
*
* @param p
acke
t packet to be freed. The pointer will be set to NULL.
* @param p
k
t packet to be freed. The pointer will be set to NULL.
* @note passing NULL is a no-op.
*/
void
av_packet_free
(
AVPacket
**
pkt
);
...
...
libavresample/avresample.h
View file @
a1d9de30
...
...
@@ -490,8 +490,8 @@ int avresample_convert_frame(AVAudioResampleContext *avr,
* @see avresample_close();
*
* @param avr audio resample context
* @param out
put
output AVFrame
* @param in
put
input AVFrame
* @param out
output AVFrame
* @param in
input AVFrame
* @return 0 on success, AVERROR on failure.
*/
int
avresample_config
(
AVAudioResampleContext
*
avr
,
AVFrame
*
out
,
AVFrame
*
in
);
...
...
libavutil/hwcontext.h
View file @
a1d9de30
...
...
@@ -418,7 +418,7 @@ void *av_hwdevice_hwconfig_alloc(AVBufferRef *device_ctx);
* configuration is provided, returns the maximum possible capabilities
* of the device.
*
* @param
device_ctx
a reference to the associated AVHWDeviceContext.
* @param
ref
a reference to the associated AVHWDeviceContext.
* @param hwconfig a filled HW-specific configuration structure, or NULL
* to return the maximum possible capabilities of the device.
* @return AVHWFramesConstraints structure describing the constraints
...
...
libavutil/imgutils.h
View file @
a1d9de30
...
...
@@ -152,7 +152,7 @@ void av_image_copy_uc_from(uint8_t *dst_data[4], const ptrdiff_t dst_lines
* one call, use av_image_alloc().
*
* @param dst_data data pointers to be filled in
* @param dst_linesize
s
linesizes for the image in dst_data to be filled in
* @param dst_linesize
linesizes for the image in dst_data to be filled in
* @param src buffer which will contain or contains the actual image data, can be NULL
* @param pix_fmt the pixel format of the image
* @param width the width of the image in pixels
...
...
@@ -182,7 +182,7 @@ int av_image_get_buffer_size(enum AVPixelFormat pix_fmt, int width, int height,
* @param dst a buffer into which picture data will be copied
* @param dst_size the size in bytes of dst
* @param src_data pointers containing the source image data
* @param src_linesize
s
linesizes for the image in src_data
* @param src_linesize
linesizes for the image in src_data
* @param pix_fmt the pixel format of the source image
* @param width the width of the source image in pixels
* @param height the height of the source image in pixels
...
...
libavutil/stereo3d.h
View file @
a1d9de30
...
...
@@ -161,7 +161,7 @@ const char *av_stereo3d_type_name(unsigned int type);
/**
* Get the AVStereo3DType form a human-readable name.
*
* @param
typ
e The input string.
* @param
nam
e The input string.
*
* @return The AVStereo3DType value, or -1 if not found.
*/
...
...
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