[FFmpeg-cvslog] avcodec/libdav1d: reindent after the previous commit
James Almer
git at videolan.org
Mon Dec 12 23:37:44 EET 2022
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Thu Dec 8 10:07:35 2022 -0300| [048f369f1b9f591d3728b5f9f982f860d7c76982] | committer: James Almer
avcodec/libdav1d: reindent after the previous commit
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=048f369f1b9f591d3728b5f9f982f860d7c76982
---
libavcodec/libdav1d.c | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/libavcodec/libdav1d.c b/libavcodec/libdav1d.c
index d9542dd6a0..2f151d2d1b 100644
--- a/libavcodec/libdav1d.c
+++ b/libavcodec/libdav1d.c
@@ -328,7 +328,7 @@ static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
if (c->reordered_opaque != AV_NOPTS_VALUE) {
pkt->opaque = av_memdup(&c->reordered_opaque,
- sizeof(c->reordered_opaque));
+ sizeof(c->reordered_opaque));
if (!pkt->opaque) {
av_packet_free(&pkt);
dav1d_data_unref(data);
@@ -336,19 +336,19 @@ static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
}
}
- res = dav1d_data_wrap_user_data(data, (const uint8_t *)pkt,
- libdav1d_user_data_free, pkt);
- if (res < 0) {
- av_free(pkt->opaque);
- av_packet_free(&pkt);
- dav1d_data_unref(data);
- return res;
- }
+ res = dav1d_data_wrap_user_data(data, (const uint8_t *)pkt,
+ libdav1d_user_data_free, pkt);
+ if (res < 0) {
+ av_free(pkt->opaque);
+ av_packet_free(&pkt);
+ dav1d_data_unref(data);
+ return res;
+ }
pkt = NULL;
} else {
av_packet_free(&pkt);
if (res >= 0)
- return AVERROR(EAGAIN);
+ return AVERROR(EAGAIN);
}
}
More information about the ffmpeg-cvslog
mailing list