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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * dynamicoverlay_commands.c : dynamic overlay plugin commands
  3.  *****************************************************************************
  4.  * Copyright (C) 2008-2009 the VideoLAN team
  5.  * $Id: c3896e9ae4e1681447a3ed6d999ecf7f517ab336 $
  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 "dynamicoverlay.h"
  30. /*****************************************************************************
  31.  * queue_t: Command queue
  32.  *****************************************************************************/
  33. int QueueInit( queue_t *p_queue )
  34. {
  35.     memset( p_queue, 0, sizeof( queue_t ) );
  36.     p_queue->p_head = NULL;
  37.     p_queue->p_tail = NULL;
  38.     return VLC_SUCCESS;
  39. }
  40. int QueueDestroy( queue_t *p_queue )
  41. {
  42.     command_t *p_cur = p_queue->p_head, *p_temp;
  43.     while( p_cur != NULL )
  44.     {
  45.         p_temp = p_cur;
  46.         p_cur = p_cur->p_next;
  47.         free( p_temp );
  48.     }
  49.     p_queue->p_head = NULL;
  50.     p_queue->p_tail = NULL;
  51.     return VLC_SUCCESS;
  52. }
  53. int QueueEnqueue( queue_t *p_queue, command_t *p_cmd )
  54. {
  55.     if( p_queue->p_tail != NULL )
  56.     {
  57.         p_queue->p_tail->p_next = p_cmd;
  58.     }
  59.     if( p_queue->p_head == NULL )
  60.     {
  61.         p_queue->p_head = p_cmd;
  62.     }
  63.     p_queue->p_tail = p_cmd;
  64.     p_cmd->p_next = NULL;
  65.     return VLC_SUCCESS;
  66. }
  67. command_t *QueueDequeue( queue_t *p_queue )
  68. {
  69.     if( p_queue->p_head == NULL )
  70.     {
  71.         return NULL;
  72.     }
  73.     else
  74.     {
  75.         command_t *p_ret = p_queue->p_head;
  76.         if( p_queue->p_head == p_queue->p_tail )
  77.         {
  78.             p_queue->p_head = p_queue->p_tail = NULL;
  79.         }
  80.         else
  81.         {
  82.             p_queue->p_head = p_queue->p_head->p_next;
  83.         }
  84.         return p_ret;
  85.     }
  86. }
  87. int QueueTransfer( queue_t *p_sink, queue_t *p_source )
  88. {
  89.     if( p_source->p_head == NULL ) {
  90.         return VLC_SUCCESS;
  91.     }
  92.     if( p_sink->p_head == NULL ) {
  93.         p_sink->p_head = p_source->p_head;
  94.         p_sink->p_tail = p_source->p_tail;
  95.     } else {
  96.         p_sink->p_tail->p_next = p_source->p_head;
  97.         p_sink->p_tail = p_source->p_tail;
  98.     }
  99.     p_source->p_head = p_source->p_tail = NULL;
  100.     return VLC_SUCCESS;
  101. }