mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-14 22:22:59 +02:00
avcodec/mpegvideo: Reindentation
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
f860dfe555
commit
090cd1394f
@ -782,10 +782,9 @@ static int init_context_frame(MpegEncContext *s)
|
||||
s->p_field_select_table[1] = s->p_field_select_table[0] + 2 * mv_table_size;
|
||||
tmp1 += s->mb_stride + 1;
|
||||
|
||||
for (i = 0; i < 2; i++) {
|
||||
int j, k;
|
||||
for (j = 0; j < 2; j++) {
|
||||
for (k = 0; k < 2; k++) {
|
||||
for (int i = 0; i < 2; i++) {
|
||||
for (int j = 0; j < 2; j++) {
|
||||
for (int k = 0; k < 2; k++) {
|
||||
s->b_field_mv_table[i][j][k] = tmp1;
|
||||
tmp1 += mv_table_size;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user