avcodec/librav1e: Fix indentation

Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
pull/371/head
Derek Buitenhuis 4 years ago
parent 8d86d58941
commit b085a72c54
  1. 32
      libavcodec/librav1e.c

@ -443,23 +443,23 @@ static int librav1e_receive_packet(AVCodecContext *avctx, AVPacket *pkt)
return ret; return ret;
if (frame->buf[0]) { if (frame->buf[0]) {
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format); const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
rframe = rav1e_frame_new(ctx->ctx); rframe = rav1e_frame_new(ctx->ctx);
if (!rframe) { if (!rframe) {
av_log(avctx, AV_LOG_ERROR, "Could not allocate new rav1e frame.\n"); av_log(avctx, AV_LOG_ERROR, "Could not allocate new rav1e frame.\n");
av_frame_unref(frame); av_frame_unref(frame);
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
for (int i = 0; i < desc->nb_components; i++) { for (int i = 0; i < desc->nb_components; i++) {
int shift = i ? desc->log2_chroma_h : 0; int shift = i ? desc->log2_chroma_h : 0;
int bytes = desc->comp[0].depth == 8 ? 1 : 2; int bytes = desc->comp[0].depth == 8 ? 1 : 2;
rav1e_frame_fill_plane(rframe, i, frame->data[i], rav1e_frame_fill_plane(rframe, i, frame->data[i],
(frame->height >> shift) * frame->linesize[i], (frame->height >> shift) * frame->linesize[i],
frame->linesize[i], bytes); frame->linesize[i], bytes);
} }
av_frame_unref(frame); av_frame_unref(frame);
} }
} }
@ -468,7 +468,7 @@ static int librav1e_receive_packet(AVCodecContext *avctx, AVPacket *pkt)
if (ret == RA_ENCODER_STATUS_ENOUGH_DATA) { if (ret == RA_ENCODER_STATUS_ENOUGH_DATA) {
ctx->rframe = rframe; /* Queue is full. Store the RaFrame to retry next call */ ctx->rframe = rframe; /* Queue is full. Store the RaFrame to retry next call */
} else { } else {
rav1e_frame_unref(rframe); /* No need to unref if flushing. */ rav1e_frame_unref(rframe); /* No need to unref if flushing. */
ctx->rframe = NULL; ctx->rframe = NULL;
} }

Loading…
Cancel
Save