comparison vp3.c @ 10697:7c0cc00cabc8 libavcodec

Cosmetic: indent after last change.
author melanson
date Sat, 19 Dec 2009 07:34:11 +0000
parents a80851eebd2e
children 34a65026fa06
comparison
equal deleted inserted replaced
10696:a80851eebd2e 10697:7c0cc00cabc8
978 av_log(s->avctx, AV_LOG_ERROR, " vp3:unpack_vectors(): bad fragment number (%d >= %d)\n", 978 av_log(s->avctx, AV_LOG_ERROR, " vp3:unpack_vectors(): bad fragment number (%d >= %d)\n",
979 current_fragment, s->fragment_count); 979 current_fragment, s->fragment_count);
980 return 1; 980 return 1;
981 } 981 }
982 if (s->macroblock_coding[current_macroblock] == MODE_INTER_FOURMV) { 982 if (s->macroblock_coding[current_macroblock] == MODE_INTER_FOURMV) {
983 s->all_fragments[current_fragment].motion_x = motion_x[k]; 983 s->all_fragments[current_fragment].motion_x = motion_x[k];
984 s->all_fragments[current_fragment].motion_y = motion_y[k]; 984 s->all_fragments[current_fragment].motion_y = motion_y[k];
985 } else { 985 } else {
986 s->all_fragments[current_fragment].motion_x = motion_x[0]; 986 s->all_fragments[current_fragment].motion_x = motion_x[0];
987 s->all_fragments[current_fragment].motion_y = motion_y[0]; 987 s->all_fragments[current_fragment].motion_y = motion_y[0];
988 } 988 }
989 } 989 }