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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * png.c: png decoder module making use of libpng.
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2001 the VideoLAN team
  5.  * $Id: c604f014a1ad3be5274d34d27f3296cac213d286 $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@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 <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_codec.h>
  32. #include <vlc_vout.h>
  33. #include <png.h>
  34. /*****************************************************************************
  35.  * decoder_sys_t : png decoder descriptor
  36.  *****************************************************************************/
  37. struct decoder_sys_t
  38. {
  39.     bool b_error;
  40. };
  41. /*****************************************************************************
  42.  * Local prototypes
  43.  *****************************************************************************/
  44. static int  OpenDecoder   ( vlc_object_t * );
  45. static void CloseDecoder  ( vlc_object_t * );
  46. static picture_t *DecodeBlock  ( decoder_t *, block_t ** );
  47. /*****************************************************************************
  48.  * Module descriptor
  49.  *****************************************************************************/
  50. vlc_module_begin ()
  51.     set_category( CAT_INPUT )
  52.     set_subcategory( SUBCAT_INPUT_VCODEC )
  53.     set_description( N_("PNG video decoder") )
  54.     set_capability( "decoder", 1000 )
  55.     set_callbacks( OpenDecoder, CloseDecoder )
  56.     add_shortcut( "png" )
  57. vlc_module_end ()
  58. /*****************************************************************************
  59.  * OpenDecoder: probe the decoder and return score
  60.  *****************************************************************************/
  61. static int OpenDecoder( vlc_object_t *p_this )
  62. {
  63.     decoder_t *p_dec = (decoder_t*)p_this;
  64.     decoder_sys_t *p_sys;
  65.     if( p_dec->fmt_in.i_codec != VLC_FOURCC('p','n','g',' ') &&
  66.         p_dec->fmt_in.i_codec != VLC_FOURCC('M','P','N','G') )
  67.     {
  68.         return VLC_EGENERIC;
  69.     }
  70.     /* Allocate the memory needed to store the decoder's structure */
  71.     if( ( p_dec->p_sys = p_sys =
  72.           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
  73.         return VLC_ENOMEM;
  74.     /* Set output properties */
  75.     p_dec->fmt_out.i_cat = VIDEO_ES;
  76.     p_dec->fmt_out.i_codec = VLC_FOURCC('R','G','B','A');
  77.     /* Set callbacks */
  78.     p_dec->pf_decode_video = DecodeBlock;
  79.     return VLC_SUCCESS;
  80. }
  81. static void user_read( png_structp p_png, png_bytep data, png_size_t i_length )
  82. {
  83.     block_t *p_block = (block_t *)png_get_io_ptr( p_png );
  84.     png_size_t i_read = __MIN( p_block->i_buffer, i_length );
  85.     memcpy( data, p_block->p_buffer, i_length );
  86.     p_block->p_buffer += i_length;
  87.     p_block->i_buffer -= i_length;
  88.     if( i_length != i_read ) png_error( p_png, "not enough data" );
  89. }
  90. static void user_error( png_structp p_png, png_const_charp error_msg )
  91. {
  92.     decoder_t *p_dec = (decoder_t *)png_get_error_ptr( p_png );
  93.     p_dec->p_sys->b_error = true;
  94.     msg_Err( p_dec, "%s", error_msg );
  95. }
  96. static void user_warning( png_structp p_png, png_const_charp warning_msg )
  97. {
  98.     decoder_t *p_dec = (decoder_t *)png_get_error_ptr( p_png );
  99.     msg_Warn( p_dec, "%s", warning_msg );
  100. }
  101. /****************************************************************************
  102.  * DecodeBlock: the whole thing
  103.  ****************************************************************************
  104.  * This function must be fed with a complete compressed frame.
  105.  ****************************************************************************/
  106. static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
  107. {
  108.     decoder_sys_t *p_sys = p_dec->p_sys;
  109.     block_t *p_block;
  110.     picture_t *p_pic = 0;
  111.     png_uint_32 i_width, i_height;
  112.     int i_color_type, i_interlace_type, i_compression_type, i_filter_type;
  113.     int i_bit_depth, i;
  114.     png_structp p_png;
  115.     png_infop p_info, p_end_info;
  116.     png_bytep *p_row_pointers = NULL;
  117.     if( !pp_block || !*pp_block ) return NULL;
  118.     p_block = *pp_block;
  119.     p_sys->b_error = false;
  120.     if( p_block->i_flags & BLOCK_FLAG_DISCONTINUITY )
  121.     {
  122.         block_Release( p_block ); *pp_block = NULL;
  123.         return NULL;
  124.     }
  125.     p_png = png_create_read_struct( PNG_LIBPNG_VER_STRING, 0, 0, 0 );
  126.     if( p_png == NULL )
  127.     {
  128.         block_Release( p_block ); *pp_block = NULL;
  129.         return NULL;
  130.     }
  131.  
  132.     p_info = png_create_info_struct( p_png );
  133.     if( p_info == NULL )
  134.     {
  135.         png_destroy_read_struct( &p_png, png_infopp_NULL, png_infopp_NULL );
  136.         block_Release( p_block ); *pp_block = NULL;
  137.         return NULL;
  138.     }
  139.     p_end_info = png_create_info_struct( p_png );
  140.     if( p_end_info == NULL )
  141.     {
  142.         png_destroy_read_struct( &p_png, &p_info, png_infopp_NULL );
  143.         block_Release( p_block ); *pp_block = NULL;
  144.         return NULL;
  145.     }
  146.  
  147.     /* libpng longjmp's there in case of error */
  148.     if( setjmp( png_jmpbuf( p_png ) ) )
  149.         goto error;
  150.     png_set_read_fn( p_png, (void *)p_block, user_read );
  151.     png_set_error_fn( p_png, (void *)p_dec, user_error, user_warning );
  152.     png_read_info( p_png, p_info );
  153.     if( p_sys->b_error ) goto error;
  154.     png_get_IHDR( p_png, p_info, &i_width, &i_height,
  155.                   &i_bit_depth, &i_color_type, &i_interlace_type,
  156.                   &i_compression_type, &i_filter_type);
  157.     if( p_sys->b_error ) goto error;
  158.     /* Set output properties */
  159.     p_dec->fmt_out.i_codec = VLC_FOURCC('R','G','B','A');
  160.     p_dec->fmt_out.video.i_width = i_width;
  161.     p_dec->fmt_out.video.i_height = i_height;
  162.     p_dec->fmt_out.video.i_aspect = VOUT_ASPECT_FACTOR * i_width / i_height;
  163.     p_dec->fmt_out.video.i_rmask = 0x000000ff;
  164.     p_dec->fmt_out.video.i_gmask = 0x0000ff00;
  165.     p_dec->fmt_out.video.i_bmask = 0x00ff0000;
  166.     if( i_color_type == PNG_COLOR_TYPE_PALETTE )
  167.         png_set_palette_to_rgb( p_png );
  168.     if( i_color_type == PNG_COLOR_TYPE_GRAY ||
  169.         i_color_type == PNG_COLOR_TYPE_GRAY_ALPHA )
  170.           png_set_gray_to_rgb( p_png );
  171.     /* Strip to 8 bits per channel */
  172.     if( i_bit_depth == 16 ) png_set_strip_16( p_png );
  173.     if( png_get_valid( p_png, p_info, PNG_INFO_tRNS ) )
  174.     {
  175.         png_set_tRNS_to_alpha( p_png );
  176.     }
  177.     else if( !(i_color_type & PNG_COLOR_MASK_ALPHA) )
  178.     {
  179.         p_dec->fmt_out.i_codec = VLC_FOURCC('R','V','2','4');
  180.     }
  181.     /* Get a new picture */
  182.     p_pic = decoder_NewPicture( p_dec );
  183.     if( !p_pic ) goto error;
  184.     /* Decode picture */
  185.     p_row_pointers = malloc( sizeof(png_bytep) * i_height );
  186.     if( !p_row_pointers )
  187.         goto error;
  188.     for( i = 0; i < (int)i_height; i++ )
  189.         p_row_pointers[i] = p_pic->p->p_pixels + p_pic->p->i_pitch * i;
  190.     png_read_image( p_png, p_row_pointers );
  191.     if( p_sys->b_error ) goto error;
  192.     png_read_end( p_png, p_end_info );
  193.     if( p_sys->b_error ) goto error;
  194.     png_destroy_read_struct( &p_png, &p_info, &p_end_info );
  195.     free( p_row_pointers );
  196.     p_pic->date = p_block->i_pts > 0 ? p_block->i_pts : p_block->i_dts;
  197.     block_Release( p_block ); *pp_block = NULL;
  198.     return p_pic;
  199.  error:
  200.     free( p_row_pointers );
  201.     png_destroy_read_struct( &p_png, &p_info, &p_end_info );
  202.     block_Release( p_block ); *pp_block = NULL;
  203.     return NULL;
  204. }
  205. /*****************************************************************************
  206.  * CloseDecoder: png decoder destruction
  207.  *****************************************************************************/
  208. static void CloseDecoder( vlc_object_t *p_this )
  209. {
  210.     decoder_t *p_dec = (decoder_t *)p_this;
  211.     decoder_sys_t *p_sys = p_dec->p_sys;
  212.     free( p_sys );
  213. }