You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/vp3: Reindentation
Reviewed-by: Peter Ross <pross@xvid.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -2431,7 +2431,7 @@ static av_cold int vp3_decode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
/* init VLC tables */
|
/* init VLC tables */
|
||||||
bias_tabs = CONFIG_VP4_DECODER && s->version >= 2 ? vp4_bias : vp3_bias;
|
bias_tabs = CONFIG_VP4_DECODER && s->version >= 2 ? vp4_bias : vp3_bias;
|
||||||
for (i = 0; i < FF_ARRAY_ELEMS(s->coeff_vlc); i++) {
|
for (int i = 0; i < FF_ARRAY_ELEMS(s->coeff_vlc); i++) {
|
||||||
ret = ff_init_vlc_from_lengths(&s->coeff_vlc[i], 11, 32,
|
ret = ff_init_vlc_from_lengths(&s->coeff_vlc[i], 11, 32,
|
||||||
&bias_tabs[i][0][1], 2,
|
&bias_tabs[i][0][1], 2,
|
||||||
&bias_tabs[i][0][0], 2, 1,
|
&bias_tabs[i][0][0], 2, 1,
|
||||||
|
Reference in New Issue
Block a user