mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 00:02:52 +00:00
ffmpeg_dxva2: fix mixing of declarations and statements
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
21c7e99659
commit
648f7a6ec5
@ -120,9 +120,10 @@ static void dxva2_destroy_decoder(AVCodecContext *s)
|
|||||||
{
|
{
|
||||||
InputStream *ist = s->opaque;
|
InputStream *ist = s->opaque;
|
||||||
DXVA2Context *ctx = ist->hwaccel_ctx;
|
DXVA2Context *ctx = ist->hwaccel_ctx;
|
||||||
|
int i;
|
||||||
|
|
||||||
if (ctx->surfaces) {
|
if (ctx->surfaces) {
|
||||||
for (int i = 0; i < ctx->num_surfaces; i++) {
|
for (i = 0; i < ctx->num_surfaces; i++) {
|
||||||
if (ctx->surfaces[i])
|
if (ctx->surfaces[i])
|
||||||
IDirect3DSurface9_Release(ctx->surfaces[i]);
|
IDirect3DSurface9_Release(ctx->surfaces[i]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user