]> git.sesse.net Git - vlc/blobdiff - modules/codec/rawvideo.c
dtv: fix ISDB-S tuning
[vlc] / modules / codec / rawvideo.c
index 2f0bf6746d539fd0af593086c67b584eb3cfe66b..3cd8719d030f165535837744313de5efdada5a11 100644 (file)
@@ -1,24 +1,24 @@
 /*****************************************************************************
  * rawvideo.c: Pseudo video decoder/packetizer for raw video data
  *****************************************************************************
- * Copyright (C) 2001, 2002 the VideoLAN team
+ * Copyright (C) 2001, 2002 VLC authors and VideoLAN
  * $Id$
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
- * 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
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 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.
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
@@ -94,6 +94,8 @@ static int OpenDecoder( vlc_object_t *p_this )
         /* Planar YUV */
         case VLC_CODEC_I444:
         case VLC_CODEC_J444:
+        case VLC_CODEC_I440:
+        case VLC_CODEC_J440:
         case VLC_CODEC_I422:
         case VLC_CODEC_J422:
         case VLC_CODEC_I420:
@@ -106,6 +108,8 @@ static int OpenDecoder( vlc_object_t *p_this )
         case VLC_CODEC_YUVP:
         case VLC_CODEC_NV12:
         case VLC_CODEC_NV21:
+        case VLC_CODEC_I422_10L:
+        case VLC_CODEC_I422_10B:
 
         /* Packed YUV */
         case VLC_CODEC_YUYV:
@@ -120,6 +124,7 @@ static int OpenDecoder( vlc_object_t *p_this )
         case VLC_CODEC_RGB15:
         case VLC_CODEC_RGB8:
         case VLC_CODEC_RGBP:
+        case VLC_CODEC_RGBA:
             break;
 
         default: