Mercurial > libavcodec.hg
comparison vp3.c @ 7970:b579f2f9919b libavcodec
Unneeded braces
author | conrad |
---|---|
date | Wed, 01 Oct 2008 14:48:16 +0000 |
parents | 47a22f0850a7 |
children | 2d93e4e1358b |
comparison
equal
deleted
inserted
replaced
7969:47a22f0850a7 | 7970:b579f2f9919b |
---|---|
809 int prior_last_motion_x = 0; | 809 int prior_last_motion_x = 0; |
810 int prior_last_motion_y = 0; | 810 int prior_last_motion_y = 0; |
811 int current_macroblock; | 811 int current_macroblock; |
812 int current_fragment; | 812 int current_fragment; |
813 | 813 |
814 if (s->keyframe) { | 814 if (s->keyframe) |
815 return 0; | 815 return 0; |
816 } else { | 816 else { |
817 memset(motion_x, 0, 6 * sizeof(int)); | 817 memset(motion_x, 0, 6 * sizeof(int)); |
818 memset(motion_y, 0, 6 * sizeof(int)); | 818 memset(motion_y, 0, 6 * sizeof(int)); |
819 | 819 |
820 /* coding mode 0 is the VLC scheme; 1 is the fixed code scheme */ | 820 /* coding mode 0 is the VLC scheme; 1 is the fixed code scheme */ |
821 coding_mode = get_bits1(gb); | 821 coding_mode = get_bits1(gb); |