[vlc-commits] commit: smem : support non raw video format. In this case we copy compressed data into user buffer. ( Sébastien Escudier )

git at videolan.org git at videolan.org
Sun May 2 19:21:17 CEST 2010


vlc | branch: master | Sébastien Escudier <sebastien-devel at celeos.eu> | Thu Mar 18 14:06:07 2010 +0100| [c9a8f8f6aa430e2de4d7d8e42ab9a3fea2e87cd3] | committer: Jean-Baptiste Kempf 

smem : support non raw video format. In this case we copy compressed data into user buffer.

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c9a8f8f6aa430e2de4d7d8e42ab9a3fea2e87cd3
---

 modules/stream_out/smem.c |   31 +++++++++++++++++++++++--------
 1 files changed, 23 insertions(+), 8 deletions(-)

diff --git a/modules/stream_out/smem.c b/modules/stream_out/smem.c
index 9d317ea..3a14726 100644
--- a/modules/stream_out/smem.c
+++ b/modules/stream_out/smem.c
@@ -250,8 +250,9 @@ static sout_stream_id_t *AddVideo( sout_stream_t *p_stream, es_format_t *p_fmt )
             i_bits_per_pixel = 8;
             break;
         default:
-            msg_Err( p_stream, "Smem does only support raw video format" );
-            return NULL;
+            i_bits_per_pixel = 0;
+            msg_Dbg( p_stream, "non raw video format detected (%4.4s), buffers will contain compressed video", (char *)&p_fmt->i_codec );
+            break;
     }
 
     id = calloc( 1, sizeof( sout_stream_id_t ) );
@@ -342,15 +343,29 @@ static int SendVideo( sout_stream_t *p_stream, sout_stream_id_t *id,
     int i_line, i_line_size, i_size, i_pixel_pitch;
     uint8_t* p_pixels;
 
-    i_line = id->format->video.i_height;
-    i_pixel_pitch = id->format->video.i_bits_per_pixel / 8;
-    i_line_size = i_pixel_pitch * id->format->video.i_width;
-    i_size = i_line * i_line_size;
+    if( id->format->video.i_bits_per_pixel > 0 )
+    {
+        i_line = id->format->video.i_height;
+        i_pixel_pitch = id->format->video.i_bits_per_pixel / 8;
+        i_line_size = i_pixel_pitch * id->format->video.i_width;
+        i_size = i_line * i_line_size;
+    }
+    else
+    {
+        i_size = p_buffer->i_buffer;
+    }
     /* Calling the prerender callback to get user buffer */
     p_sys->pf_video_prerender_callback( id->p_data, &p_pixels , i_size );
     /* Copying data into user buffer */
-    for ( int line = 0; line < i_line; line++, p_pixels += i_line_size )
-        vlc_memcpy( p_pixels, p_buffer->p_buffer + i_line_size * line , i_line_size );
+    if( id->format->video.i_bits_per_pixel > 0 )
+    {
+        for ( int line = 0; line < i_line; line++, p_pixels += i_line_size )
+            vlc_memcpy( p_pixels, p_buffer->p_buffer + i_line_size * line , i_line_size );
+    }
+    else
+    {
+        vlc_memcpy( p_pixels, p_buffer->p_buffer, i_size );
+    }
     /* Calling the postrender callback to tell the user his buffer is ready */
     p_sys->pf_video_postrender_callback( id->p_data, p_pixels,
                                          id->format->video.i_width, id->format->video.i_height,



More information about the vlc-commits mailing list