cosmetics: vertical alignment after last commit

Originally committed as revision 25934 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2010-12-12 00:53:01 +00:00
parent 7edbd5361c
commit 92b818eb9e

View File

@ -545,7 +545,7 @@ static int flac_parse(AVCodecParserContext *s, AVCodecContext *avctx,
/* Pad the end once if EOF, to check the final region for headers. */ /* Pad the end once if EOF, to check the final region for headers. */
if (!buf_size) { if (!buf_size) {
fpc->end_padded = 1; fpc->end_padded = 1;
buf_size = read_size = MAX_FRAME_HEADER_SIZE; buf_size = read_size = MAX_FRAME_HEADER_SIZE;
} else { } else {
/* The maximum read size is the upper-bound of what the parser /* The maximum read size is the upper-bound of what the parser
@ -624,7 +624,7 @@ static int flac_parse(AVCodecParserContext *s, AVCodecContext *avctx,
&fpc->wrap_buf, &fpc->wrap_buf,
&fpc->wrap_buf_allocated_size); &fpc->wrap_buf_allocated_size);
return buf_size ? read_size : (fpc->best_header->offset - return buf_size ? read_size : (fpc->best_header->offset -
av_fifo_size(fpc->fifo_buf)); av_fifo_size(fpc->fifo_buf));
} }
if (!buf_size) if (!buf_size)
return get_best_header(fpc, poutbuf, poutbuf_size); return get_best_header(fpc, poutbuf, poutbuf_size);