Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
d2acb621
Commit
d2acb621
authored
Feb 15, 2014
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "input core: add status field per elementary stream"
This reverts commit
d8199d8c
.
parent
b4b99ec6
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
21 additions
and
98 deletions
+21
-98
include/vlc_codec.h
include/vlc_codec.h
+1
-2
include/vlc_es_out.h
include/vlc_es_out.h
+1
-3
include/vlc_input.h
include/vlc_input.h
+0
-22
modules/codec/a52.c
modules/codec/a52.c
+1
-1
modules/codec/avcodec/video.c
modules/codec/avcodec/video.c
+1
-1
modules/codec/dts.c
modules/codec/dts.c
+1
-1
modules/codec/mpeg_audio.c
modules/codec/mpeg_audio.c
+1
-1
modules/codec/quicktime.c
modules/codec/quicktime.c
+2
-2
modules/packetizer/mpeg4audio.c
modules/packetizer/mpeg4audio.c
+1
-1
src/input/control.c
src/input/control.c
+1
-19
src/input/decoder.c
src/input/decoder.c
+7
-9
src/input/es_out.c
src/input/es_out.c
+3
-31
src/input/es_out.h
src/input/es_out.h
+0
-2
src/input/es_out_timeshift.c
src/input/es_out_timeshift.c
+1
-3
No files found.
include/vlc_codec.h
View file @
d2acb621
...
...
@@ -24,7 +24,6 @@
#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>
...
...
@@ -132,7 +131,7 @@ struct decoder_t
/* Private structure for the owner of the decoder */
decoder_owner_sys_t
*
p_owner
;
atomic_bool
b_error
;
bool
b_error
;
};
/**
...
...
include/vlc_es_out.h
View file @
d2acb621
...
...
@@ -45,9 +45,7 @@ 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* 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_GET_ES_STATE
,
/* arg1= es_out_id_t* arg2=bool* */
/* */
ES_OUT_SET_GROUP
,
/* arg1= int */
...
...
include/vlc_input.h
View file @
d2acb621
...
...
@@ -297,14 +297,6 @@ 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.
*
...
...
@@ -488,9 +480,6 @@ 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 */
};
/** @}*/
...
...
@@ -617,17 +606,6 @@ 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
*/
...
...
modules/codec/a52.c
View file @
d2acb621
...
...
@@ -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
))
)
{
//
atomic_store( &p_dec->b_error, true )
;
//
p_dec->b_error = true
;
return
NULL
;
}
...
...
modules/codec/avcodec/video.c
View file @
d2acb621
...
...
@@ -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"
);
atomic_store
(
&
p_dec
->
b_error
,
true
)
;
p_dec
->
b_error
=
1
;
}
}
...
...
modules/codec/dts.c
View file @
d2acb621
...
...
@@ -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
))
)
{
//
atomic_store( &p_dec->b_error, true )
;
//
p_dec->b_error = true
;
return
NULL
;
}
...
...
modules/codec/mpeg_audio.c
View file @
d2acb621
...
...
@@ -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
))
)
{
//
atomic_store( &p_dec->b_error, true )
;
//
p_dec->b_error = true
;
return
NULL
;
}
...
...
modules/codec/quicktime.c
View file @
d2acb621
...
...
@@ -538,7 +538,7 @@ static block_t *DecodeAudio( decoder_t *p_dec, block_t **pp_block )
if
(
OpenAudio
(
p_dec
)
)
{
/* Fatal */
atomic_store
(
&
p_dec
->
b_error
,
true
)
;
p_dec
->
b_error
=
true
;
return
NULL
;
}
...
...
@@ -883,7 +883,7 @@ static picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
if
(
OpenVideo
(
p_dec
)
)
{
/* Fatal */
atomic_store
(
&
p_dec
->
b_error
,
true
)
;
p_dec
->
b_error
=
true
;
return
NULL
;
}
p_sys
=
p_dec
->
p_sys
;
...
...
modules/packetizer/mpeg4audio.c
View file @
d2acb621
...
...
@@ -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
)
{
//
atomic_store( &p_dec->b_error, true )
;
//
p_dec->b_error = true
;
return
NULL
;
}
p_buf
=
p_out_buffer
->
p_buffer
;
...
...
src/input/control.c
View file @
d2acb621
...
...
@@ -36,7 +36,6 @@
#include "resource.h"
#include "es_out.h"
typedef
enum
input_es_state_e
input_es_state_e
;
static
void
UpdateBookmarksOption
(
input_thread_t
*
);
...
...
@@ -495,24 +494,6 @@ 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
;
...
...
@@ -573,3 +554,4 @@ static void UpdateBookmarksOption( input_thread_t *p_input )
input_SendEventBookmark
(
p_input
);
}
src/input/decoder.c
View file @
d2acb621
...
...
@@ -729,8 +729,6 @@ 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
;
...
...
@@ -1536,7 +1534,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
);
atomic_store
(
&
p_dec
->
b_error
,
true
)
;
p_dec
->
b_error
=
true
;
block_ChainRelease
(
p_sout_block
);
break
;
...
...
@@ -1760,7 +1758,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
(
atomic_load
(
&
p_dec
->
b_error
)
)
if
(
p_dec
->
b_error
)
{
if
(
p_block
)
block_Release
(
p_block
);
...
...
@@ -1812,7 +1810,7 @@ static void DecoderProcess( decoder_t *p_dec, block_t *p_block )
else
{
msg_Err
(
p_dec
,
"unknown ES format"
);
atomic_store
(
&
p_dec
->
b_error
,
true
)
;
p_dec
->
b_error
=
true
;
}
}
...
...
@@ -2024,7 +2022,7 @@ static int aout_update_format( decoder_t *p_dec )
if
(
p_aout
==
NULL
)
{
msg_Err
(
p_dec
,
"failed to create audio output"
);
atomic_store
(
&
p_dec
->
b_error
,
true
)
;
p_dec
->
b_error
=
true
;
return
-
1
;
}
...
...
@@ -2157,7 +2155,7 @@ static picture_t *vout_new_buffer( decoder_t *p_dec )
if
(
p_vout
==
NULL
)
{
msg_Err
(
p_dec
,
"failed to create video output"
);
atomic_store
(
&
p_dec
->
b_error
,
true
)
;
p_dec
->
b_error
=
true
;
return
NULL
;
}
}
...
...
@@ -2166,7 +2164,7 @@ static picture_t *vout_new_buffer( decoder_t *p_dec )
*/
for
(
;;
)
{
if
(
DecoderIsExitRequested
(
p_dec
)
||
atomic_load
(
&
p_dec
->
b_error
)
)
if
(
DecoderIsExitRequested
(
p_dec
)
||
p_dec
->
b_error
)
return
NULL
;
picture_t
*
p_picture
=
vout_GetPicture
(
p_owner
->
p_vout
);
...
...
@@ -2212,7 +2210,7 @@ static subpicture_t *spu_new_buffer( decoder_t *p_dec,
while
(
i_attempts
--
)
{
if
(
DecoderIsExitRequested
(
p_dec
)
||
atomic_load
(
&
p_dec
->
b_error
)
)
if
(
DecoderIsExitRequested
(
p_dec
)
||
p_dec
->
b_error
)
break
;
p_vout
=
input_resource_HoldVout
(
p_owner
->
p_resource
);
...
...
src/input/es_out.c
View file @
d2acb621
...
...
@@ -247,6 +247,7 @@ 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
);
...
...
@@ -297,33 +298,6 @@ 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
);
}
/*****************************************************************************
*
*****************************************************************************/
...
...
@@ -618,6 +592,8 @@ 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
;
...
...
@@ -1594,7 +1570,6 @@ 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
);
...
...
@@ -2157,10 +2132,8 @@ 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
;
}
...
...
@@ -2723,7 +2696,6 @@ 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
;
...
...
src/input/es_out.h
View file @
d2acb621
...
...
@@ -168,8 +168,6 @@ 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
src/input/es_out_timeshift.c
View file @
d2acb621
...
...
@@ -623,15 +623,13 @@ 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
,
pb_error
);
return
es_out_Control
(
p_sys
->
p_out
,
ES_OUT_GET_ES_STATE
,
p_es
->
p_es
,
pb_enabled
);
}
/* Special internal input control */
case
ES_OUT_GET_EMPTY
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment