Commit 7a38c114 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Cosmetics: Reindent after r19927.

Originally committed as revision 19928 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4410adf1
...@@ -331,7 +331,7 @@ void ff_mpeg1_encode_slice_header(MpegEncContext *s){ ...@@ -331,7 +331,7 @@ void ff_mpeg1_encode_slice_header(MpegEncContext *s){
put_header(s, SLICE_MIN_START_CODE + (s->mb_y & 127)); put_header(s, SLICE_MIN_START_CODE + (s->mb_y & 127));
put_bits(&s->pb, 3, s->mb_y >> 7); /* slice_vertical_position_extension */ put_bits(&s->pb, 3, s->mb_y >> 7); /* slice_vertical_position_extension */
} else { } else {
put_header(s, SLICE_MIN_START_CODE + s->mb_y); put_header(s, SLICE_MIN_START_CODE + s->mb_y);
} }
put_qscale(s); put_qscale(s);
put_bits(&s->pb, 1, 0); /* slice extra information */ put_bits(&s->pb, 1, 0); /* slice extra information */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment