[vlc-commits] es_out: use an enum es_format_category_e to check the ES category
Steve Lhomme
git at videolan.org
Sat Jul 8 18:38:52 CEST 2017
vlc | branch: master | Steve Lhomme <robux4 at videolabs.io> | Thu Jul 6 12:12:36 2017 +0200| [669d8ad99f1998c914b7295580af127648983b82] | committer: Jean-Baptiste Kempf
es_out: use an enum es_format_category_e to check the ES category
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=669d8ad99f1998c914b7295580af127648983b82
---
src/input/es_out.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/input/es_out.c b/src/input/es_out.c
index 7095d8a477..69ea835fda 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -2272,9 +2272,10 @@ static int EsOutControlLocked( es_out_t *out, int i_query, va_list args )
case ES_OUT_SET_ES:
case ES_OUT_RESTART_ES:
{
+#define IGNORE_ES NAV_ES
es_out_id_t *es = va_arg( args, es_out_id_t * );
- int i_cat;
+ enum es_format_category_e i_cat;
if( es == NULL )
i_cat = UNKNOWN_ES;
else if( es == (es_out_id_t*)((uint8_t*)NULL+AUDIO_ES) )
@@ -2284,11 +2285,11 @@ static int EsOutControlLocked( es_out_t *out, int i_query, va_list args )
else if( es == (es_out_id_t*)((uint8_t*)NULL+SPU_ES) )
i_cat = SPU_ES;
else
- i_cat = -1;
+ i_cat = IGNORE_ES;
for( int i = 0; i < p_sys->i_es; i++ )
{
- if( i_cat == -1 )
+ if( i_cat == IGNORE_ES )
{
if( es == p_sys->es[i] )
{
More information about the vlc-commits
mailing list