Skip to content

Commit

Permalink
input core: add status field per elementary stream
Browse files Browse the repository at this point in the history
VLC has status reporting on the input state, but not on the output state.
This makes it impossible to know if playback actually started completely from
checking stream status states.

For instance a failed audio output cannot be determined programatically. This
patch adds an extra field per ES (in src/input/es_out.c) to determine the state
of that ES (DISABLE, ENABLED, ERROR).

If CreateDecoder() cannot instantiate an output, then it set p_dec->b_error = true.
This is used to determine what the return value for es_out_GetEsState() should be.
If p_dec->b_error is true, then it returns an ES_OUT_STATE_ES_ERROR to the caller.
Else it returns ES_OUT_STATE_ES_ENABLED or ES_OUT_STATE_ES_DISABLED.

A function 'es_out_GetEsState()' is available to query an input for the state of
the primary audio, video and SPU elementary streams.
  • Loading branch information
jpsaman committed Feb 15, 2014
1 parent 2bc56d7 commit d8199d8
Show file tree
Hide file tree
Showing 14 changed files with 98 additions and 21 deletions.
3 changes: 2 additions & 1 deletion include/vlc_codec.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#ifndef VLC_CODEC_H
#define VLC_CODEC_H 1

#include <vlc_atomic.h>
#include <vlc_block.h>
#include <vlc_es.h>
#include <vlc_picture.h>
Expand Down Expand Up @@ -131,7 +132,7 @@ struct decoder_t
/* Private structure for the owner of the decoder */
decoder_owner_sys_t *p_owner;

bool b_error;
atomic_bool b_error;
};

/**
Expand Down
4 changes: 3 additions & 1 deletion include/vlc_es_out.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ enum es_out_query_e

/* force selection/unselection of the ES (bypass current mode) */
ES_OUT_SET_ES_STATE,/* arg1= es_out_id_t* arg2=bool */
ES_OUT_GET_ES_STATE,/* arg1= es_out_id_t* arg2=bool* */
ES_OUT_GET_ES_STATE,/* arg1= es_out_id_t* arg2=bool* arg3=bool* res=can fail
* arg2 is true if es has been selected, false otherwise,
* arg3 is true if es has an error, false otherwise */

/* */
ES_OUT_SET_GROUP, /* arg1= int */
Expand Down
22 changes: 22 additions & 0 deletions include/vlc_input.h
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,14 @@ typedef enum input_state_e
ERROR_S,
} input_state_e;

/* same order as es_out_state_es_e enum in vlc_es_out.h */
typedef enum input_es_state_e
{
INPUT_ES_STATE_DISABLED = 0,
INPUT_ES_STATE_ENABLED,
INPUT_ES_STATE_ERROR,
} input_es_state_e;

/**
* Input rate.
*
Expand Down Expand Up @@ -480,6 +488,9 @@ enum input_query_e
/* External clock managments */
INPUT_GET_PCR_SYSTEM, /* arg1=mtime_t *, arg2=mtime_t * res=can fail */
INPUT_MODIFY_PCR_SYSTEM,/* arg1=int absolute, arg2=mtime_t res=can fail */

/* Ask status of main ES objects */
INPUT_GET_ES_STATE, /* arg1=int (AUDIO/VIDEO/SPU_ES), arg2=es_out state * res=can fail */
};

/** @}*/
Expand Down Expand Up @@ -606,6 +617,17 @@ static inline int input_GetPcrSystem( input_thread_t *p_input, mtime_t *pi_syste
{
return input_Control( p_input, INPUT_GET_PCR_SYSTEM, pi_system, pi_delay );
}

/**
* It will return the state of the current selected elementary streams for this input.
*/
static inline input_es_state_e input_GetEsState( input_thread_t *p_input, const int i_cat )
{
input_es_state_e state = INPUT_ES_STATE_DISABLED;
input_Control( p_input, INPUT_GET_ES_STATE, i_cat, &state );
return state;
}

/**
* \see input_clock_ChangeSystemOrigin
*/
Expand Down
2 changes: 1 addition & 1 deletion modules/codec/a52.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ static block_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
case STATE_SEND_DATA:
if( !(p_buf = GetOutBuffer( p_dec, &p_out_buffer )) )
{
//p_dec->b_error = true;
//atomic_store( &p_dec->b_error, true );
return NULL;
}

Expand Down
2 changes: 1 addition & 1 deletion modules/codec/avcodec/video.c
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ static void ffmpeg_CopyPicture( decoder_t *p_dec,
const char *name = av_get_pix_fmt_name( p_sys->p_context->pix_fmt );
msg_Err( p_dec, "Unsupported decoded output format %d (%s)",
p_sys->p_context->pix_fmt, name ? name : "unknown" );
p_dec->b_error = 1;
atomic_store( &p_dec->b_error, true );
}
}

Expand Down
2 changes: 1 addition & 1 deletion modules/codec/dts.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ static block_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )

if( !(p_buf = GetOutBuffer( p_dec, &p_out_buffer )) )
{
//p_dec->b_error = true;
//atomic_store( &p_dec->b_error, true );
return NULL;
}

Expand Down
2 changes: 1 addition & 1 deletion modules/codec/mpeg_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ static block_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
case STATE_SEND_DATA:
if( !(p_buf = GetOutBuffer( p_dec, &p_out_buffer )) )
{
//p_dec->b_error = true;
//atomic_store( &p_dec->b_error, true );
return NULL;
}

Expand Down
4 changes: 2 additions & 2 deletions modules/codec/quicktime.c
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ static block_t *DecodeAudio( decoder_t *p_dec, block_t **pp_block )
if( OpenAudio( p_dec ) )
{
/* Fatal */
p_dec->b_error = true;
atomic_store( &p_dec->b_error, true );
return NULL;
}

Expand Down Expand Up @@ -883,7 +883,7 @@ static picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
if( OpenVideo( p_dec ) )
{
/* Fatal */
p_dec->b_error = true;
atomic_store( &p_dec->b_error, true );
return NULL;
}
p_sys = p_dec->p_sys;
Expand Down
2 changes: 1 addition & 1 deletion modules/packetizer/mpeg4audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ static block_t *PacketizeStreamBlock(decoder_t *p_dec, block_t **pp_block)

p_out_buffer = block_Alloc(p_sys->i_frame_size);
if (!p_out_buffer) {
//p_dec->b_error = true;
//atomic_store( &p_dec->b_error, true );
return NULL;
}
p_buf = p_out_buffer->p_buffer;
Expand Down
20 changes: 19 additions & 1 deletion src/input/control.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
#include "resource.h"
#include "es_out.h"

typedef enum input_es_state_e input_es_state_e;

static void UpdateBookmarksOption( input_thread_t * );

Expand Down Expand Up @@ -494,6 +495,24 @@ int input_vaControl( input_thread_t *p_input, int i_query, va_list args )
return es_out_ControlModifyPcrSystem( p_input->p->p_es_out_display, b_absolute, i_system );
}

case INPUT_GET_ES_STATE:
{
int i_cat = (int)va_arg( args, int );
input_es_state_e *pi_state = (input_es_state_e *)va_arg( args, input_es_state_e* );

bool b_selected = false, b_error = false;
int ret = es_out_GetEsState( p_input->p->p_es_out_display, i_cat, &b_selected, &b_error);
if (ret != VLC_SUCCESS)
{
*pi_state = INPUT_ES_STATE_DISABLED;
return VLC_EGENERIC;
}

*pi_state = b_error ? INPUT_ES_STATE_ERROR :
( b_selected ? INPUT_ES_STATE_ENABLED : INPUT_ES_STATE_DISABLED );
return ret;
}

default:
msg_Err( p_input, "unknown query in input_vaControl" );
return VLC_EGENERIC;
Expand Down Expand Up @@ -554,4 +573,3 @@ static void UpdateBookmarksOption( input_thread_t *p_input )

input_SendEventBookmark( p_input );
}

16 changes: 9 additions & 7 deletions src/input/decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,8 @@ static decoder_t * CreateDecoder( vlc_object_t *p_parent,
p_dec->pf_get_cc = NULL;
p_dec->pf_packetize = NULL;

atomic_init( &p_dec->b_error, false );

/* Initialize the decoder */
p_dec->p_module = NULL;

Expand Down Expand Up @@ -1534,7 +1536,7 @@ static void DecoderProcessSout( decoder_t *p_dec, block_t *p_block )
{
msg_Err( p_dec, "cannot create packetizer output (%4.4s)",
(char *)&p_owner->sout.i_codec );
p_dec->b_error = true;
atomic_store( &p_dec->b_error, true );

block_ChainRelease(p_sout_block);
break;
Expand Down Expand Up @@ -1758,7 +1760,7 @@ static void DecoderProcess( decoder_t *p_dec, block_t *p_block )
decoder_owner_sys_t *p_owner = (decoder_owner_sys_t *)p_dec->p_owner;
const bool b_flush_request = p_block && (p_block->i_flags & BLOCK_FLAG_CORE_FLUSH);

if( p_dec->b_error )
if( atomic_load( &p_dec->b_error ) )
{
if( p_block )
block_Release( p_block );
Expand Down Expand Up @@ -1810,7 +1812,7 @@ static void DecoderProcess( decoder_t *p_dec, block_t *p_block )
else
{
msg_Err( p_dec, "unknown ES format" );
p_dec->b_error = true;
atomic_store( &p_dec->b_error, true );
}
}

Expand Down Expand Up @@ -2022,7 +2024,7 @@ static int aout_update_format( decoder_t *p_dec )
if( p_aout == NULL )
{
msg_Err( p_dec, "failed to create audio output" );
p_dec->b_error = true;
atomic_store( &p_dec->b_error, true );
return -1;
}

Expand Down Expand Up @@ -2155,7 +2157,7 @@ static picture_t *vout_new_buffer( decoder_t *p_dec )
if( p_vout == NULL )
{
msg_Err( p_dec, "failed to create video output" );
p_dec->b_error = true;
atomic_store( &p_dec->b_error, true );
return NULL;
}
}
Expand All @@ -2164,7 +2166,7 @@ static picture_t *vout_new_buffer( decoder_t *p_dec )
*/
for( ;; )
{
if( DecoderIsExitRequested( p_dec ) || p_dec->b_error )
if( DecoderIsExitRequested( p_dec ) || atomic_load( &p_dec->b_error ) )
return NULL;

picture_t *p_picture = vout_GetPicture( p_owner->p_vout );
Expand Down Expand Up @@ -2210,7 +2212,7 @@ static subpicture_t *spu_new_buffer( decoder_t *p_dec,

while( i_attempts-- )
{
if( DecoderIsExitRequested( p_dec ) || p_dec->b_error )
if( DecoderIsExitRequested( p_dec ) || atomic_load( &p_dec->b_error ) )
break;

p_vout = input_resource_HoldVout( p_owner->p_resource );
Expand Down
34 changes: 31 additions & 3 deletions src/input/es_out.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,6 @@ es_out_t *input_EsOutNew( input_thread_t *p_input, int i_rate )
p_sys->b_active = false;
p_sys->i_mode = ES_OUT_MODE_NONE;


TAB_INIT( p_sys->i_pgrm, p_sys->pgrm );

TAB_INIT( p_sys->i_es, p_sys->es );
Expand Down Expand Up @@ -298,6 +297,33 @@ es_out_t *input_EsOutNew( input_thread_t *p_input, int i_rate )
return out;
}

int es_out_GetEsState( es_out_t *out, const int i_cat, bool *b_selected, bool *b_error)
{
if( !out && !out->p_sys )
return VLC_EGENERIC;

es_out_id_t *p_es;
switch( i_cat )
{
case VIDEO_ES:
p_es = out->p_sys->p_es_video;
break;
case AUDIO_ES:
p_es = out->p_sys->p_es_audio;
break;
case SPU_ES:
p_es = out->p_sys->p_es_sub;
break;
default:
p_es = NULL;
return VLC_EGENERIC;
}
if( !p_es )
return VLC_EGENERIC;

return es_out_Control( out, ES_OUT_GET_ES_STATE, p_es, b_selected, b_error );
}

/*****************************************************************************
*
*****************************************************************************/
Expand Down Expand Up @@ -592,8 +618,6 @@ static void EsOutChangePosition( es_out_t *out )
p_sys->i_preroll_end = -1;
}



static void EsOutDecodersStopBuffering( es_out_t *out, bool b_forced )
{
es_out_sys_t *p_sys = out->p_sys;
Expand Down Expand Up @@ -1570,6 +1594,7 @@ static void EsCreateDecoder( es_out_t *out, es_out_id_t *p_es )

EsOutDecoderChangeDelay( out, p_es );
}

static void EsDestroyDecoder( es_out_t *out, es_out_id_t *p_es )
{
VLC_UNUSED(out);
Expand Down Expand Up @@ -2132,8 +2157,10 @@ static int EsOutControlLocked( es_out_t *out, int i_query, va_list args )
{
es_out_id_t *es = va_arg( args, es_out_id_t * );
bool *pb = va_arg( args, bool * );
bool *pb_error = va_arg( args, bool *);

*pb = EsIsSelected( es );
*pb_error = (es->p_dec ? atomic_load( &es->p_dec->b_error ) : false);
return VLC_SUCCESS;
}

Expand Down Expand Up @@ -2696,6 +2723,7 @@ static int EsOutControlLocked( es_out_t *out, int i_query, va_list args )
return VLC_EGENERIC;
}
}

static int EsOutControl( es_out_t *out, int i_query, va_list args )
{
es_out_sys_t *p_sys = out->p_sys;
Expand Down
2 changes: 2 additions & 0 deletions src/input/es_out.h
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ static inline void es_out_Eos( es_out_t *p_out )
assert( !i_ret );
}

int es_out_GetEsState( es_out_t *p_out, const int i_cat, bool *b_selected, bool *b_error);

es_out_t *input_EsOutNew( input_thread_t *, int i_rate );

#endif
4 changes: 3 additions & 1 deletion src/input/es_out_timeshift.c
Original file line number Diff line number Diff line change
Expand Up @@ -623,13 +623,15 @@ static int ControlLocked( es_out_t *p_out, int i_query, va_list args )
{
es_out_id_t *p_es = (es_out_id_t*)va_arg( args, es_out_id_t * );
bool *pb_enabled = (bool*)va_arg( args, bool* );
bool *pb_error = (bool*)va_arg( args, bool* );

if( p_sys->b_delayed )
{
*pb_enabled = true;
return VLC_SUCCESS;
}
return es_out_Control( p_sys->p_out, ES_OUT_GET_ES_STATE, p_es->p_es, pb_enabled );
return es_out_Control( p_sys->p_out, ES_OUT_GET_ES_STATE, p_es->p_es,
pb_enabled, pb_error );
}
/* Special internal input control */
case ES_OUT_GET_EMPTY:
Expand Down

0 comments on commit d8199d8

Please sign in to comment.