[vlc-commits] bluray: silence missing case warning

Rémi Denis-Courmont git at videolan.org
Sun Feb 11 14:13:07 CET 2018


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Feb 11 14:32:04 2018 +0200| [4d01e2c78cae24a2c511578b04060dbd1a43c52a] | committer: Rémi Denis-Courmont

bluray: silence missing case warning

This stems from the conversion of ES category to an enumerated type.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4d01e2c78cae24a2c511578b04060dbd1a43c52a
---

 modules/access/bluray.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/modules/access/bluray.c b/modules/access/bluray.c
index c29f9a7dcc..4cf1a67b3e 100644
--- a/modules/access/bluray.c
+++ b/modules/access/bluray.c
@@ -1024,6 +1024,8 @@ static es_out_id_t *esOutAdd(es_out_t *p_out, const es_format_t *p_fmt)
         }
         setStreamLang(p_sys, &fmt);
         break ;
+    default:
+        ;
     }
 
     es_out_id_t *p_es = es_out_Add(p_demux->out, &fmt);



More information about the vlc-commits mailing list