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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * Copyright (C) 2003, 2004 Rocky Bernstein (for the VideoLAN team)
  3.  * $Id: 21f77e62784a273def4b77e4ac1914307603982a $
  4.  *
  5.  * Authors: Rocky Bernstein <rocky@panix.com>
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  20.  *****************************************************************************/
  21. /* VCD Player header. More or less media-player independent. Or at least
  22.    that is the goal. So we prefer bool to vlc_bool.
  23.  */
  24. #ifndef _VCDPLAYER_H_
  25. #define _VCDPLAYER_H_
  26. #include <libvcd/info.h>
  27. #include <vlc_meta.h>
  28. #include <vlc_input.h>
  29. #include <vlc_access.h>
  30. #define INPUT_DBG_META        1 /* Meta information */
  31. #define INPUT_DBG_EVENT       2 /* input (keyboard/mouse) events */
  32. #define INPUT_DBG_MRL         4 /* MRL parsing */
  33. #define INPUT_DBG_EXT         8 /* Calls from external routines */
  34. #define INPUT_DBG_CALL       16 /* routine calls */
  35. #define INPUT_DBG_LSN        32 /* LSN changes */
  36. #define INPUT_DBG_PBC        64 /* Playback control */
  37. #define INPUT_DBG_CDIO      128 /* Debugging from CDIO */
  38. #define INPUT_DBG_SEEK      256 /* Seeks to set location */
  39. #define INPUT_DBG_SEEK_CUR  512 /* Seeks to find current location */
  40. #define INPUT_DBG_STILL    1024 /* Still-frame */
  41. #define INPUT_DBG_VCDINFO  2048 /* Debugging from VCDINFO */
  42. #define INPUT_DEBUG 1
  43. #if INPUT_DEBUG
  44. #define dbg_print(mask, s, args...) 
  45.    if (p_vcdplayer && p_vcdplayer->i_debug & mask) 
  46.      msg_Dbg(p_access, "%s: "s, __func__ , ##args)
  47. #else
  48. #define dbg_print(mask, s, args...)
  49. #endif
  50. #define LOG_ERR(...)  msg_Err( p_access, __VA_ARGS__ )
  51. #define LOG_WARN(...) msg_Warn( p_access, __VA_ARGS__ )
  52. /*------------------------------------------------------------------
  53.   General definitions and structures.
  54. ---------------------------------------------------------------------*/
  55. /* Value for indefinite wait period on a still frame */
  56. #define STILL_INDEFINITE_WAIT 255
  57. /* Value when we have yet to finish reading blocks of a frame. */
  58. #define STILL_READING          -5
  59. typedef struct {
  60.   lsn_t  start_LSN; /* LSN where play item starts */
  61.   size_t size;      /* size in sector units of play item. */
  62. } vcdplayer_play_item_info_t;
  63. /*****************************************************************************
  64.  * vcdplayer_t: VCD information
  65.  *****************************************************************************/
  66. typedef struct vcdplayer_input_s
  67. {
  68.   vcdinfo_obj_t *vcd;                   /* CD device descriptor */
  69.   /*------------------------------------------------------------------
  70.     User-settable options
  71.    --------------------------------------------------------------*/
  72.   unsigned int i_debug;                 /* Debugging mask */
  73.   unsigned int i_blocks_per_read;       /* number of blocks per read */
  74.   /*-------------------------------------------------------------
  75.      Playback control fields
  76.    --------------------------------------------------------------*/
  77.   bool         in_still;                /* true if in still */
  78.   int          i_lid;                   /* LID that play item is in. Implies
  79.                                            PBC is on. VCDPLAYER_BAD_ENTRY if
  80.                                            not none or not in PBC */
  81.   PsdListDescriptor_t pxd;              /* If PBC is on, the relevant
  82.                                             PSD/PLD */
  83.   int          pdi;                     /* current pld index of pxd. -1 if
  84.                                            no index*/
  85.   vcdinfo_itemid_t play_item;           /* play-item, VCDPLAYER_BAD_ENTRY
  86.                                            if none */
  87.   vcdinfo_itemid_t loop_item;           /* Where do we loop back to?
  88.                                            Meaningful only in a selection
  89.                                            list */
  90.   int          i_loop;                  /* # of times play-item has been
  91.                                            played. Meaningful only in a
  92.                                            selection list.              */
  93.   track_t      i_track;                 /* current track number */
  94.   /*-----------------------------------
  95.      location fields
  96.    ------------------------------------*/
  97.   lsn_t        i_lsn;                   /* LSN of where we are right now */
  98.   lsn_t        end_lsn;                 /* LSN of end of current
  99.                                            entry/segment/track. This block
  100.                                            can be read (and is not one after
  101.                                            the "end").
  102.                                         */
  103.   lsn_t        origin_lsn;              /* LSN of start of seek/slider */
  104.   lsn_t        track_lsn;               /* LSN of start track origin of track
  105.                                            we are in. */
  106.   lsn_t        track_end_lsn;           /* LSN of end of current track (if
  107.                                            entry). */
  108.   lsn_t *      p_entries;               /* Entry points */
  109.   lsn_t *      p_segments;              /* Segments */
  110.   bool         b_valid_ep;              /* Valid entry points flag */
  111.   bool         b_end_of_track;          /* If the end of track was reached */
  112.   /*--------------------------------------------------------------
  113.     (S)VCD Medium information
  114.    ---------------------------------------------------------------*/
  115.   char        *psz_source;              /* (S)VCD drive or image filename */
  116.   bool         b_svd;                   /* true if we have SVD info */
  117.   vlc_meta_t  *p_meta;
  118.   track_t      i_tracks;                /* # of playable MPEG tracks. This is
  119.                                            generally one less than the number
  120.                                            of CD tracks as the first CD track
  121.                                            is an ISO-9660 track and is not
  122.                                            playable.
  123.                                         */
  124.   unsigned int i_segments;              /* # of segments */
  125.   unsigned int i_entries;               /* # of entries */
  126.   unsigned int i_lids;                  /* # of List IDs */
  127.   /* Tracks, segment, and entry information. The number of entries for
  128.      each is given by the corresponding i_* field above.  */
  129.   vcdplayer_play_item_info_t *track;
  130.   vcdplayer_play_item_info_t *segment;
  131.   vcdplayer_play_item_info_t *entry;
  132.   unsigned int i_titles;                /* # of navigatable titles. */
  133.   /*
  134.      # tracks + menu for segments + menu for LIDs
  135.    */
  136.   input_title_t *p_title[CDIO_CD_MAX_TRACKS+2];
  137.   /* Probably gets moved into another structure...*/
  138.   intf_thread_t *p_intf;
  139.   int            i_audio_nb;
  140.   int            i_still;
  141.   bool           b_end_of_cell;
  142.   bool           b_track_length; /* Use track as max unit in seek */
  143.   input_thread_t *p_input;
  144.   access_t       *p_access;
  145.  
  146. } vcdplayer_t;
  147. /* vcdplayer_read return status */
  148. typedef enum {
  149.   READ_BLOCK,
  150.   READ_STILL_FRAME,
  151.   READ_ERROR,
  152.   READ_END,
  153. } vcdplayer_read_status_t;
  154. /* ----------------------------------------------------------------------
  155.    Function Prototypes
  156.   -----------------------------------------------------------------------*/
  157. /*!
  158.   Return true if playback control (PBC) is on
  159. */
  160. bool vcdplayer_pbc_is_on(const vcdplayer_t *p_vcdplayer);
  161. /*!
  162.   Play item assocated with the "default" selection.
  163.   Return false if there was some problem.
  164. */
  165. bool vcdplayer_play_default( access_t * p_access );
  166. /*!
  167.   Play item assocated with the "next" selection.
  168.   Return false if there was some problem.
  169. */
  170. bool vcdplayer_play_next( access_t * p_access );
  171. /*!
  172.   Play item assocated with the "prev" selection.
  173.   Return false if there was some problem.
  174. */
  175. bool vcdplayer_play_prev( access_t * p_access );
  176. /*!
  177.   Play item assocated with the "return" selection.
  178.   Return false if there was some problem.
  179. */
  180. bool vcdplayer_play_return( access_t * p_access );
  181. /*
  182.    Set's start origin and size for subsequent seeks.
  183.    input: p_vcd->i_lsn, p_vcd->play_item
  184.    changed: p_vcd->origin_lsn, p_vcd->end_lsn
  185. */
  186. void vcdplayer_set_origin(access_t *p_access, lsn_t i_lsn, track_t i_track,
  187.                           const vcdinfo_itemid_t *p_itemid);
  188. void vcdplayer_play(access_t *p_access, vcdinfo_itemid_t itemid);
  189. vcdplayer_read_status_t vcdplayer_read (access_t * p_access_t, uint8_t *p_buf);
  190. #endif /* _VCDPLAYER_H_ */
  191. /*
  192.  * Local variables:
  193.  *  c-file-style: "gnu"
  194.  *  tab-width: 8
  195.  *  indent-tabs-mode: nil
  196.  * End:
  197.  */