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/idct_coldfire.S | |
| 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/idct_coldfire.S')
| -rw-r--r-- | apps/plugins/mpegplayer/idct_coldfire.S | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/mpegplayer/idct_coldfire.S b/apps/plugins/mpegplayer/idct_coldfire.S index 9459c28..aa9a75b 100644 --- a/apps/plugins/mpegplayer/idct_coldfire.S +++ b/apps/plugins/mpegplayer/idct_coldfire.S @@ -18,10 +18,10 @@ * ****************************************************************************/ - .global mpeg2_idct_copy_coldfire - .type mpeg2_idct_copy_coldfire, @function - .global mpeg2_idct_add_coldfire - .type mpeg2_idct_add_coldfire, @function + .global mpeg2_idct_copy + .type mpeg2_idct_copy, @function + .global mpeg2_idct_add + .type mpeg2_idct_add, @function /* The IDCT itself. * Input: %a0: block pointer @@ -240,7 +240,7 @@ .align 2 -mpeg2_idct_copy_coldfire: +mpeg2_idct_copy: lea.l (-11*4,%sp), %sp movem.l %d2-%d7/%a2-%a6, (%sp) | save some registers move.l (11*4+4,%sp), %a0 | %a0 - block pointer for idct @@ -339,7 +339,7 @@ mpeg2_idct_copy_coldfire: .align 2 -mpeg2_idct_add_coldfire: +mpeg2_idct_add: lea.l (-11*4,%sp), %sp movem.l %d2-%d7/%a2-%a6, (%sp) movem.l (11*4+4,%sp), %d0/%a0-%a2 | %d0 - last value |