diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-12-07 13:00:31 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-12-07 13:00:31 +0000 |
| commit | 2b5f979d75a3d1c85b498c87ba6ae4c98c3011bc (patch) | |
| tree | d9c40aa330a2bd973794eca11c86d559549422ca /apps/plugins/mpegplayer/motion_comp.c | |
| parent | 5886efabf5e4c96a8a96836d665aad935c727e31 (diff) | |
| download | rockbox-2b5f979d75a3d1c85b498c87ba6ae4c98c3011bc.zip rockbox-2b5f979d75a3d1c85b498c87ba6ae4c98c3011bc.tar.gz rockbox-2b5f979d75a3d1c85b498c87ba6ae4c98c3011bc.tar.bz2 rockbox-2b5f979d75a3d1c85b498c87ba6ae4c98c3011bc.tar.xz | |
Reformat and code police (tabs, trailing whitespace, annoying overuse of parentheses, etc.) in libmpeg2 so I can stomach working on it. Don't call IDCT functions through pointers - I don't feel like extracting that change just for relevance sake.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15892 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer/motion_comp.c')
| -rw-r--r-- | apps/plugins/mpegplayer/motion_comp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/motion_comp.c b/apps/plugins/mpegplayer/motion_comp.c index beb5c00..e76b65f 100644 --- a/apps/plugins/mpegplayer/motion_comp.c +++ b/apps/plugins/mpegplayer/motion_comp.c @@ -19,6 +19,8 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * $Id$ */ #include "plugin.h" @@ -48,7 +50,7 @@ extern mpeg2_mc_fct MC_avg_y_8; extern mpeg2_mc_fct MC_avg_xy_16; extern mpeg2_mc_fct MC_avg_xy_8; -mpeg2_mc_t mpeg2_mc = +const mpeg2_mc_t mpeg2_mc = { { MC_put_o_16, MC_put_x_16, MC_put_y_16, MC_put_xy_16, |