]> git.sesse.net Git - vlc/commitdiff
* modules/codec/ffmpeg/*: added chroma conversion capabilities to the ffmpeg plugin...
authorGildas Bazin <gbazin@videolan.org>
Sun, 27 Apr 2003 15:25:11 +0000 (15:25 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sun, 27 Apr 2003 15:25:11 +0000 (15:25 +0000)
  (I can finaly watch my RGB tarkin samples :))
* modules/demux/rawdv.c: fixed a couple of compiler warnings.

modules/codec/ffmpeg/Modules.am
modules/codec/ffmpeg/chroma.c [new file with mode: 0644]
modules/codec/ffmpeg/ffmpeg.c
modules/demux/rawdv.c

index 817dbc85537781763f2f3b08d6e863c6186b06ba..7483e30c1e77d75f1668ca9de09de04839588e05 100644 (file)
@@ -5,5 +5,6 @@ SOURCES_ffmpeg = \
        modules/codec/ffmpeg/video.h \
        modules/codec/ffmpeg/audio.c \
        modules/codec/ffmpeg/audio.h \
+       modules/codec/ffmpeg/chroma.c \
        $(NULL)
 
diff --git a/modules/codec/ffmpeg/chroma.c b/modules/codec/ffmpeg/chroma.c
new file mode 100644 (file)
index 0000000..ec371fd
--- /dev/null
@@ -0,0 +1,191 @@
+/*****************************************************************************
+ * chroma.c: chroma conversion using ffmpeg library
+ *****************************************************************************
+ * Copyright (C) 1999-2001 VideoLAN
+ * $Id: chroma.c,v 1.1 2003/04/27 15:25:11 gbazin Exp $
+ *
+ * Authors: Gildas Bazin <gbazin@netcourrier.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ *****************************************************************************/
+
+/*****************************************************************************
+ * Preamble
+ *****************************************************************************/
+#include <stdlib.h>                                      /* malloc(), free() */
+
+#include <vlc/vlc.h>
+#include <vlc/vout.h>
+
+/* ffmpeg header */
+#ifdef HAVE_FFMPEG_AVCODEC_H
+#   include <ffmpeg/avcodec.h>
+#else
+#   include <avcodec.h>
+#endif
+
+#include "ffmpeg.h"
+
+void ChromaConversion( vout_thread_t *, picture_t *, picture_t * );
+
+/*****************************************************************************
+ * chroma_sys_t: chroma method descriptor
+ *****************************************************************************
+ * This structure is part of the chroma transformation descriptor, it
+ * describes the chroma plugin specific properties.
+ *****************************************************************************/
+struct chroma_sys_t
+{
+    int i_src_vlc_chroma;
+    int i_src_ffmpeg_chroma;
+    int i_dst_vlc_chroma;
+    int i_dst_ffmpeg_chroma;
+};
+
+/*****************************************************************************
+ * OpenChroma: allocate a chroma function
+ *****************************************************************************
+ * This function allocates and initializes a chroma function
+ *****************************************************************************/
+int E_(OpenChroma)( vlc_object_t *p_this )
+{
+    vout_thread_t *p_vout = (vout_thread_t *)p_this;
+    int i_ffmpeg_chroma[2], i_vlc_chroma[2], i;
+
+    /*
+     * Check the source chroma first, then the destination chroma
+     */
+    i_vlc_chroma[0] = p_vout->render.i_chroma;
+    i_vlc_chroma[1] = p_vout->output.i_chroma;
+    for( i = 0; i < 2; i++ )
+    {
+        switch( i_vlc_chroma[i] )
+        {
+
+        /* Planar YUV formats */
+        case VLC_FOURCC('I','4','4','4'):
+            i_ffmpeg_chroma[i] = PIX_FMT_YUV444P;
+            break;
+
+        case VLC_FOURCC('I','4','2','2'):
+            i_ffmpeg_chroma[i] = PIX_FMT_YUV422P;
+            break;
+
+        case VLC_FOURCC('Y','V','1','2'):
+        case VLC_FOURCC('I','4','2','0'):
+        case VLC_FOURCC('I','Y','U','V'):
+            i_ffmpeg_chroma[i] = PIX_FMT_YUV420P;
+            break;
+
+        case VLC_FOURCC('I','4','1','1'):
+            i_ffmpeg_chroma[i] = PIX_FMT_YUV411P;
+            break;
+
+        case VLC_FOURCC('I','4','1','0'):
+            i_ffmpeg_chroma[i] = PIX_FMT_YUV410P;
+            break;
+
+        /* Packed YUV formats */
+
+        case VLC_FOURCC('Y','U','Y','2'):
+        case VLC_FOURCC('U','Y','V','Y'):
+            i_ffmpeg_chroma[i] = PIX_FMT_YUV422;
+            break;
+           
+        /* Packed RGB formats */
+
+        case VLC_FOURCC('R','V','3','2'):
+            i_ffmpeg_chroma[i] = PIX_FMT_RGBA32;
+            break;
+
+        case VLC_FOURCC('R','V','2','4'):
+            i_ffmpeg_chroma[i] = PIX_FMT_RGB24;
+            //i_ffmpeg_chroma[i] = PIX_FMT_BGR24;
+            break;
+
+        case VLC_FOURCC('R','V','1','6'):
+            i_ffmpeg_chroma[i] = PIX_FMT_RGB565;
+            break;
+
+        case VLC_FOURCC('R','V','1','5'):
+            i_ffmpeg_chroma[i] = PIX_FMT_RGB555;
+            break;
+
+        case VLC_FOURCC('R','G','B','2'):
+            i_ffmpeg_chroma[i] = PIX_FMT_GRAY8;
+            break;
+
+        default:
+            return VLC_EGENERIC;
+            break;
+        }
+    }
+
+    p_vout->chroma.pf_convert = ChromaConversion;
+
+    p_vout->chroma.p_sys = malloc( sizeof( chroma_sys_t ) );
+    if( p_vout->chroma.p_sys == NULL )
+    {
+        return VLC_EGENERIC;
+    }
+
+    p_vout->chroma.p_sys->i_src_vlc_chroma = p_vout->render.i_chroma;
+    p_vout->chroma.p_sys->i_dst_vlc_chroma = p_vout->output.i_chroma;
+    p_vout->chroma.p_sys->i_src_ffmpeg_chroma = i_ffmpeg_chroma[0];
+    p_vout->chroma.p_sys->i_dst_ffmpeg_chroma = i_ffmpeg_chroma[1];
+
+    return VLC_SUCCESS;
+}
+
+/*****************************************************************************
+ * ChromaConversion: actual chroma conversion function
+ *****************************************************************************/
+void ChromaConversion( vout_thread_t *p_vout,
+                       picture_t *p_src, picture_t *p_dest )
+{
+    AVPicture src_pic;
+    AVPicture dest_pic;
+    int i;
+
+    /* Prepare the AVPictures for converion */
+    for( i = 0; i < p_src->i_planes; i++ )
+    {
+        src_pic.data[i] = p_src->p[i].p_pixels;
+        src_pic.linesize[i] = p_src->p[i].i_pitch;
+    }
+    for( i = 0; i < p_dest->i_planes; i++ )
+    {
+        dest_pic.data[i] = p_dest->p[i].p_pixels;
+        dest_pic.linesize[i] = p_dest->p[i].i_pitch;
+    }
+
+    /* Special cases */
+    if( p_vout->chroma.p_sys->i_src_vlc_chroma == VLC_FOURCC('Y','V','1','2') )
+    {
+        /* Invert U and V */
+        src_pic.data[1] = p_src->p[2].p_pixels;
+        src_pic.data[2] = p_src->p[1].p_pixels;
+    }
+    if( p_vout->chroma.p_sys->i_dst_vlc_chroma == VLC_FOURCC('Y','V','1','2') )
+    {
+        /* Invert U and V */
+        dest_pic.data[1] = p_dest->p[2].p_pixels;
+        dest_pic.data[2] = p_dest->p[1].p_pixels;
+    }
+
+    img_convert( &dest_pic, p_vout->chroma.p_sys->i_dst_ffmpeg_chroma,
+                 &src_pic, p_vout->chroma.p_sys->i_src_ffmpeg_chroma,
+                 p_vout->render.i_width, p_vout->render.i_height );
+}
index 23b8a39bd8612499b60aad46bedd194c9c587856..fe3b6b3d93e9d13b946aa5e5ca9ed9000f2fa5a0 100644 (file)
@@ -2,7 +2,7 @@
  * ffmpeg.c: video decoder using ffmpeg library
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: ffmpeg.c,v 1.32 2003/04/20 14:11:25 gbazin Exp $
+ * $Id: ffmpeg.c,v 1.33 2003/04/27 15:25:11 gbazin Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -68,6 +68,7 @@
 /*
  * Local prototypes
  */
+int             E_(OpenChroma)  ( vlc_object_t * );
 static int      OpenDecoder     ( vlc_object_t * );
 static int      RunDecoder      ( decoder_fifo_t * );
 
@@ -151,6 +152,10 @@ static int ffmpeg_GetFfmpegCodec( vlc_fourcc_t, int *, int *, char ** );
 
 vlc_module_begin();
     add_category_hint( N_("ffmpeg"), NULL, VLC_FALSE );
+    set_capability( "decoder", 70 );
+    set_callbacks( OpenDecoder, NULL );
+    set_description( _("ffmpeg audio/video decoder((MS)MPEG4,SVQ1,H263,WMV,WMA)") );
+
     add_bool( "ffmpeg-dr", 0, NULL,
               "direct rendering",
               "direct rendering", VLC_TRUE );
@@ -191,9 +196,13 @@ vlc_module_begin();
               "force chrominance deringing",
               "force chrominance deringing (override other settings)", VLC_TRUE );
 #endif
-    set_description( _("ffmpeg audio/video decoder((MS)MPEG4,SVQ1,H263,WMV,WMA)") );
-    set_capability( "decoder", 70 );
-    set_callbacks( OpenDecoder, NULL );
+
+    /* chroma conversion submodule */
+    add_submodule();
+    set_capability( "chroma", 50 );
+    set_callbacks( E_(OpenChroma), NULL );
+    set_description( _("ffmpeg chroma conversion") );
+
 vlc_module_end();
 
 /*****************************************************************************
index 3bec1f0b16ae610c0dc702688f8b3af80a79af8c..2b2fb898b6f712c27106b708092d048c341111dd 100644 (file)
@@ -2,7 +2,7 @@
  * rawdv.c : raw dv input module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: rawdv.c,v 1.6 2003/04/27 14:56:47 gbazin Exp $
+ * $Id: rawdv.c,v 1.7 2003/04/27 15:25:11 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -343,8 +343,8 @@ static void Deactivate( vlc_object_t *p_this )
 static int Demux( input_thread_t * p_input )
 {
     demux_sys_t    *p_rawdv = (demux_sys_t *)p_input->p_demux_data;
-    pes_packet_t   *p_pes;
-    pes_packet_t   *p_audio_pes;
+    pes_packet_t   *p_pes = NULL;
+    pes_packet_t   *p_audio_pes = NULL;
     data_packet_t  *p_data;
     ssize_t        i_read;
 
@@ -404,7 +404,7 @@ static int Demux( input_thread_t * p_input )
     if( p_rawdv->p_audio_es->p_decoder_fifo )
     {
         p_audio_pes = input_NewPES( p_input->p_method_data );
-        if( p_pes == NULL )
+        if( p_audio_pes == NULL )
         {
             msg_Err( p_input, "out of memory" );
             input_DeletePacket( p_input->p_method_data, p_data );