summaryrefslogtreecommitdiff
path: root/libavcodec/h264_parser.c
diff options
context:
space:
mode:
authorPhilip Langdale <philipl@overt.org>2011-03-28 21:43:23 -0700
committerPhilip Langdale <philipl@overt.org>2011-04-04 20:32:33 -0700
commit9c09dead87cafaef12640ac8d9a009912c367022 (patch)
tree24efdcc2036e6e1510e56c07dc8b263fe31360f5 /libavcodec/h264_parser.c
parent01f5b9c51eba113b3e8b594ef55e8f08071cdeb6 (diff)
h264_parser: Fix whitespace after previous change.
'git diff -w' confirmed to return nothing. Signed-off-by: Philip Langdale <philipl@overt.org>
Diffstat (limited to 'libavcodec/h264_parser.c')
-rw-r--r--libavcodec/h264_parser.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c
index 3b5627dbca..7ae5d5ab7d 100644
--- a/libavcodec/h264_parser.c
+++ b/libavcodec/h264_parser.c
@@ -272,21 +272,21 @@ static int h264_parse(AVCodecParserContext *s,
}
}
- parse_nal_units(s, avctx, buf, buf_size);
-
- if (h->sei_cpb_removal_delay >= 0) {
- s->dts_sync_point = h->sei_buffering_period_present;
- s->dts_ref_dts_delta = h->sei_cpb_removal_delay;
- s->pts_dts_delta = h->sei_dpb_output_delay;
- } else {
- s->dts_sync_point = INT_MIN;
- s->dts_ref_dts_delta = INT_MIN;
- s->pts_dts_delta = INT_MIN;
- }
+ parse_nal_units(s, avctx, buf, buf_size);
+
+ if (h->sei_cpb_removal_delay >= 0) {
+ s->dts_sync_point = h->sei_buffering_period_present;
+ s->dts_ref_dts_delta = h->sei_cpb_removal_delay;
+ s->pts_dts_delta = h->sei_dpb_output_delay;
+ } else {
+ s->dts_sync_point = INT_MIN;
+ s->dts_ref_dts_delta = INT_MIN;
+ s->pts_dts_delta = INT_MIN;
+ }
- if (s->flags & PARSER_FLAG_ONCE) {
- s->flags &= PARSER_FLAG_COMPLETE_FRAMES;
- }
+ if (s->flags & PARSER_FLAG_ONCE) {
+ s->flags &= PARSER_FLAG_COMPLETE_FRAMES;
+ }
*poutbuf = buf;
*poutbuf_size = buf_size;