forked from FFmpeg/FFmpeg
avcodec/opus/parser: reindent after the previous commit
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
873a34c129
commit
c187dd88de
1 changed files with 11 additions and 11 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue