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
ff159e78
Commit
ff159e78
authored
Dec 07, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doxygen: Replace '\' by '@' in Doxygen markup tags.
parent
ee41963f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
h264_altivec.c
libavcodec/ppc/h264_altivec.c
+2
-2
util_altivec.h
libavcodec/ppc/util_altivec.h
+1
-1
tableprint.h
libavcodec/tableprint.h
+2
-2
lzo.h
libavutil/lzo.h
+2
-2
No files found.
libavcodec/ppc/h264_altivec.c
View file @
ff159e78
...
@@ -616,8 +616,8 @@ static inline void write16x4(uint8_t *dst, int dst_stride,
...
@@ -616,8 +616,8 @@ static inline void write16x4(uint8_t *dst, int dst_stride,
*
(
dst_int
+
15
*
int_dst_stride
)
=
*
(
src_int
+
15
);
*
(
dst_int
+
15
*
int_dst_stride
)
=
*
(
src_int
+
15
);
}
}
/**
\
brief performs a 6x16 transpose of data in src, and stores it to dst
/**
@
brief performs a 6x16 transpose of data in src, and stores it to dst
\
todo FIXME: see if we can't spare some vec_lvsl() by them factorizing
@
todo FIXME: see if we can't spare some vec_lvsl() by them factorizing
out of unaligned_load() */
out of unaligned_load() */
#define readAndTranspose16x6(src, src_stride, r8, r9, r10, r11, r12, r13) {\
#define readAndTranspose16x6(src, src_stride, r8, r9, r10, r11, r12, r13) {\
register vec_u8 r0 = unaligned_load(0, src); \
register vec_u8 r0 = unaligned_load(0, src); \
...
...
libavcodec/ppc/util_altivec.h
View file @
ff159e78
...
@@ -94,7 +94,7 @@ do { \
...
@@ -94,7 +94,7 @@ do { \
} while (0)
} while (0)
/**
\brief loads unaligned vector \a *src with offset \
a offset
/**
@brief loads unaligned vector @a *src with offset @
a offset
and returns it */
and returns it */
static
inline
vector
unsigned
char
unaligned_load
(
int
offset
,
uint8_t
*
src
)
static
inline
vector
unsigned
char
unaligned_load
(
int
offset
,
uint8_t
*
src
)
{
{
...
...
libavcodec/tableprint.h
View file @
ff159e78
...
@@ -58,7 +58,7 @@ void write_##type##_2d_array(const void *arg, int len, int len2)\
...
@@ -58,7 +58,7 @@ void write_##type##_2d_array(const void *arg, int len, int len2)\
/**
/**
* @name Predefined functions for printing tables
* @name Predefined functions for printing tables
*
*
*
\
{
*
@
{
*/
*/
void
write_int8_t_array
(
const
int8_t
*
,
int
);
void
write_int8_t_array
(
const
int8_t
*
,
int
);
void
write_uint8_t_array
(
const
uint8_t
*
,
int
);
void
write_uint8_t_array
(
const
uint8_t
*
,
int
);
...
@@ -69,7 +69,7 @@ void write_int8_t_2d_array (const void *, int, int);
...
@@ -69,7 +69,7 @@ void write_int8_t_2d_array (const void *, int, int);
void
write_uint8_t_2d_array
(
const
void
*
,
int
,
int
);
void
write_uint8_t_2d_array
(
const
void
*
,
int
,
int
);
void
write_uint32_t_2d_array
(
const
void
*
,
int
,
int
);
void
write_uint32_t_2d_array
(
const
void
*
,
int
,
int
);
void
write_float_2d_array
(
const
void
*
,
int
,
int
);
void
write_float_2d_array
(
const
void
*
,
int
,
int
);
/**
\
} */
// end of printfuncs group
/**
@
} */
// end of printfuncs group
#define WRITE_ARRAY(prefix, type, name) \
#define WRITE_ARRAY(prefix, type, name) \
do { \
do { \
...
...
libavutil/lzo.h
View file @
ff159e78
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
#include <stdint.h>
#include <stdint.h>
/** @name Error flags returned by av_lzo1x_decode
/** @name Error flags returned by av_lzo1x_decode
*
\
{ */
*
@
{ */
/// end of the input buffer reached before decoding finished
/// end of the input buffer reached before decoding finished
#define AV_LZO_INPUT_DEPLETED 1
#define AV_LZO_INPUT_DEPLETED 1
/// decoded data did not fit into output buffer
/// decoded data did not fit into output buffer
...
@@ -41,7 +41,7 @@
...
@@ -41,7 +41,7 @@
#define AV_LZO_INVALID_BACKPTR 4
#define AV_LZO_INVALID_BACKPTR 4
/// a non-specific error in the compressed bitstream
/// a non-specific error in the compressed bitstream
#define AV_LZO_ERROR 8
#define AV_LZO_ERROR 8
/**
\
} */
/**
@
} */
#define AV_LZO_INPUT_PADDING 8
#define AV_LZO_INPUT_PADDING 8
#define AV_LZO_OUTPUT_PADDING 12
#define AV_LZO_OUTPUT_PADDING 12
...
...
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