comparison dxva2_h264.c @ 10975:cec4a174365c libavcodec

Reindent the content of one if(){} in ff_dxva2_common_end_frame.
author fenrir
date Sat, 23 Jan 2010 18:00:51 +0000
parents b1ccfdc1b409
children b3e3f5cb4b46
comparison
equal deleted inserted replaced
10974:b1ccfdc1b409 10975:cec4a174365c
493 goto end; 493 goto end;
494 } 494 }
495 buffer_count++; 495 buffer_count++;
496 496
497 if (qm_size > 0) { 497 if (qm_size > 0) {
498 result = commit_buffer(avctx, ctx, &buffer[buffer_count], 498 result = commit_buffer(avctx, ctx, &buffer[buffer_count],
499 DXVA2_InverseQuantizationMatrixBufferType, 499 DXVA2_InverseQuantizationMatrixBufferType,
500 qm, qm_size, 0); 500 qm, qm_size, 0);
501 if (result) { 501 if (result) {
502 av_log(avctx, AV_LOG_ERROR, 502 av_log(avctx, AV_LOG_ERROR,
503 "Failed to add inverse quantization matrix buffer\n"); 503 "Failed to add inverse quantization matrix buffer\n");
504 goto end; 504 goto end;
505 } 505 }
506 buffer_count++; 506 buffer_count++;
507 } 507 }
508 508
509 result = commit_bs_si(avctx, 509 result = commit_bs_si(avctx,
510 &buffer[buffer_count + 0], 510 &buffer[buffer_count + 0],
511 &buffer[buffer_count + 1]); 511 &buffer[buffer_count + 1]);