]> git.sesse.net Git - mlt/commitdiff
More SDL tweaks
authorlilo_booter <lilo_booter@d19143bc-622f-0410-bfdd-b5b2a6649095>
Fri, 26 Dec 2003 11:46:31 +0000 (11:46 +0000)
committerlilo_booter <lilo_booter@d19143bc-622f-0410-bfdd-b5b2a6649095>
Fri, 26 Dec 2003 11:46:31 +0000 (11:46 +0000)
git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@19 d19143bc-622f-0410-bfdd-b5b2a6649095

mlt/src/framework/mlt_frame.c
mlt/src/framework/mlt_frame.h
mlt/src/modules/sdl/consumer_sdl.c
src/framework/mlt_frame.c
src/framework/mlt_frame.h
src/modules/sdl/consumer_sdl.c

index d1f69131c2e28657990c76ac198816a8dcb90739..f0b9351110cc89e27b2d0300c3de8f3c6a297eff 100644 (file)
@@ -432,6 +432,66 @@ int mlt_frame_composite_yuv( mlt_frame this, mlt_frame that, int x, int y, float
        return ret;
 }
 
+void mlt_resize_yuv422( uint8_t *output, int owidth, int oheight, uint8_t *input, int iwidth, int iheight )
+{
+       // Calculate strides
+       int istride = iwidth * 2;
+       int ostride = owidth * 2;
+
+       // Coordinates (0,0 is middle of output)
+       int y, x;
+
+       // Calculate ranges
+       int out_x_range = owidth / 2;
+       int out_y_range = oheight / 2;
+       int in_x_range = iwidth / 2;
+       int in_y_range = iheight / 2;
+
+       // Output pointers
+       uint8_t *out_line = output;
+       uint8_t *out_ptr;
+
+       // Calculate a middle and possibly invalid pointer in the input
+       uint8_t *in_middle = input + istride * in_y_range + in_x_range * 2;
+       int in_line = - out_y_range * istride - out_x_range * 2;
+       int in_ptr;
+
+       // Loop for the entirety of our output height.
+       for ( y = - out_y_range; y < out_y_range ; y ++ )
+       {
+               // Start at the beginning of the line
+               out_ptr = out_line;
+
+               // Point the start of the current input line (NB: can be out of range)
+               in_ptr = in_line;
+
+               // Loop for the entirety of our output row.
+               for ( x = - out_x_range; x < out_x_range; x ++ )
+               {
+               // Check if x and y are in the valid input range.
+               if ( abs( x ) < in_x_range && abs( y ) < in_y_range  )
+               {
+                       // We're in the input range for this row.
+                       *out_ptr ++ = *( in_middle + in_ptr ++ );
+                       *out_ptr ++ = *( in_middle + in_ptr ++ );
+               }
+               else
+               {
+                       // We're not in the input range for this row.
+                       *out_ptr ++ = 16;
+                       *out_ptr ++ = 128;
+                       in_ptr += 2;
+               }
+               }
+
+               // Move to next output line
+               out_line += ostride;
+
+               // Move to next input line
+               in_line += istride;
+       }
+}
+
 /** A resizing function for yuv422 frames - this does not rescale, but simply
        resizes. It assumes yuv422 images available on the frame so use with care.
 */
@@ -452,62 +512,8 @@ uint8_t *mlt_frame_resize_yuv422( mlt_frame this, int owidth, int oheight )
                // Create the output image
                uint8_t *output = malloc( owidth * oheight * 2 );
 
-               // Calculate strides
-               int istride = iwidth * 2;
-               int ostride = owidth * 2;
-
-       // Coordinates (0,0 is middle of output)
-       int y, x;
-
-       // Calculate ranges
-       int out_x_range = owidth / 2;
-       int out_y_range = oheight / 2;
-       int in_x_range = iwidth / 2;
-       int in_y_range = iheight / 2;
-
-       // Output pointers
-       uint8_t *out_line = output;
-       uint8_t *out_ptr;
-
-       // Calculate a middle and possibly invalid pointer in the input
-       uint8_t *in_middle = input + istride * in_y_range + in_x_range * 2;
-       int in_line = - out_y_range * istride - out_x_range * 2;
-       int in_ptr;
-
-       // Loop for the entirety of our output height.
-       for ( y = - out_y_range; y < out_y_range ; y ++ )
-       {
-               // Start at the beginning of the line
-               out_ptr = out_line;
-       
-               // Point the start of the current input line (NB: can be out of range)
-               in_ptr = in_line;
-       
-               // Loop for the entirety of our output row.
-               for ( x = - out_x_range; x < out_x_range; x ++ )
-               {
-               // Check if x and y are in the valid input range.
-               if ( abs( x ) < in_x_range && abs( y ) < in_y_range  )
-               {
-                       // We're in the input range for this row.
-                       *out_ptr ++ = *( in_middle + in_ptr ++ );
-                       *out_ptr ++ = *( in_middle + in_ptr ++ );
-               }
-               else
-               {
-                       // We're not in the input range for this row.
-                       *out_ptr ++ = 16;
-                       *out_ptr ++ = 128;
-                       in_ptr += 2;
-               }
-               }
-
-               // Move to next output line
-               out_line += ostride;
-
-               // Move to next input line
-               in_line += istride;
-       }
+               // Call the generic resize
+               mlt_resize_yuv422( output, owidth, oheight, input, iwidth, iheight );
 
                // Now update the frame
                mlt_properties_set_data( properties, "image", output, owidth * oheight * 2, free, NULL );
index 275935e8833a6fea26f22251f3271df3f89b751a..35dc53d26eb3526847c2d269e3ae00fd3702304c 100644 (file)
@@ -89,6 +89,7 @@ extern int mlt_convert_rgb24_to_yuv422( uint8_t *rgb, int width, int height, int
 extern int mlt_frame_composite_yuv( mlt_frame this, mlt_frame that, int x, int y, float weight );
 extern uint8_t *mlt_frame_resize_yuv422( mlt_frame this, int owidth, int oheight );
 extern uint8_t *mlt_frame_rescale_yuv422( mlt_frame this, int owidth, int oheight );
+extern void mlt_resize_yuv422( uint8_t *output, int owidth, int oheight, uint8_t *input, int iwidth, int iheight );
 
 #endif
 
index c685296ef1a819196500140652d2ff1e23617b0b..f438d26a6d1023b92591eac13365bfb015c714b2 100644 (file)
@@ -309,7 +309,7 @@ static void *consumer_thread( void *arg )
                                        if ( sdl_overlay != NULL )
                                                SDL_FreeYUVOverlay( sdl_overlay );
                                        sdl_lock_display();
-                                       sdl_overlay = SDL_CreateYUVOverlay( width, height, SDL_YUY2_OVERLAY, sdl_screen );
+                                       sdl_overlay = SDL_CreateYUVOverlay( this->width, this->height, SDL_YUY2_OVERLAY, sdl_screen );
                                        sdl_unlock_display();
                                }
                        }
@@ -321,7 +321,7 @@ static void *consumer_thread( void *arg )
                                {
                                        if ( SDL_LockYUVOverlay( sdl_overlay ) >= 0 )
                                        {
-                                               memcpy( buffer, image, width * height * 2 );
+                                               mlt_resize_yuv422( buffer, this->width, this->height, image, width, height );
                                                SDL_UnlockYUVOverlay( sdl_overlay );
                                                SDL_DisplayYUVOverlay( sdl_overlay, &sdl_screen->clip_rect );
                                        }
index d1f69131c2e28657990c76ac198816a8dcb90739..f0b9351110cc89e27b2d0300c3de8f3c6a297eff 100644 (file)
@@ -432,6 +432,66 @@ int mlt_frame_composite_yuv( mlt_frame this, mlt_frame that, int x, int y, float
        return ret;
 }
 
+void mlt_resize_yuv422( uint8_t *output, int owidth, int oheight, uint8_t *input, int iwidth, int iheight )
+{
+       // Calculate strides
+       int istride = iwidth * 2;
+       int ostride = owidth * 2;
+
+       // Coordinates (0,0 is middle of output)
+       int y, x;
+
+       // Calculate ranges
+       int out_x_range = owidth / 2;
+       int out_y_range = oheight / 2;
+       int in_x_range = iwidth / 2;
+       int in_y_range = iheight / 2;
+
+       // Output pointers
+       uint8_t *out_line = output;
+       uint8_t *out_ptr;
+
+       // Calculate a middle and possibly invalid pointer in the input
+       uint8_t *in_middle = input + istride * in_y_range + in_x_range * 2;
+       int in_line = - out_y_range * istride - out_x_range * 2;
+       int in_ptr;
+
+       // Loop for the entirety of our output height.
+       for ( y = - out_y_range; y < out_y_range ; y ++ )
+       {
+               // Start at the beginning of the line
+               out_ptr = out_line;
+
+               // Point the start of the current input line (NB: can be out of range)
+               in_ptr = in_line;
+
+               // Loop for the entirety of our output row.
+               for ( x = - out_x_range; x < out_x_range; x ++ )
+               {
+               // Check if x and y are in the valid input range.
+               if ( abs( x ) < in_x_range && abs( y ) < in_y_range  )
+               {
+                       // We're in the input range for this row.
+                       *out_ptr ++ = *( in_middle + in_ptr ++ );
+                       *out_ptr ++ = *( in_middle + in_ptr ++ );
+               }
+               else
+               {
+                       // We're not in the input range for this row.
+                       *out_ptr ++ = 16;
+                       *out_ptr ++ = 128;
+                       in_ptr += 2;
+               }
+               }
+
+               // Move to next output line
+               out_line += ostride;
+
+               // Move to next input line
+               in_line += istride;
+       }
+}
+
 /** A resizing function for yuv422 frames - this does not rescale, but simply
        resizes. It assumes yuv422 images available on the frame so use with care.
 */
@@ -452,62 +512,8 @@ uint8_t *mlt_frame_resize_yuv422( mlt_frame this, int owidth, int oheight )
                // Create the output image
                uint8_t *output = malloc( owidth * oheight * 2 );
 
-               // Calculate strides
-               int istride = iwidth * 2;
-               int ostride = owidth * 2;
-
-       // Coordinates (0,0 is middle of output)
-       int y, x;
-
-       // Calculate ranges
-       int out_x_range = owidth / 2;
-       int out_y_range = oheight / 2;
-       int in_x_range = iwidth / 2;
-       int in_y_range = iheight / 2;
-
-       // Output pointers
-       uint8_t *out_line = output;
-       uint8_t *out_ptr;
-
-       // Calculate a middle and possibly invalid pointer in the input
-       uint8_t *in_middle = input + istride * in_y_range + in_x_range * 2;
-       int in_line = - out_y_range * istride - out_x_range * 2;
-       int in_ptr;
-
-       // Loop for the entirety of our output height.
-       for ( y = - out_y_range; y < out_y_range ; y ++ )
-       {
-               // Start at the beginning of the line
-               out_ptr = out_line;
-       
-               // Point the start of the current input line (NB: can be out of range)
-               in_ptr = in_line;
-       
-               // Loop for the entirety of our output row.
-               for ( x = - out_x_range; x < out_x_range; x ++ )
-               {
-               // Check if x and y are in the valid input range.
-               if ( abs( x ) < in_x_range && abs( y ) < in_y_range  )
-               {
-                       // We're in the input range for this row.
-                       *out_ptr ++ = *( in_middle + in_ptr ++ );
-                       *out_ptr ++ = *( in_middle + in_ptr ++ );
-               }
-               else
-               {
-                       // We're not in the input range for this row.
-                       *out_ptr ++ = 16;
-                       *out_ptr ++ = 128;
-                       in_ptr += 2;
-               }
-               }
-
-               // Move to next output line
-               out_line += ostride;
-
-               // Move to next input line
-               in_line += istride;
-       }
+               // Call the generic resize
+               mlt_resize_yuv422( output, owidth, oheight, input, iwidth, iheight );
 
                // Now update the frame
                mlt_properties_set_data( properties, "image", output, owidth * oheight * 2, free, NULL );
index 275935e8833a6fea26f22251f3271df3f89b751a..35dc53d26eb3526847c2d269e3ae00fd3702304c 100644 (file)
@@ -89,6 +89,7 @@ extern int mlt_convert_rgb24_to_yuv422( uint8_t *rgb, int width, int height, int
 extern int mlt_frame_composite_yuv( mlt_frame this, mlt_frame that, int x, int y, float weight );
 extern uint8_t *mlt_frame_resize_yuv422( mlt_frame this, int owidth, int oheight );
 extern uint8_t *mlt_frame_rescale_yuv422( mlt_frame this, int owidth, int oheight );
+extern void mlt_resize_yuv422( uint8_t *output, int owidth, int oheight, uint8_t *input, int iwidth, int iheight );
 
 #endif
 
index c685296ef1a819196500140652d2ff1e23617b0b..f438d26a6d1023b92591eac13365bfb015c714b2 100644 (file)
@@ -309,7 +309,7 @@ static void *consumer_thread( void *arg )
                                        if ( sdl_overlay != NULL )
                                                SDL_FreeYUVOverlay( sdl_overlay );
                                        sdl_lock_display();
-                                       sdl_overlay = SDL_CreateYUVOverlay( width, height, SDL_YUY2_OVERLAY, sdl_screen );
+                                       sdl_overlay = SDL_CreateYUVOverlay( this->width, this->height, SDL_YUY2_OVERLAY, sdl_screen );
                                        sdl_unlock_display();
                                }
                        }
@@ -321,7 +321,7 @@ static void *consumer_thread( void *arg )
                                {
                                        if ( SDL_LockYUVOverlay( sdl_overlay ) >= 0 )
                                        {
-                                               memcpy( buffer, image, width * height * 2 );
+                                               mlt_resize_yuv422( buffer, this->width, this->height, image, width, height );
                                                SDL_UnlockYUVOverlay( sdl_overlay );
                                                SDL_DisplayYUVOverlay( sdl_overlay, &sdl_screen->clip_rect );
                                        }