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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * video filter: video filter doing chroma conversion and resizing
  3.  *               using the ffmpeg library
  4.  *****************************************************************************
  5.  * Copyright (C) 1999-2001 the VideoLAN team
  6.  * $Id: 4b97455b15fb98b4642b0293860e377b00956e88 $
  7.  *
  8.  * Authors: Gildas Bazin <gbazin@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_codec.h>
  32. #include <vlc_vout.h>
  33. #include <vlc_filter.h>
  34. /* ffmpeg header */
  35. #ifdef HAVE_LIBAVCODEC_AVCODEC_H
  36. #   include <libavcodec/avcodec.h>
  37. #elif defined(HAVE_FFMPEG_AVCODEC_H)
  38. #   include <ffmpeg/avcodec.h>
  39. #else
  40. #   include <avcodec.h>
  41. #endif
  42. #include "avcodec.h"
  43. static picture_t *Deinterlace( filter_t *p_filter, picture_t *p_pic );
  44. /*****************************************************************************
  45.  * filter_sys_t : filter descriptor
  46.  *****************************************************************************/
  47. struct filter_sys_t
  48. {
  49.     bool b_resize;
  50.     bool b_convert;
  51.     bool b_resize_first;
  52.     bool b_enable_croppadd;
  53.     es_format_t fmt_in;
  54.     int i_src_ffmpeg_chroma;
  55.     es_format_t fmt_out;
  56.     int i_dst_ffmpeg_chroma;
  57.     AVPicture tmp_pic;
  58. };
  59. /*****************************************************************************
  60.  * OpenDeinterlace: probe the filter and return score
  61.  *****************************************************************************/
  62. int OpenDeinterlace( vlc_object_t *p_this )
  63. {
  64.     filter_t *p_filter = (filter_t*)p_this;
  65.     filter_sys_t *p_sys;
  66.     /* Check if we can handle that formats */
  67.     if( TestFfmpegChroma( -1, p_filter->fmt_in.i_codec  ) != VLC_SUCCESS )
  68.     {
  69.         msg_Err( p_filter, "Failed to match chroma type" );
  70.         return VLC_EGENERIC;
  71.     }
  72.     /* Allocate the memory needed to store the decoder's structure */
  73.     if( ( p_filter->p_sys = p_sys =
  74.           (filter_sys_t *)malloc(sizeof(filter_sys_t)) ) == NULL )
  75.     {
  76.         return VLC_EGENERIC;
  77.     }
  78.     /* Misc init */
  79.     p_filter->fmt_in.video.i_chroma = p_filter->fmt_in.i_codec;
  80.     if( GetFfmpegChroma( &p_sys->i_src_ffmpeg_chroma, p_filter->fmt_in.video ) != VLC_SUCCESS )
  81.     {
  82.         msg_Err( p_filter, "Failed to match chroma type" );
  83.         return VLC_EGENERIC;
  84.     }
  85.     p_filter->pf_video_filter = Deinterlace;
  86.     msg_Dbg( p_filter, "deinterlacing" );
  87.     /* libavcodec needs to be initialized for some chroma conversions */
  88.     InitLibavcodec(p_this);
  89.     return VLC_SUCCESS;
  90. }
  91. /*****************************************************************************
  92.  * CloseDeinterlace: clean up the filter
  93.  *****************************************************************************/
  94. void CloseDeinterlace( vlc_object_t *p_this )
  95. {
  96.     filter_t *p_filter = (filter_t*)p_this;
  97.     filter_sys_t *p_sys = p_filter->p_sys;
  98.     free( p_sys );
  99. }
  100. /*****************************************************************************
  101.  * Do the processing here
  102.  *****************************************************************************/
  103. static picture_t *Deinterlace( filter_t *p_filter, picture_t *p_pic )
  104. {
  105.     filter_sys_t *p_sys = p_filter->p_sys;
  106.     AVPicture src_pic, dest_pic;
  107.     picture_t *p_pic_dst;
  108.     int i, i_res = -1;
  109.     /* Request output picture */
  110.     p_pic_dst = filter_NewPicture( p_filter );
  111.     if( !p_pic_dst )
  112.     {
  113.         picture_Release( p_pic );
  114.         return NULL;
  115.     }
  116.     /* Prepare the AVPictures for the conversion */
  117.     for( i = 0; i < p_pic->i_planes; i++ )
  118.     {
  119.         src_pic.data[i] = p_pic->p[i].p_pixels;
  120.         src_pic.linesize[i] = p_pic->p[i].i_pitch;
  121.     }
  122.     for( i = 0; i < p_pic_dst->i_planes; i++ )
  123.     {
  124.         dest_pic.data[i] = p_pic_dst->p[i].p_pixels;
  125.         dest_pic.linesize[i] = p_pic_dst->p[i].i_pitch;
  126.     }
  127.     i_res = avpicture_deinterlace( &dest_pic, &src_pic, p_sys->i_src_ffmpeg_chroma,
  128.                                    p_filter->fmt_in.video.i_width,
  129.                                    p_filter->fmt_in.video.i_height );
  130.     if( i_res == -1 )
  131.     {
  132.         msg_Err( p_filter, "deinterlacing picture failed" );
  133.         filter_DeletePicture( p_filter, p_pic_dst );
  134.         picture_Release( p_pic );
  135.         return NULL;
  136.     }
  137.     picture_CopyProperties( p_pic_dst, p_pic );
  138.     p_pic_dst->b_progressive = true;
  139.     picture_Release( p_pic );
  140.     return p_pic_dst;
  141. }