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
5ce04c14
Commit
5ce04c14
authored
11 years ago
by
Diego Biurrun
Browse files
Options
Downloads
Patches
Plain Diff
Use correct Doxygen syntax
parent
4be292da
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libavcodec/atrac3.c
+8
-8
8 additions, 8 deletions
libavcodec/atrac3.c
libavcodec/videodsp.h
+3
-3
3 additions, 3 deletions
libavcodec/videodsp.h
libavutil/pixdesc.h
+1
-1
1 addition, 1 deletion
libavutil/pixdesc.h
with
12 additions
and
12 deletions
libavcodec/atrac3.c
+
8
−
8
View file @
5ce04c14
...
@@ -123,7 +123,7 @@ static float gain_tab1[16];
...
@@ -123,7 +123,7 @@ static float gain_tab1[16];
static
float
gain_tab2
[
31
];
static
float
gain_tab2
[
31
];
/*
/*
*
* Regular 512 points IMDCT without overlapping, with the exception of the
* Regular 512 points IMDCT without overlapping, with the exception of the
* swapping of odd bands caused by the reverse spectra of the QMF.
* swapping of odd bands caused by the reverse spectra of the QMF.
*
*
...
@@ -205,7 +205,7 @@ static av_cold int atrac3_decode_close(AVCodecContext *avctx)
...
@@ -205,7 +205,7 @@ static av_cold int atrac3_decode_close(AVCodecContext *avctx)
return
0
;
return
0
;
}
}
/*
/*
*
* Mantissa decoding
* Mantissa decoding
*
*
* @param selector which table the output values are coded with
* @param selector which table the output values are coded with
...
@@ -267,7 +267,7 @@ static void read_quant_spectral_coeffs(GetBitContext *gb, int selector,
...
@@ -267,7 +267,7 @@ static void read_quant_spectral_coeffs(GetBitContext *gb, int selector,
}
}
}
}
/*
/*
*
* Restore the quantized band spectrum coefficients
* Restore the quantized band spectrum coefficients
*
*
* @return subband count, fix for broken specification/files
* @return subband count, fix for broken specification/files
...
@@ -324,7 +324,7 @@ static int decode_spectrum(GetBitContext *gb, float *output)
...
@@ -324,7 +324,7 @@ static int decode_spectrum(GetBitContext *gb, float *output)
return
num_subbands
;
return
num_subbands
;
}
}
/*
/*
*
* Restore the quantized tonal components
* Restore the quantized tonal components
*
*
* @param components tonal components
* @param components tonal components
...
@@ -408,7 +408,7 @@ static int decode_tonal_components(GetBitContext *gb,
...
@@ -408,7 +408,7 @@ static int decode_tonal_components(GetBitContext *gb,
return
component_count
;
return
component_count
;
}
}
/*
/*
*
* Decode gain parameters for the coded bands
* Decode gain parameters for the coded bands
*
*
* @param block the gainblock for the current band
* @param block the gainblock for the current band
...
@@ -443,7 +443,7 @@ static int decode_gain_control(GetBitContext *gb, GainBlock *block,
...
@@ -443,7 +443,7 @@ static int decode_gain_control(GetBitContext *gb, GainBlock *block,
return
0
;
return
0
;
}
}
/*
/*
*
* Apply gain parameters and perform the MDCT overlapping part
* Apply gain parameters and perform the MDCT overlapping part
*
*
* @param input input buffer
* @param input input buffer
...
@@ -500,7 +500,7 @@ static void gain_compensate_and_overlap(float *input, float *prev,
...
@@ -500,7 +500,7 @@ static void gain_compensate_and_overlap(float *input, float *prev,
memcpy
(
prev
,
&
input
[
256
],
256
*
sizeof
(
*
prev
));
memcpy
(
prev
,
&
input
[
256
],
256
*
sizeof
(
*
prev
));
}
}
/*
/*
*
* Combine the tonal band spectrum and regular band spectrum
* Combine the tonal band spectrum and regular band spectrum
*
*
* @param spectrum output spectrum buffer
* @param spectrum output spectrum buffer
...
@@ -627,7 +627,7 @@ static void channel_weighting(float *su1, float *su2, int *p3)
...
@@ -627,7 +627,7 @@ static void channel_weighting(float *su1, float *su2, int *p3)
}
}
}
}
/*
/*
*
* Decode a Sound Unit
* Decode a Sound Unit
*
*
* @param snd the channel unit to be used
* @param snd the channel unit to be used
...
...
This diff is collapsed.
Click to expand it.
libavcodec/videodsp.h
+
3
−
3
View file @
5ce04c14
...
@@ -54,9 +54,9 @@ typedef struct VideoDSPContext {
...
@@ -54,9 +54,9 @@ typedef struct VideoDSPContext {
/**
/**
* Prefetch memory into cache (if supported by hardware).
* Prefetch memory into cache (if supported by hardware).
*
*
* @
buf
pointer to buffer to prefetch memory from
* @
param buf
pointer to buffer to prefetch memory from
* @stride distance between two lines of buf (in bytes)
* @
param
stride distance between two lines of buf (in bytes)
* @
h
number of lines to prefetch
* @
param h
number of lines to prefetch
*/
*/
void
(
*
prefetch
)(
uint8_t
*
buf
,
ptrdiff_t
stride
,
int
h
);
void
(
*
prefetch
)(
uint8_t
*
buf
,
ptrdiff_t
stride
,
int
h
);
}
VideoDSPContext
;
}
VideoDSPContext
;
...
...
This diff is collapsed.
Click to expand it.
libavutil/pixdesc.h
+
1
−
1
View file @
5ce04c14
...
@@ -122,7 +122,7 @@ typedef struct AVPixFmtDescriptor{
...
@@ -122,7 +122,7 @@ typedef struct AVPixFmtDescriptor{
#if FF_API_PIX_FMT
#if FF_API_PIX_FMT
/**
/**
* @deprecate use the AV_PIX_FMT_FLAG_* flags
* @deprecate
d
use the AV_PIX_FMT_FLAG_* flags
*/
*/
#define PIX_FMT_BE AV_PIX_FMT_FLAG_BE
#define PIX_FMT_BE AV_PIX_FMT_FLAG_BE
#define PIX_FMT_PAL AV_PIX_FMT_FLAG_PAL
#define PIX_FMT_PAL AV_PIX_FMT_FLAG_PAL
...
...
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