diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-06-20 12:53:48 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-07-07 12:07:23 +0200 |
commit | 21de4db402cc40734b30685f9435538e7d35ef9a (patch) | |
tree | 3d3f1f9dc59bc84f22edb5c5754a86bc6084ec4a /libavcodec/decode.c | |
parent | 6ff27024b8dc2a0f3ce4277b341401b5137a1990 (diff) | |
download | ffmpeg-21de4db402cc40734b30685f9435538e7d35ef9a.tar.gz |
lavc: reindent after previous commit
Diffstat (limited to 'libavcodec/decode.c')
-rw-r--r-- | libavcodec/decode.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/decode.c b/libavcodec/decode.c index 01ac35bf34..3115282923 100644 --- a/libavcodec/decode.c +++ b/libavcodec/decode.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; } |