lavc: reindent after previous commit

pull/389/head
Anton Khirnov 2 years ago
parent 6ff27024b8
commit 21de4db402
  1. 10
      libavcodec/decode.c
  2. 8
      libavcodec/encode.c

@ -1745,13 +1745,13 @@ void ff_decode_flush_buffers(AVCodecContext *avctx)
{
AVCodecInternal *avci = avctx->internal;
av_packet_unref(avci->last_pkt_props);
av_packet_unref(avci->in_pkt);
av_packet_unref(avci->last_pkt_props);
av_packet_unref(avci->in_pkt);
avctx->pts_correction_last_pts =
avctx->pts_correction_last_dts = INT64_MIN;
avctx->pts_correction_last_pts =
avctx->pts_correction_last_dts = INT64_MIN;
av_bsf_flush(avci->bsf);
av_bsf_flush(avci->bsf);
avci->nb_draining_errors = 0;
}

@ -790,8 +790,8 @@ void ff_encode_flush_buffers(AVCodecContext *avctx)
{
AVCodecInternal *avci = avctx->internal;
if (avci->in_frame)
av_frame_unref(avci->in_frame);
if (avci->recon_frame)
av_frame_unref(avci->recon_frame);
if (avci->in_frame)
av_frame_unref(avci->in_frame);
if (avci->recon_frame)
av_frame_unref(avci->recon_frame);
}

Loading…
Cancel
Save