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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * mkv.cpp : matroska demuxer
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 the VideoLAN team
  5.  * $Id: 853aee055735da82da1baf8f6b936445e6f7593c $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Steve Lhomme <steve.lhomme@free.fr>
  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. #include "util.hpp"
  25. /*****************************************************************************
  26.  * Local prototypes
  27.  *****************************************************************************/
  28. #ifdef HAVE_ZLIB_H
  29. block_t *block_zlib_decompress( vlc_object_t *p_this, block_t *p_in_block ) {
  30.     int result, dstsize, n;
  31.     unsigned char *dst;
  32.     block_t *p_block;
  33.     z_stream d_stream;
  34.     d_stream.zalloc = (alloc_func)0;
  35.     d_stream.zfree = (free_func)0;
  36.     d_stream.opaque = (voidpf)0;
  37.     result = inflateInit(&d_stream);
  38.     if( result != Z_OK )
  39.     {
  40.         msg_Dbg( p_this, "inflateInit() failed. Result: %d", result );
  41.         return NULL;
  42.     }
  43.     d_stream.next_in = (Bytef *)p_in_block->p_buffer;
  44.     d_stream.avail_in = p_in_block->i_buffer;
  45.     n = 0;
  46.     p_block = block_New( p_this, 0 );
  47.     dst = NULL;
  48.     do
  49.     {
  50.         n++;
  51.         p_block = block_Realloc( p_block, 0, n * 1000 );
  52.         dst = (unsigned char *)p_block->p_buffer;
  53.         d_stream.next_out = (Bytef *)&dst[(n - 1) * 1000];
  54.         d_stream.avail_out = 1000;
  55.         result = inflate(&d_stream, Z_NO_FLUSH);
  56.         if( ( result != Z_OK ) && ( result != Z_STREAM_END ) )
  57.         {
  58.             msg_Dbg( p_this, "Zlib decompression failed. Result: %d", result );
  59.             return NULL;
  60.         }
  61.     }
  62.     while( ( d_stream.avail_out == 0 ) && ( d_stream.avail_in != 0 ) &&
  63.            ( result != Z_STREAM_END ) );
  64.     dstsize = d_stream.total_out;
  65.     inflateEnd( &d_stream );
  66.     p_block = block_Realloc( p_block, 0, dstsize );
  67.     p_block->i_buffer = dstsize;
  68.     block_Release( p_in_block );
  69.     return p_block;
  70. }
  71. #endif