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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * invert.c : Invert video plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2006 the VideoLAN team
  5.  * $Id: 1f1cd71aaed3c61335d2edae82fd85c7605ab436 $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.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. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_vout.h>
  32. #include "vlc_filter.h"
  33. #include "filter_picture.h"
  34. /*****************************************************************************
  35.  * Local prototypes
  36.  *****************************************************************************/
  37. static int  Create      ( vlc_object_t * );
  38. static void Destroy     ( vlc_object_t * );
  39. static picture_t *Filter( filter_t *, picture_t * );
  40. /*****************************************************************************
  41.  * Module descriptor
  42.  *****************************************************************************/
  43. vlc_module_begin ()
  44.     set_description( N_("Invert video filter") )
  45.     set_shortname( N_("Color inversion" ))
  46.     set_category( CAT_VIDEO )
  47.     set_subcategory( SUBCAT_VIDEO_VFILTER )
  48.     set_capability( "video filter2", 0 )
  49.     add_shortcut( "invert" )
  50.     set_callbacks( Create, Destroy )
  51. vlc_module_end ()
  52. /*****************************************************************************
  53.  * vout_sys_t: Invert video output method descriptor
  54.  *****************************************************************************
  55.  * This structure is part of the video output thread descriptor.
  56.  * It describes the Invert specific properties of an output thread.
  57.  *****************************************************************************/
  58. struct filter_sys_t
  59. {
  60. };
  61. /*****************************************************************************
  62.  * Create: allocates Invert video thread output method
  63.  *****************************************************************************
  64.  * This function allocates and initializes a Invert vout method.
  65.  *****************************************************************************/
  66. static int Create( vlc_object_t *p_this )
  67. {
  68.     filter_t *p_filter = (filter_t *)p_this;
  69.     /* Allocate structure */
  70.     p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
  71.     if( p_filter->p_sys == NULL )
  72.         return VLC_ENOMEM;
  73.     p_filter->pf_video_filter = Filter;
  74.     return VLC_SUCCESS;
  75. }
  76. /*****************************************************************************
  77.  * Destroy: destroy Invert video thread output method
  78.  *****************************************************************************
  79.  * Terminate an output method created by InvertCreateOutputMethod
  80.  *****************************************************************************/
  81. static void Destroy( vlc_object_t *p_this )
  82. {
  83.     filter_t *p_filter = (filter_t *)p_this;
  84.     free( p_filter->p_sys );
  85. }
  86. /*****************************************************************************
  87.  * Render: displays previously rendered output
  88.  *****************************************************************************
  89.  * This function send the currently rendered image to Invert image, waits
  90.  * until it is displayed and switch the two rendering buffers, preparing next
  91.  * frame.
  92.  *****************************************************************************/
  93. static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
  94. {
  95.     picture_t *p_outpic;
  96.     int i_index;
  97.     int i_planes;
  98.     if( !p_pic ) return NULL;
  99.     p_outpic = filter_NewPicture( p_filter );
  100.     if( !p_outpic )
  101.     {
  102.         msg_Warn( p_filter, "can't get output picture" );
  103.         picture_Release( p_pic );
  104.         return NULL;
  105.     }
  106.     if( p_pic->format.i_chroma == VLC_FOURCC('Y','U','V','A') )
  107.     {
  108.         /* We don't want to invert the alpha plane */
  109.         i_planes = p_pic->i_planes - 1;
  110.         vlc_memcpy(
  111.             p_outpic->p[A_PLANE].p_pixels, p_pic->p[A_PLANE].p_pixels,
  112.             p_pic->p[A_PLANE].i_pitch *  p_pic->p[A_PLANE].i_lines );
  113.     }
  114.     else
  115.     {
  116.         i_planes = p_pic->i_planes;
  117.     }
  118.     for( i_index = 0 ; i_index < i_planes ; i_index++ )
  119.     {
  120.         uint8_t *p_in, *p_in_end, *p_line_end, *p_out;
  121.         p_in = p_pic->p[i_index].p_pixels;
  122.         p_in_end = p_in + p_pic->p[i_index].i_visible_lines
  123.                            * p_pic->p[i_index].i_pitch;
  124.         p_out = p_outpic->p[i_index].p_pixels;
  125.         for( ; p_in < p_in_end ; )
  126.         {
  127.             uint64_t *p_in64, *p_out64;
  128.             p_line_end = p_in + p_pic->p[i_index].i_visible_pitch - 64;
  129.             p_in64 = (uint64_t*)p_in;
  130.             p_out64 = (uint64_t*)p_out;
  131.             while( p_in64 < (uint64_t *)p_line_end )
  132.             {
  133.                 /* Do 64 pixels at a time */
  134.                 *p_out64++ = ~*p_in64++; *p_out64++ = ~*p_in64++;
  135.                 *p_out64++ = ~*p_in64++; *p_out64++ = ~*p_in64++;
  136.                 *p_out64++ = ~*p_in64++; *p_out64++ = ~*p_in64++;
  137.                 *p_out64++ = ~*p_in64++; *p_out64++ = ~*p_in64++;
  138.             }
  139.             p_in = (uint8_t*)p_in64;
  140.             p_out = (uint8_t*)p_out64;
  141.             p_line_end += 64;
  142.             for( ; p_in < p_line_end ; )
  143.             {
  144.                 *p_out++ = ~( *p_in++ );
  145.             }
  146.             p_in += p_pic->p[i_index].i_pitch
  147.                      - p_pic->p[i_index].i_visible_pitch;
  148.             p_out += p_outpic->p[i_index].i_pitch
  149.                      - p_outpic->p[i_index].i_visible_pitch;
  150.         }
  151.     }
  152.     return CopyInfoAndRelease( p_outpic, p_pic );
  153. }