From 350c3b8006b6c5bc28c9f33133c526f1a7c064d8 Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Sun, 19 Jul 2009 17:21:04 +0200 Subject: [PATCH] Privatized es_out_mode_e. --- include/vlc_es_out.h | 8 -------- src/input/es_out.h | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/include/vlc_es_out.h b/include/vlc_es_out.h index 043e5579d8..4739b41a10 100644 --- a/include/vlc_es_out.h +++ b/include/vlc_es_out.h @@ -34,14 +34,6 @@ * @{ */ -enum es_out_mode_e -{ - ES_OUT_MODE_NONE, /* don't select anything */ - ES_OUT_MODE_ALL, /* eg for stream output */ - ES_OUT_MODE_AUTO, /* best audio/video or for input follow audio-track, sub-track */ - ES_OUT_MODE_PARTIAL /* select programs given after --programs */ -}; - enum es_out_query_e { /* set ES selected for the es category (audio/video/spu) */ diff --git a/src/input/es_out.h b/src/input/es_out.h index b9f0ce944a..9dd5d45ab3 100644 --- a/src/input/es_out.h +++ b/src/input/es_out.h @@ -31,6 +31,14 @@ #include +enum es_out_mode_e +{ + ES_OUT_MODE_NONE, /* don't select anything */ + ES_OUT_MODE_ALL, /* eg for stream output */ + ES_OUT_MODE_AUTO, /* best audio/video or for input follow audio-track, sub-track */ + ES_OUT_MODE_PARTIAL /* select programs given after --programs */ +}; + enum es_out_query_private_e { -- 2.39.5