diff options
author | Mike Melanson <mike@multimedia.cx> | 2009-12-19 07:34:11 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2009-12-19 07:34:11 +0000 |
commit | da8af9388c43796b38e1664c9a45ea13300caebb (patch) | |
tree | 6a12c380f4763fa58249ec2e935f5a1fc4671a16 | |
parent | e6e32bdc5f3c4b221d330cc9c58cb7ca3d1fd396 (diff) | |
download | ffmpeg-streaming-da8af9388c43796b38e1664c9a45ea13300caebb.zip ffmpeg-streaming-da8af9388c43796b38e1664c9a45ea13300caebb.tar.gz |
Cosmetic: indent after last change.
Originally committed as revision 20896 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/vp3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index d67f91e..20076e3 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -980,8 +980,8 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb) return 1; } if (s->macroblock_coding[current_macroblock] == MODE_INTER_FOURMV) { - s->all_fragments[current_fragment].motion_x = motion_x[k]; - s->all_fragments[current_fragment].motion_y = motion_y[k]; + s->all_fragments[current_fragment].motion_x = motion_x[k]; + s->all_fragments[current_fragment].motion_y = motion_y[k]; } else { s->all_fragments[current_fragment].motion_x = motion_x[0]; s->all_fragments[current_fragment].motion_y = motion_y[0]; |