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
1aa73351
Commit
1aa73351
authored
16 years ago
by
Kostya Shishkov
Browse files
Options
Downloads
Patches
Plain Diff
Fix Doxygen comments for RV3/4 decoder.
Originally committed as revision 16842 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
20642e28
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/rv34.c
+5
-0
5 additions, 0 deletions
libavcodec/rv34.c
with
5 additions
and
0 deletions
libavcodec/rv34.c
+
5
−
0
View file @
1aa73351
...
@@ -65,6 +65,7 @@ static RV34VLC intra_vlcs[NUM_INTRA_TABLES], inter_vlcs[NUM_INTER_TABLES];
...
@@ -65,6 +65,7 @@ static RV34VLC intra_vlcs[NUM_INTRA_TABLES], inter_vlcs[NUM_INTER_TABLES];
* Generate VLC from codeword lengths.
* Generate VLC from codeword lengths.
* @param bits codeword lengths (zeroes are accepted)
* @param bits codeword lengths (zeroes are accepted)
* @param size length of input data
* @param size length of input data
* @param vlc output VLC
* @param insyms symbols for input codes (NULL for default ones)
* @param insyms symbols for input codes (NULL for default ones)
*/
*/
static
void
rv34_gen_vlc
(
const
uint8_t
*
bits
,
int
size
,
VLC
*
vlc
,
const
uint8_t
*
insyms
)
static
void
rv34_gen_vlc
(
const
uint8_t
*
bits
,
int
size
,
VLC
*
vlc
,
const
uint8_t
*
insyms
)
...
@@ -618,6 +619,10 @@ static const int chroma_coeffs[3] = { 0, 3, 5 };
...
@@ -618,6 +619,10 @@ static const int chroma_coeffs[3] = { 0, 3, 5 };
* @param mv_off offset to the motion vector information
* @param mv_off offset to the motion vector information
* @param width width of the current partition in 8x8 blocks
* @param width width of the current partition in 8x8 blocks
* @param height height of the current partition in 8x8 blocks
* @param height height of the current partition in 8x8 blocks
* @param dir motion compensation direction (i.e. from the last or the next reference frame)
* @param thirdpel motion vectors are specified in 1/3 of pixel
* @param qpel_mc a set of functions used to perform luma motion compensation
* @param chroma_mc a set of functions used to perform chroma motion compensation
*/
*/
static
inline
void
rv34_mc
(
RV34DecContext
*
r
,
const
int
block_type
,
static
inline
void
rv34_mc
(
RV34DecContext
*
r
,
const
int
block_type
,
const
int
xoff
,
const
int
yoff
,
int
mv_off
,
const
int
xoff
,
const
int
yoff
,
int
mv_off
,
...
...
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