diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-11 14:04:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-11 14:04:10 +0200 |
commit | bad101ab8a54dd36d569daef35f8e583500bbf49 (patch) | |
tree | a8d7ac676897e6b29f857bd91bc8f7416938bb56 /libavcodec/dnxhd_parser.c | |
parent | d9fef740bd6a5aa2a3ce1a612348a05c4c5ca6e9 (diff) | |
parent | 89ef08c992c484a46711b1a68a988303679c288e (diff) | |
download | ffmpeg-bad101ab8a54dd36d569daef35f8e583500bbf49.tar.gz |
Merge commit '89ef08c992c484a46711b1a68a988303679c288e'
* commit '89ef08c992c484a46711b1a68a988303679c288e':
DNxHD: K&R formatting cosmetics
Conflicts:
libavcodec/dnxhd_parser.c
libavcodec/dnxhddec.c
libavcodec/dnxhdenc.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dnxhd_parser.c')
-rw-r--r-- | libavcodec/dnxhd_parser.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/dnxhd_parser.c b/libavcodec/dnxhd_parser.c index 6e030e4212..fffb98fa48 100644 --- a/libavcodec/dnxhd_parser.c +++ b/libavcodec/dnxhd_parser.c @@ -46,7 +46,7 @@ static int dnxhd_find_frame_end(DNXHDParserContext *dctx, if (!pic_found) { for (i = 0; i < buf_size; i++) { - state = (state<<8) | buf[i]; + state = (state << 8) | buf[i]; if ((state & 0xffffffffff00LL) == DNXHD_HEADER_PREFIX) { i++; pic_found = 1; @@ -61,14 +61,14 @@ static int dnxhd_find_frame_end(DNXHDParserContext *dctx, if (!buf_size) /* EOF considered as end of frame */ return 0; for (; i < buf_size; i++) { - state = (state<<8) | buf[i]; + state = (state << 8) | buf[i]; if ((state & 0xffffffffff00LL) == DNXHD_HEADER_PREFIX) { if (!interlaced || dctx->cur_field) { pc->frame_start_found = 0; pc->state64 = -1; dctx->interlaced = interlaced; dctx->cur_field = 0; - return i-5; + return i - 5; } else { /* continue, to get the second field */ dctx->interlaced = interlaced = (state&2)>>1; @@ -98,12 +98,12 @@ static int dnxhd_parse(AVCodecParserContext *s, } else { next = dnxhd_find_frame_end(dctx, buf, buf_size); if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) { - *poutbuf = NULL; + *poutbuf = NULL; *poutbuf_size = 0; return buf_size; } } - *poutbuf = buf; + *poutbuf = buf; *poutbuf_size = buf_size; return next; } |