2004-06-23 04:07:34 +08:00
|
|
|
/*****************************************************************************
|
2005-12-15 19:37:45 +08:00
|
|
|
* vlc_es_out.h: es_out (demuxer output) descriptor, queries and methods
|
2004-06-23 04:07:34 +08:00
|
|
|
*****************************************************************************
|
2005-07-09 14:17:09 +08:00
|
|
|
* Copyright (C) 1999-2004 the VideoLAN team
|
2004-08-28 19:02:51 +08:00
|
|
|
* $Id$
|
2004-06-23 04:07:34 +08:00
|
|
|
*
|
|
|
|
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2006-01-13 07:10:04 +08:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
2004-06-23 04:07:34 +08:00
|
|
|
*****************************************************************************/
|
|
|
|
|
2008-08-12 00:13:10 +08:00
|
|
|
#ifndef VLC_ES_OUT_H
|
|
|
|
#define VLC_ES_OUT_H 1
|
2004-06-23 04:07:34 +08:00
|
|
|
|
2008-08-11 23:31:57 +08:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* This file defines functions and structures for handling es_out in stream output
|
|
|
|
*/
|
|
|
|
|
2004-06-23 04:07:34 +08:00
|
|
|
/**
|
|
|
|
* \defgroup es out Es Out
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum es_out_query_e
|
|
|
|
{
|
2008-06-30 04:16:18 +08:00
|
|
|
/* set ES selected for the es category (audio/video/spu) */
|
2004-06-23 04:07:34 +08:00
|
|
|
ES_OUT_SET_ES, /* arg1= es_out_id_t* */
|
2008-08-28 20:30:02 +08:00
|
|
|
ES_OUT_RESTART_ES, /* arg1= es_out_id_t* */
|
2004-06-23 04:07:34 +08:00
|
|
|
|
2008-06-30 04:16:18 +08:00
|
|
|
/* set 'default' tag on ES (copied across from container) */
|
2008-11-02 23:41:55 +08:00
|
|
|
ES_OUT_SET_ES_DEFAULT, /* arg1= es_out_id_t* */
|
2007-09-10 09:53:28 +08:00
|
|
|
|
2008-06-30 04:16:18 +08:00
|
|
|
/* force selection/unselection of the ES (bypass current mode) */
|
2008-04-14 06:08:29 +08:00
|
|
|
ES_OUT_SET_ES_STATE,/* arg1= es_out_id_t* arg2=bool */
|
|
|
|
ES_OUT_GET_ES_STATE,/* arg1= es_out_id_t* arg2=bool* */
|
2004-06-23 04:07:34 +08:00
|
|
|
|
|
|
|
/* */
|
|
|
|
ES_OUT_SET_GROUP, /* arg1= int */
|
|
|
|
|
2008-06-30 04:16:18 +08:00
|
|
|
/* PCR handling, DTS/PTS will be automatically computed using thoses PCR
|
|
|
|
* XXX: SET_PCR(_GROUP) are in charge of the pace control. They will wait
|
2008-06-30 04:21:53 +08:00
|
|
|
* to slow down the demuxer so that it reads at the right speed.
|
2008-11-02 20:53:01 +08:00
|
|
|
* XXX: if you want PREROLL just call ES_OUT_SET_NEXT_DISPLAY_TIME and send
|
2008-10-11 03:24:32 +08:00
|
|
|
* as you would normally do.
|
2005-02-21 17:03:07 +08:00
|
|
|
*/
|
2004-06-23 04:07:34 +08:00
|
|
|
ES_OUT_SET_PCR, /* arg1=int64_t i_pcr(microsecond!) (using default group 0)*/
|
|
|
|
ES_OUT_SET_GROUP_PCR, /* arg1= int i_group, arg2=int64_t i_pcr(microsecond!)*/
|
|
|
|
ES_OUT_RESET_PCR, /* no arg */
|
2004-08-28 19:02:51 +08:00
|
|
|
|
|
|
|
/* Try not to use this one as it is a bit hacky */
|
2008-11-07 08:08:49 +08:00
|
|
|
ES_OUT_SET_ES_FMT, /* arg1= es_out_id_t* arg2=es_format_t* */
|
2005-02-21 17:03:07 +08:00
|
|
|
|
2008-10-11 03:05:38 +08:00
|
|
|
/* Allow preroll of data (data with dts/pts < i_pts for all ES will be decoded but not displayed */
|
2009-03-08 23:22:32 +08:00
|
|
|
ES_OUT_SET_NEXT_DISPLAY_TIME, /* arg1=int64_t i_pts(microsecond) */
|
2009-07-19 23:54:04 +08:00
|
|
|
/* Set meta data for group (dynamic) (The vlc_meta_t is not modified nor released) */
|
|
|
|
ES_OUT_SET_GROUP_META, /* arg1=int i_group arg2=const vlc_meta_t */
|
|
|
|
/* Set epg for group (dynamic) (The vlc_epg_t is not modified nor released) */
|
|
|
|
ES_OUT_SET_GROUP_EPG, /* arg1=int i_group arg2=const vlc_epg_t */
|
2005-04-28 15:26:04 +08:00
|
|
|
/* */
|
2008-11-02 20:53:01 +08:00
|
|
|
ES_OUT_DEL_GROUP, /* arg1=int i_group */
|
|
|
|
|
2009-03-08 23:22:32 +08:00
|
|
|
/* Set scrambled state for one es */
|
|
|
|
ES_OUT_SET_ES_SCRAMBLED_STATE, /* arg1=int i_group arg2=es_out_id_t* */
|
|
|
|
|
2009-03-12 06:20:26 +08:00
|
|
|
/* Stop any buffering being done, and ask if es_out has no more data to
|
|
|
|
* play.
|
|
|
|
* It will not block and so MUST be used carrefully. The only good reason
|
|
|
|
* is for interactive playback (like for DVD menu).
|
|
|
|
* XXX You SHALL call ES_OUT_RESET_PCR before any other es_out_Control/Send calls. */
|
|
|
|
ES_OUT_GET_EMPTY, /* arg1=bool* res=cannot fail */
|
|
|
|
|
2008-11-02 20:53:01 +08:00
|
|
|
/* First value usable for private control */
|
|
|
|
ES_OUT_PRIVATE_START = 0x10000,
|
2004-06-23 04:07:34 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct es_out_t
|
|
|
|
{
|
2008-11-11 02:07:00 +08:00
|
|
|
es_out_id_t *(*pf_add) ( es_out_t *, const es_format_t * );
|
2004-06-23 04:07:34 +08:00
|
|
|
int (*pf_send) ( es_out_t *, es_out_id_t *, block_t * );
|
|
|
|
void (*pf_del) ( es_out_t *, es_out_id_t * );
|
|
|
|
int (*pf_control)( es_out_t *, int i_query, va_list );
|
2008-11-02 20:53:01 +08:00
|
|
|
void (*pf_destroy)( es_out_t * );
|
|
|
|
|
|
|
|
bool b_sout;
|
2004-06-23 04:07:34 +08:00
|
|
|
|
|
|
|
es_out_sys_t *p_sys;
|
|
|
|
};
|
|
|
|
|
2008-09-06 16:30:44 +08:00
|
|
|
LIBVLC_USED
|
2008-11-11 02:07:00 +08:00
|
|
|
static inline es_out_id_t * es_out_Add( es_out_t *out, const es_format_t *fmt )
|
2004-06-23 04:07:34 +08:00
|
|
|
{
|
|
|
|
return out->pf_add( out, fmt );
|
|
|
|
}
|
2008-08-11 23:31:57 +08:00
|
|
|
|
2004-06-23 04:07:34 +08:00
|
|
|
static inline void es_out_Del( es_out_t *out, es_out_id_t *id )
|
|
|
|
{
|
|
|
|
out->pf_del( out, id );
|
|
|
|
}
|
2008-08-11 23:31:57 +08:00
|
|
|
|
2004-06-23 04:07:34 +08:00
|
|
|
static inline int es_out_Send( es_out_t *out, es_out_id_t *id,
|
|
|
|
block_t *p_block )
|
|
|
|
{
|
|
|
|
return out->pf_send( out, id, p_block );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int es_out_vaControl( es_out_t *out, int i_query, va_list args )
|
|
|
|
{
|
|
|
|
return out->pf_control( out, i_query, args );
|
|
|
|
}
|
2008-08-11 23:31:57 +08:00
|
|
|
|
2004-06-23 04:07:34 +08:00
|
|
|
static inline int es_out_Control( es_out_t *out, int i_query, ... )
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
int i_result;
|
|
|
|
|
|
|
|
va_start( args, i_query );
|
|
|
|
i_result = es_out_vaControl( out, i_query, args );
|
|
|
|
va_end( args );
|
|
|
|
return i_result;
|
|
|
|
}
|
|
|
|
|
2008-11-02 20:53:01 +08:00
|
|
|
static inline void es_out_Delete( es_out_t *p_out )
|
|
|
|
{
|
|
|
|
p_out->pf_destroy( p_out );
|
|
|
|
}
|
|
|
|
|
2004-06-23 04:07:34 +08:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endif
|