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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * video_text.c : text manipulation functions
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2007 the VideoLAN team
  5.  * $Id: d0e7a0ac3c7ca4e8faea8c94bf2f1891c5a2aa94 $
  6.  *
  7.  * Author: Sigmund Augdal Helberg <dnumgis@videolan.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. #ifdef HAVE_CONFIG_H
  24. # include "config.h"
  25. #endif
  26. #include <vlc_common.h>
  27. #include <vlc_vout.h>
  28. #include <vlc_block.h>
  29. #include <vlc_filter.h>
  30. #include <vlc_osd.h>
  31. /**
  32.  * brief Show text on the video for some time
  33.  * param p_vout pointer to the vout the text is to be showed on
  34.  * param i_channel Subpicture channel
  35.  * param psz_string The text to be shown
  36.  * param p_style Pointer to a struct with text style info
  37.  * param i_flags flags for alignment and such
  38.  * param i_hmargin horizontal margin in pixels
  39.  * param i_vmargin vertical margin in pixels
  40.  * param i_duration Amount of time the text is to be shown.
  41.  */
  42. int vout_ShowTextRelative( vout_thread_t *p_vout, int i_channel,
  43.                            char *psz_string, text_style_t *p_style,
  44.                            int i_flags, int i_hmargin, int i_vmargin,
  45.                            mtime_t i_duration )
  46. {
  47.     mtime_t i_now = mdate();
  48.     return vout_ShowTextAbsolute( p_vout, i_channel, psz_string,
  49.                                   p_style, i_flags, i_hmargin, i_vmargin,
  50.                                   i_now, i_now + i_duration );
  51. }
  52. /**
  53.  * brief Show text on the video from a given start date to a given end date
  54.  * param p_vout pointer to the vout the text is to be showed on
  55.  * param i_channel Subpicture channel
  56.  * param psz_string The text to be shown
  57.  * param p_style Pointer to a struct with text style info
  58.  * param i_flags flags for alignment and such
  59.  * param i_hmargin horizontal margin in pixels
  60.  * param i_vmargin vertical margin in pixels
  61.  * param i_start the time when this string is to appear on the video
  62.  * param i_stop the time when this string should stop to be displayed
  63.  *               if this is 0 the string will be shown untill the next string
  64.  *               is about to be shown
  65.  */
  66. int vout_ShowTextAbsolute( vout_thread_t *p_vout, int i_channel,
  67.                            const char *psz_string, text_style_t *p_style,
  68.                            int i_flags, int i_hmargin, int i_vmargin,
  69.                            mtime_t i_start, mtime_t i_stop )
  70. {
  71.     (void)p_style;
  72.     subpicture_t *p_spu;
  73.     video_format_t fmt;
  74.     /* (void)p_style; FIXME: <-- why ask for this if it's unused?!? */
  75.     if( !psz_string ) return VLC_EGENERIC;
  76.     p_spu = subpicture_New();
  77.     if( !p_spu )
  78.         return VLC_EGENERIC;
  79.     p_spu->i_channel = i_channel;
  80.     p_spu->i_start = i_start;
  81.     p_spu->i_stop = i_stop;
  82.     p_spu->b_ephemer = true;
  83.     p_spu->b_absolute = false;
  84.     p_spu->b_fade = true;
  85.     /* Create a new subpicture region */
  86.     memset( &fmt, 0, sizeof(video_format_t) );
  87.     fmt.i_chroma = VLC_FOURCC('T','E','X','T');
  88.     fmt.i_aspect = 0;
  89.     fmt.i_width = fmt.i_height = 0;
  90.     fmt.i_x_offset = fmt.i_y_offset = 0;
  91.     p_spu->p_region = subpicture_region_New( &fmt );
  92.     if( !p_spu->p_region )
  93.     {
  94.         msg_Err( p_vout, "cannot allocate SPU region" );
  95.         subpicture_Delete( p_spu );
  96.         return VLC_EGENERIC;
  97.     }
  98.     p_spu->p_region->psz_text = strdup( psz_string );
  99.     p_spu->p_region->i_align = i_flags & SUBPICTURE_ALIGN_MASK;
  100.     p_spu->p_region->i_x = i_hmargin;
  101.     p_spu->p_region->i_y = i_vmargin;
  102.     spu_DisplaySubpicture( p_vout->p_spu, p_spu );
  103.     return VLC_SUCCESS;
  104. }
  105. /**
  106.  * brief Write an informative message at the default location,
  107.  *        for the default duration and only if the OSD option is enabled.
  108.  * param p_caller The object that called the function.
  109.  * param i_channel Subpicture channel
  110.  * param psz_format printf style formatting
  111.  **/
  112. void __vout_OSDMessage( vlc_object_t *p_caller, int i_channel,
  113.                         const char *psz_format, ... )
  114. {
  115.     vout_thread_t *p_vout;
  116.     char *psz_string = NULL;
  117.     va_list args;
  118.     if( !config_GetInt( p_caller, "osd" ) ) return;
  119.     p_vout = vlc_object_find( p_caller, VLC_OBJECT_VOUT, FIND_ANYWHERE );
  120.     if( p_vout )
  121.     {
  122.         va_start( args, psz_format );
  123.         if( vasprintf( &psz_string, psz_format, args ) != -1 )
  124.         {
  125.             vout_ShowTextRelative( p_vout, i_channel, psz_string, NULL,
  126.                                    OSD_ALIGN_TOP|OSD_ALIGN_RIGHT,
  127.                                    30 + p_vout->fmt_in.i_width
  128.                                       - p_vout->fmt_in.i_visible_width
  129.                                       - p_vout->fmt_in.i_x_offset,
  130.                                    20 + p_vout->fmt_in.i_y_offset, 1000000 );
  131.             free( psz_string );
  132.         }
  133.         vlc_object_release( p_vout );
  134.         va_end( args );
  135.     }
  136. }