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
804d7a1a
Commit
804d7a1a
authored
Aug 09, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doxygen: Fix function parameter names to match the code
parent
52561d01
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
vp8.c
libavcodec/vp8.c
+1
-1
buffersink.h
libavfilter/buffersink.h
+3
-3
audio_convert.h
libavresample/audio_convert.h
+1
-1
audio_mix.h
libavresample/audio_mix.h
+1
-1
xtea.h
libavutil/xtea.h
+2
-2
No files found.
libavcodec/vp8.c
View file @
804d7a1a
...
...
@@ -751,7 +751,7 @@ void decode_mb_mode(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y,
#ifndef decode_block_coeffs_internal
/**
* @param
c
arithmetic bitstream reader context
* @param
r
arithmetic bitstream reader context
* @param block destination for block coefficients
* @param probs probabilities to use when reading trees from the bitstream
* @param i initial coeff index, 0 unless a separate DC block is coded
...
...
libavfilter/buffersink.h
View file @
804d7a1a
...
...
@@ -29,7 +29,7 @@
/**
* Get a buffer with filtered data from sink and put it in buf.
*
* @param
sink
pointer to a context of a buffersink or abuffersink AVFilter.
* @param
ctx
pointer to a context of a buffersink or abuffersink AVFilter.
* @param buf pointer to the buffer will be written here if buf is non-NULL. buf
* must be freed by the caller using avfilter_unref_buffer().
* Buf may also be NULL to query whether a buffer is ready to be
...
...
@@ -38,14 +38,14 @@
* @return >= 0 in case of success, a negative AVERROR code in case of
* failure.
*/
int
av_buffersink_read
(
AVFilterContext
*
sink
,
AVFilterBufferRef
**
buf
);
int
av_buffersink_read
(
AVFilterContext
*
ctx
,
AVFilterBufferRef
**
buf
);
/**
* Same as av_buffersink_read, but with the ability to specify the number of
* samples read. This function is less efficient than av_buffersink_read(),
* because it copies the data around.
*
* @param
sink
pointer to a context of the abuffersink AVFilter.
* @param
ctx
pointer to a context of the abuffersink AVFilter.
* @param buf pointer to the buffer will be written here if buf is non-NULL. buf
* must be freed by the caller using avfilter_unref_buffer(). buf
* will contain exactly nb_samples audio samples, except at the end
...
...
libavresample/audio_convert.h
View file @
804d7a1a
...
...
@@ -42,7 +42,7 @@ typedef struct AudioConvert AudioConvert;
* @param in_fmt input sample format
* @param channels number of channels, or 0 for any number of channels
* @param ptr_align buffer pointer alignment, in bytes
* @param sample
_align
buffer size alignment, in samples
* @param sample
s_align
buffer size alignment, in samples
* @param descr function type description (e.g. "C" or "SSE")
* @param conv conversion function pointer
*/
...
...
libavresample/audio_mix.h
View file @
804d7a1a
...
...
@@ -69,7 +69,7 @@ typedef struct AudioMix {
* @param in_channels number of input channels, or 0 for any number of channels
* @param out_channels number of output channels, or 0 for any number of channels
* @param ptr_align buffer pointer alignment, in bytes
* @param sample
_align
buffer size alignment, in samples
* @param sample
s_align
buffer size alignment, in samples
* @param descr function type description (e.g. "C" or "SSE")
* @param mix_func mixing function pointer
*/
...
...
libavutil/xtea.h
View file @
804d7a1a
...
...
@@ -36,7 +36,7 @@ typedef struct AVXTEA {
/**
* Initialize an AVXTEA context.
*
* @param x an AVXTEA context
* @param
ct
x an AVXTEA context
* @param key a key of 16 bytes used for encryption/decryption
*/
void
av_xtea_init
(
struct
AVXTEA
*
ctx
,
const
uint8_t
key
[
16
]);
...
...
@@ -44,7 +44,7 @@ void av_xtea_init(struct AVXTEA *ctx, const uint8_t key[16]);
/**
* Encrypt or decrypt a buffer using a previously initialized context.
*
* @param x an AVXTEA context
* @param
ct
x an AVXTEA context
* @param dst destination array, can be equal to src
* @param src source array, can be equal to dst
* @param count number of 8 byte blocks
...
...
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