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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * dynamicoverlay_buffer.h : dynamic overlay buffer
  3.  *****************************************************************************
  4.  * Copyright (C) 2008-2009 the VideoLAN team
  5.  * $Id: b454ebf5b8db04c9279b534fd61f04616c882f9a $
  6.  *
  7.  * Author: Søren Bøg <avacore@videolan.org>
  8.  *         Jean-Paul Saman <jpsaman@videolan.org>
  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. #ifdef HAVE_CONFIG_H
  25. # include "config.h"
  26. #endif
  27. #include <vlc_common.h>
  28. #include <vlc_osd.h>
  29. #include <vlc_filter.h>
  30. #include <ctype.h>
  31. #include "dynamicoverlay.h"
  32. /*****************************************************************************
  33.  * buffer_t: Command and response buffer
  34.  *****************************************************************************/
  35. int BufferInit( buffer_t *p_buffer )
  36. {
  37.     memset( p_buffer, 0, sizeof( buffer_t ) );
  38.     p_buffer->p_memory = NULL;
  39.     p_buffer->p_begin = NULL;
  40.     return VLC_SUCCESS;
  41. }
  42. int BufferDestroy( buffer_t *p_buffer )
  43. {
  44.     if( p_buffer->p_memory != NULL )
  45.     {
  46.         free( p_buffer->p_memory );
  47.     }
  48.     p_buffer->p_memory = NULL;
  49.     p_buffer->p_begin = NULL;
  50.     return VLC_SUCCESS;
  51. }
  52. char *BufferGetToken( buffer_t *p_buffer )
  53. {
  54.     char *p_char = p_buffer->p_begin;
  55.     while( isspace( p_char[0] ) || p_char[0] == '' )
  56.     {
  57.         if( p_char <= (p_buffer->p_begin + p_buffer->i_length) )
  58.             p_char++;
  59.         else
  60.             return NULL;
  61.     }
  62.     return p_char;
  63. }
  64. int BufferAdd( buffer_t *p_buffer, const char *p_data, size_t i_len )
  65. {
  66.     if( ( p_buffer->i_size - p_buffer->i_length -
  67.           ( p_buffer->p_begin - p_buffer->p_memory ) ) < i_len )
  68.     {
  69.         /* We'll have to do some rearranging to fit the new data. */
  70.         if( ( p_buffer->i_size - p_buffer->i_length ) >= i_len )
  71.         {
  72.             /* We have room in the current buffer, just need to move it */
  73.             memmove( p_buffer->p_memory, p_buffer->p_begin,
  74.                      p_buffer->i_length );
  75.             p_buffer->p_begin = p_buffer->p_memory;
  76.         }
  77.         else
  78.         {
  79.             // We need a bigger buffer
  80.             size_t i_newsize = 1024;
  81.             while( i_newsize < p_buffer->i_length + i_len )
  82.                 i_newsize *= 2;
  83.             /* TODO: Should I handle wrapping here? */
  84.             /* I'm not using realloc here, as I can avoid a memcpy/memmove in
  85.                some (most?) cases, and reset the start of the buffer. */
  86.             char *p_newdata = malloc( i_newsize );
  87.             if( p_newdata == NULL )
  88.                 return VLC_ENOMEM;
  89.             if( p_buffer->p_begin != NULL )
  90.             {
  91.                 memcpy( p_newdata, p_buffer->p_begin, p_buffer->i_length );
  92.                 free( p_buffer->p_memory );
  93.             }
  94.             p_buffer->p_memory = p_buffer->p_begin = p_newdata;
  95.             p_buffer->i_size = i_newsize;
  96.         }
  97.     }
  98.     /* Add the new data to the end of the current */
  99.     memcpy( p_buffer->p_begin + p_buffer->i_length, p_data, i_len );
  100.     p_buffer->i_length += i_len;
  101.     return VLC_SUCCESS;
  102. }
  103. int BufferPrintf( buffer_t *p_buffer, const char *p_fmt, ... )
  104. {
  105.     int i_len;
  106.     int status;
  107.     char *psz_data;
  108.     va_list va;
  109.     va_start( va, p_fmt );
  110.     i_len = vasprintf( &psz_data, p_fmt, va );
  111.     va_end( va );
  112.     if( i_len == -1 )
  113.         return VLC_ENOMEM;
  114.     status = BufferAdd( p_buffer, psz_data, i_len );
  115.     free( psz_data );
  116.     return status;
  117. }
  118. int BufferDel( buffer_t *p_buffer, int i_len )
  119. {
  120.     p_buffer->i_length -= i_len;
  121.     if( p_buffer->i_length == 0 )
  122.     {
  123.         /* No data, we can reset the buffer now. */
  124.         p_buffer->p_begin = p_buffer->p_memory;
  125.     }
  126.     else
  127.     {
  128.         p_buffer->p_begin += i_len;
  129.     }
  130.     return VLC_SUCCESS;
  131. }