Commit 035c67ac authored by fenrir's avatar fenrir

Reindent the content of one if(){} in ff_dxva2_common_end_frame.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21402 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a5118360
...@@ -495,15 +495,15 @@ static int ff_dxva2_common_end_frame(AVCodecContext *avctx, MpegEncContext *s, ...@@ -495,15 +495,15 @@ static int ff_dxva2_common_end_frame(AVCodecContext *avctx, MpegEncContext *s,
buffer_count++; buffer_count++;
if (qm_size > 0) { if (qm_size > 0) {
result = commit_buffer(avctx, ctx, &buffer[buffer_count], result = commit_buffer(avctx, ctx, &buffer[buffer_count],
DXVA2_InverseQuantizationMatrixBufferType, DXVA2_InverseQuantizationMatrixBufferType,
qm, qm_size, 0); qm, qm_size, 0);
if (result) { if (result) {
av_log(avctx, AV_LOG_ERROR, av_log(avctx, AV_LOG_ERROR,
"Failed to add inverse quantization matrix buffer\n"); "Failed to add inverse quantization matrix buffer\n");
goto end; goto end;
} }
buffer_count++; buffer_count++;
} }
result = commit_bs_si(avctx, result = commit_bs_si(avctx,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment