filter_picture.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * filter_picture.h: Common picture functions for filters
  3.  *****************************************************************************
  4.  * Copyright (C) 2007 the VideoLAN team
  5.  * $Id: b39a26637c9b0e9e036aff5363016757cc8fd854 $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea at videolan dot org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /* FIXME: do all of these really have square pixels? */
  24. #define CASE_PLANAR_YUV_SQUARE              
  25.         case VLC_FOURCC('I','4','2','0'):   
  26.         case VLC_FOURCC('I','Y','U','V'):   
  27.         case VLC_FOURCC('J','4','2','0'):   
  28.         case VLC_FOURCC('Y','V','1','2'):   
  29.         case VLC_FOURCC('I','4','1','1'):   
  30.         case VLC_FOURCC('I','4','1','0'):   
  31.         case VLC_FOURCC('Y','V','U','9'):   
  32.         case VLC_FOURCC('I','4','4','4'):   
  33.         case VLC_FOURCC('J','4','4','4'):   
  34.         case VLC_FOURCC('Y','U','V','A'):
  35. #define CASE_PLANAR_YUV_NONSQUARE           
  36.         case VLC_FOURCC('I','4','2','2'):   
  37.         case VLC_FOURCC('J','4','2','2'):
  38. #define CASE_PLANAR_YUV                     
  39.         CASE_PLANAR_YUV_SQUARE              
  40.         CASE_PLANAR_YUV_NONSQUARE           
  41. #define CASE_PACKED_YUV_422                 
  42.         case VLC_FOURCC('U','Y','V','Y'):   
  43.         case VLC_FOURCC('U','Y','N','V'):   
  44.         case VLC_FOURCC('Y','4','2','2'):   
  45.         case VLC_FOURCC('c','y','u','v'):   
  46.         case VLC_FOURCC('Y','U','Y','2'):   
  47.         case VLC_FOURCC('Y','U','N','V'):   
  48.         case VLC_FOURCC('Y','V','Y','U'):
  49. static inline int GetPackedYuvOffsets( vlc_fourcc_t i_chroma,
  50.     int *i_y_offset, int *i_u_offset, int *i_v_offset )
  51. {
  52.     switch( i_chroma )
  53.     {
  54.         case VLC_FOURCC('U','Y','V','Y'):
  55.         case VLC_FOURCC('U','Y','N','V'):
  56.         case VLC_FOURCC('Y','4','2','2'):
  57.         case VLC_FOURCC('c','y','u','v'): /* <-- FIXME: reverted, whatever that means */
  58.             /* UYVY */
  59.             *i_y_offset = 1;
  60.             *i_u_offset = 0;
  61.             *i_v_offset = 2;
  62.             return VLC_SUCCESS;
  63.         case VLC_FOURCC('Y','U','Y','2'):
  64.         case VLC_FOURCC('Y','U','N','V'):
  65.             /* YUYV */
  66.             *i_y_offset = 0;
  67.             *i_u_offset = 1;
  68.             *i_v_offset = 3;
  69.             return VLC_SUCCESS;
  70.         case VLC_FOURCC('Y','V','Y','U'):
  71.             /* YVYU */
  72.             *i_y_offset = 0;
  73.             *i_u_offset = 3;
  74.             *i_v_offset = 1;
  75.             return VLC_SUCCESS;
  76.         default:
  77.             return VLC_EGENERIC;
  78.     }
  79. }
  80. /*****************************************************************************
  81.  *
  82.  *****************************************************************************/
  83. static inline picture_t *CopyInfoAndRelease( picture_t *p_outpic, picture_t *p_inpic )
  84. {
  85.     picture_CopyProperties( p_outpic, p_inpic );
  86.     picture_Release( p_inpic );
  87.     return p_outpic;
  88. }