📄 chroma.c
字号:
/***************************************************************************** * chroma.c: chroma conversion using ffmpeg library ***************************************************************************** * Copyright (C) 1999-2001 VideoLAN * $Id: chroma.c 10101 2005-03-02 16:47:31Z robux4 $ * * Authors: Gildas Bazin <gbazin@videolan.org> * * 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 <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 E_(InitLibavcodec) ( vlc_object_t *p_object );static 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; AVPicture tmp_pic; ImgReSampleContext *p_rsc;};/***************************************************************************** * 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++ ) { i_ffmpeg_chroma[i] = E_(GetFfmpegChroma)( i_vlc_chroma[i] ); if( i_ffmpeg_chroma[i] < 0 ) return VLC_EGENERIC; } 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]; if( ( p_vout->render.i_height != p_vout->output.i_height || p_vout->render.i_width != p_vout->output.i_width ) && ( p_vout->chroma.p_sys->i_dst_vlc_chroma == VLC_FOURCC('I','4','2','0') || p_vout->chroma.p_sys->i_dst_vlc_chroma == VLC_FOURCC('Y','V','1','2') )) { msg_Dbg( p_vout, "preparing to resample picture" ); p_vout->chroma.p_sys->p_rsc = img_resample_init( p_vout->output.i_width, p_vout->output.i_height, p_vout->render.i_width, p_vout->render.i_height ); avpicture_alloc( &p_vout->chroma.p_sys->tmp_pic, p_vout->chroma.p_sys->i_dst_ffmpeg_chroma, p_vout->render.i_width, p_vout->render.i_height ); } else { msg_Dbg( p_vout, "no resampling" ); p_vout->chroma.p_sys->p_rsc = NULL; } /* libavcodec needs to be initialized for some chroma conversions */ E_(InitLibavcodec)(p_this); return VLC_SUCCESS;}/***************************************************************************** * ChromaConversion: actual chroma conversion function *****************************************************************************/static 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') || p_vout->chroma.p_sys->i_src_vlc_chroma == VLC_FOURCC('Y','V','U','9') ) { /* 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') || p_vout->chroma.p_sys->i_dst_vlc_chroma == VLC_FOURCC('Y','V','U','9') ) { /* Invert U and V */ dest_pic.data[1] = p_dest->p[2].p_pixels; dest_pic.data[2] = p_dest->p[1].p_pixels; } if( p_vout->chroma.p_sys->i_src_ffmpeg_chroma == PIX_FMT_RGB24 ) if( p_vout->render.i_bmask == 0x00ff0000 ) p_vout->chroma.p_sys->i_src_ffmpeg_chroma = PIX_FMT_BGR24; if( p_vout->chroma.p_sys->p_rsc ) { img_convert( &p_vout->chroma.p_sys->tmp_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 ); img_resample( p_vout->chroma.p_sys->p_rsc, &dest_pic, &p_vout->chroma.p_sys->tmp_pic ); } else { 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 ); }}/***************************************************************************** * CloseChroma: free the chroma function ***************************************************************************** * This function frees the previously allocated chroma function *****************************************************************************/void E_(CloseChroma)( vlc_object_t *p_this ){ vout_thread_t *p_vout = (vout_thread_t *)p_this; if( p_vout->chroma.p_sys->p_rsc ) { img_resample_close( p_vout->chroma.p_sys->p_rsc ); avpicture_free( &p_vout->chroma.p_sys->tmp_pic ); } free( p_vout->chroma.p_sys );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -