vlc | branch: master | Steve Lhomme <[email protected]> | Wed Jul 5 17:09:17 2017 +0200| [6812fb5f9a17e5aaa9f14bcf183c1ad85d3b6675] | committer: Rémi Denis-Courmont
mux:asf: store the ES category as an enum es_format_category_e Signed-off-by: Rémi Denis-Courmont <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6812fb5f9a17e5aaa9f14bcf183c1ad85d3b6675 --- modules/mux/asf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mux/asf.c b/modules/mux/asf.c index fcd4e53740..809caf60ad 100644 --- a/modules/mux/asf.c +++ b/modules/mux/asf.c @@ -111,7 +111,7 @@ static int Mux ( sout_mux_t * ); typedef struct { int i_id; - int i_cat; + enum es_format_category_e i_cat; /* codec information */ uint16_t i_tag; /* for audio */ _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
