-rw-r--r-- | noncore/multimedia/opieplayer2/yuv2rgb_arm2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/multimedia/opieplayer2/yuv2rgb_arm2.c b/noncore/multimedia/opieplayer2/yuv2rgb_arm2.c index cbd32e8..91cd0b1 100644 --- a/noncore/multimedia/opieplayer2/yuv2rgb_arm2.c +++ b/noncore/multimedia/opieplayer2/yuv2rgb_arm2.c @@ -55,32 +55,33 @@ static void arm_rgb16_2 (yuv2rgb_t*, uint8_t*, uint8_t*, uint8_t*, uint8_t*); /* extern function: */ /* Function: */ void yuv2rgb_init_arm (yuv2rgb_factory_t *this) /* This function initialise the member yuv2rgb_fun, if everything is right the function optimised for the arm target should be used.*/ { if (this->swapped) return; /*no swapped pixel output upto now*/ switch (this->mode) { case MODE_16_RGB: this->yuv2rgb_fun = arm_rgb16_2; break; default: + break; } } /* local functions: */ /* Function: */ static void arm_rgb16_2 (yuv2rgb_t *this, uint8_t * _dst, uint8_t * _py, uint8_t * _pu, uint8_t * _pv) /* This function takes care of applying the right scaling conversion (yuv2rgb is included in each scaling function!)*/ { if (!this->do_scale) { arm_rgb16_noscale(this, _dst, _py, _pu, _pv); return; |