summaryrefslogtreecommitdiffstats
path: root/libvo/vo_jpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/vo_jpeg.c')
-rw-r--r--libvo/vo_jpeg.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libvo/vo_jpeg.c b/libvo/vo_jpeg.c
index 51af4f91f4..be57e0e339 100644
--- a/libvo/vo_jpeg.c
+++ b/libvo/vo_jpeg.c
@@ -191,17 +191,6 @@ static void flip_page (void)
static uint32_t draw_slice( uint8_t *src[],int stride[],int w,int h,int x,int y )
{
- // hack: swap planes for I420 ;) -- alex
- if ((image_format == IMGFMT_IYUV) || (image_format == IMGFMT_I420))
- {
- uint8_t *src_i420[3];
-
- src_i420[0]=src[0];
- src_i420[1]=src[2];
- src_i420[2]=src[1];
- src=src_i420;
- }
-
if (scale_srcW)
{
uint8_t *dst[3]={image_data, NULL, NULL};