[FFmpeg-cvslog] avcodec/opus/parser: reindent after the previous commit
James Almer
git at videolan.org
Fri Jan 3 15:34:45 EET 2025
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Fri Jan 3 10:34:01 2025 -0300| [c187dd88de7d13762d0d385c1fa19c61ea08a398] | committer: James Almer
avcodec/opus/parser: 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=c187dd88de7d13762d0d385c1fa19c61ea08a398
---
libavcodec/opus/parser.c | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/libavcodec/opus/parser.c b/libavcodec/opus/parser.c
index eb16562530..e16b0f72a2 100644
--- a/libavcodec/opus/parser.c
+++ b/libavcodec/opus/parser.c
@@ -179,18 +179,18 @@ static int opus_parse(AVCodecParserContext *ctx, AVCodecContext *avctx,
else {
next = opus_find_frame_end(ctx, avctx, buf, buf_size, &header_len);
- if (s->ts_framing && next != AVERROR_INVALIDDATA &&
- ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
- *poutbuf = NULL;
- *poutbuf_size = 0;
- return buf_size;
- }
+ if (s->ts_framing && next != AVERROR_INVALIDDATA &&
+ ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
+ *poutbuf = NULL;
+ *poutbuf_size = 0;
+ return buf_size;
+ }
- if (next == AVERROR_INVALIDDATA){
- *poutbuf = NULL;
- *poutbuf_size = 0;
- return buf_size;
- }
+ if (next == AVERROR_INVALIDDATA){
+ *poutbuf = NULL;
+ *poutbuf_size = 0;
+ return buf_size;
+ }
}
*poutbuf = buf + header_len;
More information about the ffmpeg-cvslog
mailing list