This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
vc2enc: allocate the DWT context with the current plane size
Previously used the luma size only. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
tags/n3.1
Rostislav Pehlivanov
10 years ago
parent
2f19583911
commit
bbcd5e99c3
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavcodec/vc2enc.c
+ 2
- 2
libavcodec/vc2enc.c
View File
@@ -1142,8 +1142,8 @@ static av_cold int vc2_encode_init(AVCodecContext *avctx)
/* DWT init */
if (ff_vc2enc_init_transforms(&s->transform_args[i].t,
s->plane[0
].coef_stride,
s->plane[0
].dwt_height))
s->plane[i
].coef_stride,
s->plane[i
].dwt_height))
goto alloc_fail;
}
Write
Preview
Loading…
Cancel
Save