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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * osd_text.c : text manipulation functions
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2007 the VideoLAN team
  5.  * $Id: 2c7a1c557939d6ec570e9623e339a8fd3d3dcd60 $
  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_spu pointer to the subpicture queue 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 osd_ShowTextRelative( spu_t *p_spu, int i_channel,
  43.                            const 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 osd_ShowTextAbsolute( p_spu, 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_spu pointer to the subpicture queue 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 osd_ShowTextAbsolute( spu_t *p_spu_channel, 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.     subpicture_t *p_spu;
  72.     video_format_t fmt;
  73.     (void)p_style;
  74.     if( !psz_string ) return VLC_EGENERIC;
  75.     p_spu = subpicture_New();
  76.     if( !p_spu )
  77.         return VLC_EGENERIC;
  78.     p_spu->i_channel = i_channel;
  79.     p_spu->i_start = i_start;
  80.     p_spu->i_stop = i_stop;
  81.     p_spu->b_ephemer = true;
  82.     p_spu->b_absolute = false;
  83.     /* Create a new subpicture region */
  84.     memset( &fmt, 0, sizeof(video_format_t) );
  85.     fmt.i_chroma = VLC_FOURCC('T','E','X','T');
  86.     fmt.i_aspect = 0;
  87.     fmt.i_width = fmt.i_height = 0;
  88.     fmt.i_x_offset = fmt.i_y_offset = 0;
  89.     p_spu->p_region = subpicture_region_New( &fmt );
  90.     if( !p_spu->p_region )
  91.     {
  92.         msg_Err( p_spu_channel, "cannot allocate SPU region" );
  93.         subpicture_Delete( p_spu );
  94.         return VLC_EGENERIC;
  95.     }
  96.     p_spu->p_region->psz_text = strdup( psz_string );
  97.     p_spu->p_region->i_align = i_flags & SUBPICTURE_ALIGN_MASK;
  98.     p_spu->p_region->i_x = i_hmargin;
  99.     p_spu->p_region->i_y = i_vmargin;
  100.     spu_DisplaySubpicture( p_spu_channel, p_spu );
  101.     return VLC_SUCCESS;
  102. }
  103. /**
  104.  * brief Write an informative message at the default location,
  105.  *        for the default duration and only if the OSD option is enabled.
  106.  * param p_caller The object that called the function.
  107.  * param i_channel Subpicture channel
  108.  * param psz_format printf style formatting
  109.  **/
  110. void osd_Message( spu_t *p_spu, int i_channel,
  111.                         char *psz_format, ... )
  112. {
  113.     va_list args;
  114.     if( p_spu )
  115.     {
  116.         char *psz_string;
  117.         va_start( args, psz_format );
  118.         if( vasprintf( &psz_string, psz_format, args ) != -1 )
  119.         {
  120.             osd_ShowTextRelative( p_spu, i_channel, psz_string, NULL,
  121.                     OSD_ALIGN_TOP|OSD_ALIGN_RIGHT, 30,20,1000000 );
  122.             free( psz_string );
  123.         }
  124.         va_end( args );
  125.     }
  126. }