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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * scene.c : scene video filter (based on modules/video_output/image.c)
  3.  *****************************************************************************
  4.  * Copyright (C) 2004-2008 the VideoLAN team
  5.  * $Id: c28433a0a31a2e7d886eb6b7e0d68393fe76c298 $
  6.  *
  7.  * Authors: Jean-Paul Saman <jpsaman@videolan.org>
  8.  *          Clément Stenac <zorglub@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_plugin.h>
  32. #include <vlc_vout.h>
  33. #include <vlc_block.h>
  34. #include "vlc_filter.h"
  35. #include "filter_picture.h"
  36. #include "vlc_image.h"
  37. #include "vlc_strings.h"
  38. /*****************************************************************************
  39.  * Local prototypes
  40.  *****************************************************************************/
  41. static int  Create      ( vlc_object_t * );
  42. static void Destroy     ( vlc_object_t * );
  43. static picture_t *Filter( filter_t *, picture_t * );
  44. static void SnapshotRatio( filter_t *p_filter, picture_t *p_pic );
  45. static void SavePicture( filter_t *, picture_t * );
  46. /*****************************************************************************
  47.  * Module descriptor
  48.  *****************************************************************************/
  49. #define FORMAT_TEXT N_( "Image format" )
  50. #define FORMAT_LONGTEXT N_( "Format of the output images (png, jpeg, ...)." )
  51. #define WIDTH_TEXT N_( "Image width" )
  52. #define WIDTH_LONGTEXT N_( "You can enforce the image width. By default " 
  53.                             "(-1) VLC will adapt to the video " 
  54.                             "characteristics.")
  55. #define HEIGHT_TEXT N_( "Image height" )
  56. #define HEIGHT_LONGTEXT N_( "You can enforce the image height. By default " 
  57.                             "(-1) VLC will adapt to the video " 
  58.                             "characteristics.")
  59. #define RATIO_TEXT N_( "Recording ratio" )
  60. #define RATIO_LONGTEXT N_( "Ratio of images to record. "
  61.                            "3 means that one image out of three is recorded." )
  62. #define PREFIX_TEXT N_( "Filename prefix" )
  63. #define PREFIX_LONGTEXT N_( "Prefix of the output images filenames. Output " 
  64.                             "filenames will have the "prefixNUMBER.format" "
  65.                             "form if replace is not true." )
  66. #define PATH_TEXT N_( "Directory path prefix" )
  67. #define PATH_LONGTEXT N_( "Directory path where images files should be saved." 
  68.                           "If not set, then images will be automatically saved in " 
  69.                           "users homedir." )
  70. #define REPLACE_TEXT N_( "Always write to the same file" )
  71. #define REPLACE_LONGTEXT N_( "Always write to the same file instead of " 
  72.                             "creating one file per image. In this case, " 
  73.                              "the number is not appended to the filename." )
  74. #define CFG_PREFIX "scene-"
  75. vlc_module_begin ()
  76.     set_shortname( N_( "Scene filter" ) )
  77.     set_description( N_( "Scene video filter" ) )
  78.     set_category( CAT_VIDEO )
  79.     set_subcategory( SUBCAT_VIDEO_VOUT )
  80.     set_capability( "video filter2", 0 )
  81.     /* General options */
  82.     add_string(  CFG_PREFIX "format", "png", NULL,
  83.                  FORMAT_TEXT, FORMAT_LONGTEXT, false )
  84.     add_integer( CFG_PREFIX "width", -1, NULL,
  85.                  WIDTH_TEXT, WIDTH_LONGTEXT, true )
  86.     add_integer( CFG_PREFIX "height", -1, NULL,
  87.                  HEIGHT_TEXT, HEIGHT_LONGTEXT, true )
  88.     add_string(  CFG_PREFIX "prefix", "scene", NULL,
  89.                  PREFIX_TEXT, PREFIX_LONGTEXT, false )
  90.     add_string(  CFG_PREFIX "path", NULL, NULL,
  91.                  PATH_TEXT, PATH_LONGTEXT, false )
  92.     add_bool(    CFG_PREFIX "replace", false, NULL,
  93.                  REPLACE_TEXT, REPLACE_LONGTEXT, false )
  94.     /* Snapshot method */
  95.     add_integer( CFG_PREFIX "ratio", 50, NULL,
  96.                  RATIO_TEXT, RATIO_LONGTEXT, false )
  97.     set_callbacks( Create, Destroy )
  98. vlc_module_end ()
  99. static const char *const ppsz_vfilter_options[] = {
  100.     "format", "width", "height", "ratio", "prefix", "path", "replace", NULL
  101. };
  102. typedef struct scene_t {
  103.     picture_t       *p_pic;
  104.     video_format_t  format;
  105. } scene_t;
  106. /*****************************************************************************
  107.  * filter_sys_t: private data
  108.  *****************************************************************************/
  109. struct filter_sys_t
  110. {
  111.     image_handler_t *p_image;
  112.     scene_t *p_scene;
  113.     char *psz_path;
  114.     char *psz_prefix;
  115.     char *psz_format;
  116.     vlc_fourcc_t i_format;
  117.     int32_t i_width;
  118.     int32_t i_height;
  119.     int32_t i_ratio;  /* save every n-th frame */
  120.     int32_t i_frames; /* frames count */
  121.     bool  b_replace;
  122. };
  123. /*****************************************************************************
  124.  * Create: initialize and set pf_video_filter()
  125.  *****************************************************************************/
  126. static int Create( vlc_object_t *p_this )
  127. {
  128.     filter_t *p_filter = (filter_t *)p_this;
  129.     filter_sys_t *p_sys = NULL;
  130.     config_ChainParse( p_filter, CFG_PREFIX, ppsz_vfilter_options,
  131.                        p_filter->p_cfg );
  132.     p_filter->p_sys = p_sys = malloc( sizeof( filter_sys_t ) );
  133.     if( p_filter->p_sys == NULL )
  134.         return VLC_ENOMEM;
  135.     memset( p_sys, 0, sizeof(filter_sys_t) );
  136.     p_sys->p_scene = malloc( sizeof( scene_t ) );
  137.     if( !p_sys->p_scene )
  138.     {
  139.         free( p_sys );
  140.         return VLC_ENOMEM;
  141.     }
  142.     memset( p_sys->p_scene, 0, sizeof(scene_t) );
  143.     p_sys->p_image = image_HandlerCreate( p_this );
  144.     if( !p_sys->p_image )
  145.     {
  146.         msg_Err( p_this, "Couldn't get handle to image conversion routines." );
  147.         free( p_sys->p_scene );
  148.         free( p_sys );
  149.         return VLC_EGENERIC;
  150.     }
  151.     p_sys->psz_format = var_CreateGetString( p_this, CFG_PREFIX "format" );
  152.     p_sys->i_format = image_Type2Fourcc( p_sys->psz_format );
  153.     if( !p_sys->i_format )
  154.     {
  155.         msg_Err( p_filter, "Could not find FOURCC for image type '%s'",
  156.                  p_sys->psz_format );
  157.         image_HandlerDelete( p_sys->p_image );
  158.         free( p_sys->p_scene );
  159.         free( p_sys->psz_format );
  160.         free( p_sys );
  161.         return VLC_EGENERIC;
  162.     }
  163.     p_sys->i_width = var_CreateGetInteger( p_this, CFG_PREFIX "width" );
  164.     p_sys->i_height = var_CreateGetInteger( p_this, CFG_PREFIX "height" );
  165.     p_sys->i_ratio = var_CreateGetInteger( p_this, CFG_PREFIX "ratio" );
  166.     p_sys->b_replace = var_CreateGetBool( p_this, CFG_PREFIX "replace" );
  167.     p_sys->psz_prefix = var_CreateGetString( p_this, CFG_PREFIX "prefix" );
  168.     p_sys->psz_path = var_GetNonEmptyString( p_this, CFG_PREFIX "path" );
  169.     if( p_sys->psz_path == NULL )
  170.     {
  171.         int i_ret;
  172.         i_ret = asprintf( &p_sys->psz_path, "%s", config_GetHomeDir());
  173.         if( i_ret == -1 )
  174.             p_sys->psz_path = NULL;
  175.     }
  176.     p_filter->pf_video_filter = Filter;
  177.     return VLC_SUCCESS;
  178. }
  179. /*****************************************************************************
  180.  * Destroy: destroy video filter method
  181.  *****************************************************************************/
  182. static void Destroy( vlc_object_t *p_this )
  183. {
  184.     filter_t *p_filter = (filter_t *)p_this;
  185.     filter_sys_t *p_sys = (filter_sys_t *) p_filter->p_sys;
  186.     image_HandlerDelete( p_sys->p_image );
  187.     if( p_sys->p_scene && p_sys->p_scene->p_pic )
  188.     picture_Release( p_sys->p_scene->p_pic );
  189.     free( p_sys->p_scene );
  190.     free( p_sys->psz_format );
  191.     free( p_sys->psz_prefix );
  192.     free( p_sys->psz_path );
  193.     free( p_sys );
  194. }
  195. /*****************************************************************************
  196.  * Filter: Apply filtering logic to picture.
  197.  *****************************************************************************/
  198. static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
  199. {
  200.     /* TODO: think of some funky algorithm to detect scene changes. */
  201.     SnapshotRatio( p_filter, p_pic );
  202.     return p_pic;
  203. }
  204. static void SnapshotRatio( filter_t *p_filter, picture_t *p_pic )
  205. {
  206.     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
  207.     if( !p_sys || !p_pic ) return;
  208.     if( p_sys->i_frames % p_sys->i_ratio != 0 )
  209.     {
  210.         p_sys->i_frames++;
  211.         return;
  212.     }
  213.     p_sys->i_frames++;
  214.     if( p_sys->p_scene )
  215.     {
  216.         if( p_sys->p_scene->p_pic )
  217.             picture_Release( p_sys->p_scene->p_pic );
  218.         if( (p_sys->i_width <= 0) && (p_sys->i_height > 0) )
  219.         {
  220.             p_sys->i_width = (p_pic->format.i_width * p_sys->i_height) / p_pic->format.i_height;
  221.         }
  222.         else if( (p_sys->i_height <= 0) && (p_sys->i_width > 0) )
  223.         {
  224.             p_sys->i_height = (p_pic->format.i_height * p_sys->i_width) / p_pic->format.i_width;
  225.         }
  226.         else if( (p_sys->i_width <= 0) && (p_sys->i_height <= 0) )
  227.         {
  228.             p_sys->i_width = p_pic->format.i_width;
  229.             p_sys->i_height = p_pic->format.i_height;
  230.         }
  231.         p_sys->p_scene->p_pic = picture_New( p_pic->format.i_chroma,
  232.            p_pic->format.i_width, p_pic->format.i_height,
  233.            p_pic->format.i_sar_num );
  234.         if( p_sys->p_scene->p_pic )
  235.         {
  236.             picture_Copy( p_sys->p_scene->p_pic, p_pic );
  237.             SavePicture( p_filter, p_sys->p_scene->p_pic );
  238.         }
  239.     }
  240. }
  241. /*****************************************************************************
  242.  * Save Picture to disk
  243.  *****************************************************************************/
  244. static void SavePicture( filter_t *p_filter, picture_t *p_pic )
  245. {
  246.     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
  247.     video_format_t fmt_in, fmt_out;
  248.     char *psz_filename = NULL;
  249.     char *psz_temp = NULL;
  250.     int i_ret;
  251.     memset( &fmt_in, 0, sizeof(video_format_t) );
  252.     memset( &fmt_out, 0, sizeof(video_format_t) );
  253.     /* Save snapshot psz_format to a memory zone */
  254.     fmt_in = p_pic->format;
  255.     fmt_out.i_sar_num = fmt_out.i_sar_den = 1;
  256.     fmt_out.i_width = p_sys->i_width;
  257.     fmt_out.i_height = p_sys->i_height;
  258.     fmt_out.i_chroma = p_sys->i_format;
  259.     /*
  260.      * Save the snapshot to a temporary file and
  261.      * switch it to the real name afterwards.
  262.      */
  263.     if( p_sys->b_replace )
  264.         i_ret = asprintf( &psz_filename, "%s" DIR_SEP "%s.%s",
  265.                           p_sys->psz_path, p_sys->psz_prefix,
  266.                           p_sys->psz_format );
  267.     else
  268.         i_ret = asprintf( &psz_filename, "%s" DIR_SEP "%s%05d.%s",
  269.                           p_sys->psz_path, p_sys->psz_prefix,
  270.                           p_sys->i_frames, p_sys->psz_format );
  271.     if( i_ret == -1 )
  272.     {
  273.         msg_Err( p_filter, "could not create snapshot %s", psz_filename );
  274.         goto error;
  275.     }
  276.     path_sanitize( psz_filename );
  277.     i_ret = asprintf( &psz_temp, "%s.swp", psz_filename );
  278.     if( i_ret == -1 )
  279.     {
  280.         msg_Err( p_filter, "could not create snapshot temporarily file %s", psz_temp );
  281.         goto error;
  282.     }
  283.     path_sanitize( psz_temp );
  284.     /* Save the image */
  285.     i_ret = image_WriteUrl( p_sys->p_image, p_pic, &fmt_in, &fmt_out,
  286.                             psz_temp );
  287.     if( i_ret != VLC_SUCCESS )
  288.     {
  289.         msg_Err( p_filter, "could not create snapshot %s", psz_temp );
  290.     }
  291.     else
  292.     {
  293.         /* switch to the final destination */
  294.         i_ret = rename( psz_temp, psz_filename );
  295.         if( i_ret == -1 )
  296.         {
  297.             msg_Err( p_filter, "could not rename snapshot %s %m", psz_filename );
  298.             goto error;
  299.         }
  300.     }
  301. error:
  302.     free( psz_temp );
  303.     free( psz_filename );
  304. }