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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * csri.c : Load CSRI subtitle renderer
  3.  *****************************************************************************
  4.  * Copyright (C) 2007 the VideoLAN team
  5.  * $Id: 3802f4a3322a7d95d9f0e65125257f1830fa770c $
  6.  *
  7.  * Authors: David Lamparter <equinox@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. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. #   include "config.h"
  28. #endif
  29. #include <string.h>
  30. #include <math.h>
  31. #include <vlc_common.h>
  32. #include <vlc_plugin.h>
  33. #include <vlc_vout.h>
  34. #include <vlc_codec.h>
  35. #include <vlc_osd.h>
  36. #include <vlc_input.h>
  37. #include <csri/csri.h>
  38. #include <csri/stream.h>
  39. /*****************************************************************************
  40.  * Module descriptor
  41.  *****************************************************************************/
  42. static int  Create ( vlc_object_t * );
  43. static void Destroy( vlc_object_t * );
  44. vlc_module_begin ()
  45.     set_shortname( N_("Subtitles (advanced)"))
  46.     set_description( N_("Wrapper for subtitle renderers using CSRI/asa") )
  47.     set_capability( "decoder", 60 )
  48.     set_category( CAT_INPUT )
  49.     set_subcategory( SUBCAT_INPUT_SCODEC )
  50.     set_callbacks( Create, Destroy )
  51. vlc_module_end ()
  52. /*****************************************************************************
  53.  * Local prototypes
  54.  *****************************************************************************/
  55. static subpicture_t *DecodeBlock( decoder_t *, block_t ** );
  56. static void DestroySubpicture( subpicture_t * );
  57. static void PreRender( spu_t *, subpicture_t *, const video_format_t * );
  58. static void UpdateRegions( spu_t *, subpicture_t *,
  59.                            const video_format_t *,  mtime_t );
  60. /*****************************************************************************
  61.  * decoder_sys_t: decoder data
  62.  *****************************************************************************/
  63. struct decoder_sys_t
  64. {
  65.     subpicture_t *p_spu_final;
  66.     video_format_t fmt_cached;
  67.     csri_inst *p_instance;
  68.     struct csri_stream_ext *p_stream_ext;
  69.     void (*pf_push_packet)(csri_inst *inst, const void *packet,
  70.                            size_t packetlen, double pts_start,
  71.                            double pts_end);
  72. };
  73. struct subpicture_sys_t
  74. {
  75.     decoder_t *p_dec;
  76.     void      *p_subs_data;
  77.     int       i_subs_len;
  78.     mtime_t   i_pts;
  79. };
  80. /*****************************************************************************
  81.  * Create: Open CSRI renderer
  82.  *****************************************************************************
  83.  * Comment me.
  84.  *****************************************************************************/
  85. static int Create( vlc_object_t *p_this )
  86. {
  87.     decoder_t *p_dec = (decoder_t *)p_this;
  88.     decoder_sys_t *p_sys;
  89.     csri_rend *p_render;
  90.     struct csri_stream_ext *p_stream_ext;
  91.     if( p_dec->fmt_in.i_codec != VLC_FOURCC('s','s','a',' ') )
  92.         return VLC_EGENERIC;
  93.     p_render = csri_renderer_default();
  94.     if (!p_render)
  95.     {
  96.         msg_Err( p_dec, "can't load csri renderer" );
  97.         return VLC_EGENERIC;
  98.     }
  99.     p_stream_ext = csri_query_ext(p_render, CSRI_EXT_STREAM_ASS);
  100.     if (!p_stream_ext)
  101.     {
  102.         msg_Err( p_dec, "csri renderer does not support ASS streaming" );
  103.         return VLC_EGENERIC;
  104.     }
  105.     p_dec->pf_decode_sub = DecodeBlock;
  106.     p_dec->p_sys = p_sys = calloc( 1, sizeof( decoder_sys_t ) );
  107.     if( !p_sys )
  108.         return VLC_ENOMEM;
  109.     p_sys->p_stream_ext = p_stream_ext;
  110.     p_sys->pf_push_packet = p_stream_ext->push_packet;
  111.     p_sys->p_instance = p_stream_ext->init_stream( p_render,
  112.                                                    p_dec->fmt_in.p_extra,
  113.                                                    p_dec->fmt_in.p_extra ? strnlen( p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra ) : 0,
  114.                                                    NULL);
  115.     p_dec->fmt_out.i_cat = SPU_ES;
  116.     p_dec->fmt_out.i_codec = VLC_FOURCC('R','G','B','A');
  117.     return VLC_SUCCESS;
  118. }
  119. /*****************************************************************************
  120.  * Destroy: finish
  121.  *****************************************************************************
  122.  * Comment me.
  123.  *****************************************************************************/
  124. static void Destroy( vlc_object_t *p_this )
  125. {
  126.     decoder_t *p_dec = (decoder_t *)p_this;
  127.     decoder_sys_t *p_sys = p_dec->p_sys;
  128.     if( p_sys->p_stream_ext->discard )
  129.         p_sys->p_stream_ext->discard( p_sys->p_instance, true );
  130.     free( p_sys );
  131. }
  132. /****************************************************************************
  133.  * DecodeBlock: the whole thing
  134.  ****************************************************************************
  135.  * This function must be fed with complete subtitles units.
  136.  ****************************************************************************/
  137. static subpicture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
  138. {
  139.     decoder_sys_t *p_sys = p_dec->p_sys;
  140.     subpicture_t *p_spu = NULL;
  141.     block_t *p_block;
  142.     //msg_Dbg( p_dec, "DecodeBlock %p", (void *)pp_block);
  143.     if( !pp_block || *pp_block == NULL )
  144.         return NULL;
  145.     p_block = *pp_block;
  146.     *pp_block = NULL;
  147.     if( p_block->i_buffer == 0 || p_block->p_buffer[0] == '' )
  148.     {
  149.         block_Release( p_block );
  150.         return NULL;
  151.     }
  152.     p_spu = decoder_NewSubpicture( p_dec );
  153.     if( !p_spu )
  154.     {
  155.         msg_Warn( p_dec, "can't get spu buffer" );
  156.         block_Release( p_block );
  157.         return NULL;
  158.     }
  159.     p_spu->p_sys = malloc( sizeof( subpicture_sys_t ));
  160.     if( !p_spu->p_sys )
  161.     {
  162.         decoder_DeleteSubpicture( p_dec, p_spu );
  163.         block_Release( p_block );
  164.         return NULL;
  165.     }
  166.     p_spu->p_sys->p_dec = p_dec;
  167.     p_spu->p_sys->i_subs_len = p_block->i_buffer;
  168.     p_spu->p_sys->p_subs_data = malloc( p_block->i_buffer );
  169.     if( !p_spu->p_sys->p_subs_data )
  170.     {
  171.         free( p_spu->p_sys );
  172.         decoder_DeleteSubpicture( p_dec, p_spu );
  173.         block_Release( p_block );
  174.         return NULL;
  175.     }
  176.     memcpy( p_spu->p_sys->p_subs_data, p_block->p_buffer,
  177.             p_block->i_buffer );
  178.     p_spu->p_sys->i_pts = p_block->i_pts;
  179.     p_spu->i_start = p_block->i_pts;
  180.     p_spu->i_stop = p_block->i_pts + p_block->i_length;
  181.     p_spu->b_ephemer = false;
  182.     p_spu->b_absolute = false;
  183.     //msg_Dbg( p_dec, "BS %lf..%lf", p_spu->i_start * 0.000001, p_spu->i_stop * 0.000001);
  184.     p_sys->pf_push_packet( p_sys->p_instance,
  185.                            p_spu->p_sys->p_subs_data, p_spu->p_sys->i_subs_len,
  186.                            p_spu->i_start * 0.000001,
  187.                            p_spu->i_stop * 0.000001);
  188.     p_spu->pf_pre_render = PreRender;
  189.     p_spu->pf_update_regions = UpdateRegions;
  190.     p_spu->pf_destroy = DestroySubpicture;
  191.     block_Release( p_block );
  192.     return p_spu;
  193. }
  194. static void DestroySubpicture( subpicture_t *p_subpic )
  195. {
  196.     //msg_Dbg( p_subpic->p_sys->p_dec, "drop spu %p", (void *)p_subpic );
  197.     free( p_subpic->p_sys->p_subs_data );
  198.     free( p_subpic->p_sys );
  199. }
  200. static void PreRender( spu_t *p_spu, subpicture_t *p_subpic,
  201.                        const video_format_t *p_fmt )
  202. {
  203.     decoder_t *p_dec = p_subpic->p_sys->p_dec;
  204.     p_dec->p_sys->p_spu_final = p_subpic;
  205.     VLC_UNUSED(p_fmt);
  206.     VLC_UNUSED(p_spu);
  207. }
  208. static void UpdateRegions( spu_t *p_spu, subpicture_t *p_subpic,
  209.                            const video_format_t *p_fmt, mtime_t i_ts )
  210. {
  211.     decoder_t *p_dec = p_subpic->p_sys->p_dec;
  212.     decoder_sys_t *p_sys = p_dec->p_sys;
  213.     subpicture_region_t *p_spu_region;
  214.     video_format_t fmt;
  215.     /* TODO maybe checking if we really need redrawing */
  216.     subpicture_region_ChainDelete( p_subpic->p_region );
  217.     p_subpic->p_region = NULL;
  218.     /* FIXME check why this is needed */
  219.     if( p_subpic != p_sys->p_spu_final )
  220.         return;
  221. #if 0
  222.     msg_Warn( p_dec, "---- fmt: %dx%d %dx%d chroma=%4.4s",
  223.             p_fmt->i_width, p_fmt->i_height,
  224.             p_fmt->i_visible_width, p_fmt->i_visible_height,
  225.             (const char*)&p_fmt->i_chroma );
  226. #endif
  227.     /* XXX On x86 at least our RGBA is mapped to their BGRA
  228.      * TODO confirm that is the same on big endian cpu */
  229.     fmt = *p_fmt;
  230.     fmt.i_chroma = VLC_FOURCC('R','G','B','A');
  231.     fmt.i_width = fmt.i_visible_width;
  232.     fmt.i_height = fmt.i_visible_height;
  233.     fmt.i_bits_per_pixel = 0;
  234.     fmt.i_x_offset = fmt.i_y_offset = 0;
  235.     fmt.i_sar_num = 1;
  236.     fmt.i_sar_den = 1;
  237.     if( memcmp(&fmt, &p_sys->fmt_cached, sizeof(fmt)) )
  238.     {
  239.         //msg_Warn( p_dec, "---- fmt: new %dx%d", fmt.i_width, fmt.i_height );
  240.         struct csri_fmt csri_fmt;
  241.         memset(&csri_fmt, 0, sizeof(csri_fmt));
  242.         csri_fmt.pixfmt = CSRI_F_BGRA;
  243.         csri_fmt.width = fmt.i_width;
  244.         csri_fmt.height = fmt.i_height;
  245.         if( csri_request_fmt( p_sys->p_instance, &csri_fmt ) )
  246.             msg_Dbg( p_dec, "csri error: format not supported" );
  247.         p_sys->fmt_cached = fmt;
  248.     }
  249.     p_subpic->i_original_picture_height = fmt.i_height;
  250.     p_subpic->i_original_picture_width = fmt.i_width;
  251.     p_spu_region = p_subpic->p_region = subpicture_region_New( &fmt );
  252.     if( p_spu_region )
  253.     {
  254.         struct csri_frame csri_frame;
  255.         /* */
  256.         p_spu_region->i_align = SUBPICTURE_ALIGN_TOP | SUBPICTURE_ALIGN_LEFT;
  257.         memset( p_spu_region->p_picture->Y_PIXELS, 0x00, p_spu_region->p_picture->Y_PITCH * p_sys->fmt_cached.i_height );
  258.         /* */
  259.         const mtime_t i_stream_date = p_subpic->p_sys->i_pts + (i_ts - p_subpic->i_start);
  260.         //msg_Dbg( p_dec, "TS %lf", ts * 0.000001 );
  261.         memset( &csri_frame, 0, sizeof(csri_frame) );
  262.         csri_frame.pixfmt = CSRI_F_BGRA;
  263.         csri_frame.planes[0] = (unsigned char*)p_spu_region->p_picture->Y_PIXELS;
  264.         csri_frame.strides[0] = p_spu_region->p_picture->Y_PITCH;
  265.         csri_render( p_sys->p_instance, &csri_frame, i_stream_date * 0.000001 );
  266.     }
  267. }