Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Öman <andreas@olebyn.nu>2007-09-07 23:19:49 +0400
committerBenoit Fouet <benoit.fouet@free.fr>2007-09-07 23:19:49 +0400
commit7ae94d525c9e7258a178a5a1e315c91088f72136 (patch)
treee94f059b56021ad4dc6b52d4b3217cdb8db2f5c0 /libavcodec
parentec970c2187453ddcc5b5440dc11d12f975a489e2 (diff)
Indentation
patch by Andreas Öman Originally committed as revision 10432 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/h264.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index c2d5d990ca..60653d55bd 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -3820,13 +3820,13 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
Dont bother to deblock across slices */
h->deblocking_filter = 2;
} else {
- h0->max_contexts = 1;
- if(!h0->single_decode_warning) {
- av_log(s->avctx, AV_LOG_INFO, "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");
- h0->single_decode_warning = 1;
- }
- if(h != h0)
- return 1; // deblocking switched inside frame
+ h0->max_contexts = 1;
+ if(!h0->single_decode_warning) {
+ av_log(s->avctx, AV_LOG_INFO, "Cannot parallelize deblocking type 1, decoding such frames in sequential order\n");
+ h0->single_decode_warning = 1;
+ }
+ if(h != h0)
+ return 1; // deblocking switched inside frame
}
}