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
0138a8de
Commit
0138a8de
authored
Aug 08, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doxygen: drop pointless star from pointer variable names
parent
c960e67a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
16 deletions
+16
-16
s3tc.h
libavcodec/s3tc.h
+4
-4
fifo.h
libavutil/fifo.h
+12
-12
No files found.
libavcodec/s3tc.h
View file @
0138a8de
...
...
@@ -29,8 +29,8 @@
/**
* Decode DXT1 encoded data to RGB32
* @param
*
src source buffer, has to be aligned on a 4-byte boundary
* @param
*
dst destination buffer
* @param src source buffer, has to be aligned on a 4-byte boundary
* @param dst destination buffer
* @param w width of output image
* @param h height of output image
* @param stride line size of output image
...
...
@@ -40,8 +40,8 @@ void ff_decode_dxt1(const uint8_t *src, uint8_t *dst,
const
unsigned
int
stride
);
/**
* Decode DXT3 encoded data to RGB32
* @param
*
src source buffer, has to be aligned on a 4-byte boundary
* @param
*
dst destination buffer
* @param src source buffer, has to be aligned on a 4-byte boundary
* @param dst destination buffer
* @param w width of output image
* @param h height of output image
* @param stride line size of output image
...
...
libavutil/fifo.h
View file @
0138a8de
...
...
@@ -41,20 +41,20 @@ AVFifoBuffer *av_fifo_alloc(unsigned int size);
/**
* Free an AVFifoBuffer.
* @param
*
f AVFifoBuffer to free
* @param f AVFifoBuffer to free
*/
void
av_fifo_free
(
AVFifoBuffer
*
f
);
/**
* Reset the AVFifoBuffer to the state right after av_fifo_alloc, in particular it is emptied.
* @param
*
f AVFifoBuffer to reset
* @param f AVFifoBuffer to reset
*/
void
av_fifo_reset
(
AVFifoBuffer
*
f
);
/**
* Return the amount of data in bytes in the AVFifoBuffer, that is the
* amount of data you can read from it.
* @param
*
f AVFifoBuffer to read from
* @param f AVFifoBuffer to read from
* @return size
*/
int
av_fifo_size
(
AVFifoBuffer
*
f
);
...
...
@@ -62,27 +62,27 @@ int av_fifo_size(AVFifoBuffer *f);
/**
* Return the amount of space in bytes in the AVFifoBuffer, that is the
* amount of data you can write into it.
* @param
*
f AVFifoBuffer to write into
* @param f AVFifoBuffer to write into
* @return size
*/
int
av_fifo_space
(
AVFifoBuffer
*
f
);
/**
* Feed data from an AVFifoBuffer to a user-supplied callback.
* @param
*
f AVFifoBuffer to read from
* @param f AVFifoBuffer to read from
* @param buf_size number of bytes to read
* @param
*
func generic read function
* @param
*
dest data destination
* @param func generic read function
* @param dest data destination
*/
int
av_fifo_generic_read
(
AVFifoBuffer
*
f
,
void
*
dest
,
int
buf_size
,
void
(
*
func
)(
void
*
,
void
*
,
int
));
/**
* Feed data from a user-supplied callback to an AVFifoBuffer.
* @param
*
f AVFifoBuffer to write to
* @param
*
src data source; non-const since it may be used as a
* @param f AVFifoBuffer to write to
* @param src data source; non-const since it may be used as a
* modifiable context by the function defined in func
* @param size number of bytes to write
* @param
*
func generic write function; the first parameter is src,
* @param func generic write function; the first parameter is src,
* the second is dest_buf, the third is dest_buf_size.
* func must return the number of bytes written to dest_buf, or <= 0 to
* indicate no more data available to write.
...
...
@@ -93,7 +93,7 @@ int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void
/**
* Resize an AVFifoBuffer.
* @param
*
f AVFifoBuffer to resize
* @param f AVFifoBuffer to resize
* @param size new AVFifoBuffer size in bytes
* @return <0 for failure, >=0 otherwise
*/
...
...
@@ -101,7 +101,7 @@ int av_fifo_realloc2(AVFifoBuffer *f, unsigned int size);
/**
* Read and discard the specified amount of data from an AVFifoBuffer.
* @param
*
f AVFifoBuffer to read from
* @param f AVFifoBuffer to read from
* @param size amount of data to read in bytes
*/
void
av_fifo_drain
(
AVFifoBuffer
*
f
,
int
size
);
...
...
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