[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec/mlib dsputil_mlib.c, 1.16, 1.17
Diego Biurrun CVS
diego
Thu Dec 22 02:10:12 CET 2005
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg configure,1.220,1.221
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec/ps2 dsputil_mmi.c, 1.11, 1.12 idct_mmi.c, 1.6, 1.7 mmi.h, 1.2, 1.3 mpegvideo_mmi.c, 1.7, 1.8
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/ffmpeg/ffmpeg/libavcodec/mlib
In directory mail:/var2/tmp/cvs-serv29491/libavcodec/mlib
Modified Files:
dsputil_mlib.c
Log Message:
COSMETICS: tabs --> spaces, some prettyprinting
Index: dsputil_mlib.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/mlib/dsputil_mlib.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- dsputil_mlib.c 17 Dec 2005 18:14:35 -0000 1.16
+++ dsputil_mlib.c 22 Dec 2005 01:10:10 -0000 1.17
@@ -61,7 +61,7 @@
/* put block, width 16 pixel, height 8/16 */
static void put_pixels16_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 8:
@@ -78,7 +78,7 @@
}
static void put_pixels16_x2_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 8:
@@ -95,7 +95,7 @@
}
static void put_pixels16_y2_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 8:
@@ -112,7 +112,7 @@
}
static void put_pixels16_xy2_mlib(uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 8:
@@ -131,7 +131,7 @@
/* put block, width 8 pixel, height 4/8/16 */
static void put_pixels8_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 4:
@@ -152,7 +152,7 @@
}
static void put_pixels8_x2_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 4:
@@ -173,7 +173,7 @@
}
static void put_pixels8_y2_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 4:
@@ -194,7 +194,7 @@
}
static void put_pixels8_xy2_mlib(uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 4:
@@ -217,7 +217,7 @@
/* average block, width 16 pixel, height 8/16 */
static void avg_pixels16_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 8:
@@ -234,7 +234,7 @@
}
static void avg_pixels16_x2_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 8:
@@ -251,7 +251,7 @@
}
static void avg_pixels16_y2_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 8:
@@ -268,7 +268,7 @@
}
static void avg_pixels16_xy2_mlib(uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 8:
@@ -287,7 +287,7 @@
/* average block, width 8 pixel, height 4/8/16 */
static void avg_pixels8_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 4:
@@ -308,7 +308,7 @@
}
static void avg_pixels8_x2_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 4:
@@ -329,7 +329,7 @@
}
static void avg_pixels8_y2_mlib (uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 4:
@@ -350,7 +350,7 @@
}
static void avg_pixels8_xy2_mlib(uint8_t * dest, const uint8_t * ref,
- int stride, int height)
+ int stride, int height)
{
switch (height) {
case 4:
@@ -450,7 +450,7 @@
void MPV_common_init_mlib(MpegEncContext *s)
{
if(s->avctx->dct_algo==FF_DCT_AUTO || s->avctx->dct_algo==FF_DCT_MLIB){
- s->dsp.fdct = ff_fdct_mlib;
+ s->dsp.fdct = ff_fdct_mlib;
}
if(s->avctx->idct_algo==FF_IDCT_AUTO || s->avctx->idct_algo==FF_IDCT_MLIB){
- Previous message: [Ffmpeg-cvslog] CVS: ffmpeg configure,1.220,1.221
- Next message: [Ffmpeg-cvslog] CVS: ffmpeg/libavcodec/ps2 dsputil_mmi.c, 1.11, 1.12 idct_mmi.c, 1.6, 1.7 mmi.h, 1.2, 1.3 mpegvideo_mmi.c, 1.7, 1.8
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the ffmpeg-cvslog
mailing list