ffmpeg | branch: master | James Almer <jamr...@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 <jamr...@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; _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".