vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Sun Apr 14 22:01:35 2019 +0300| [e3ed2a794023cf8cad2de0161352d4f891e8f14a] | committer: Rémi Denis-Courmont
stl: remove invalid const qualifier > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e3ed2a794023cf8cad2de0161352d4f891e8f14a --- modules/codec/stl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/codec/stl.c b/modules/codec/stl.c index 3f3ae7a939..a00e0290a1 100644 --- a/modules/codec/stl.c +++ b/modules/codec/stl.c @@ -434,7 +434,7 @@ static int Decode(decoder_t *p_dec, block_t *p_block) return VLCDEC_SUCCESS; } -static int ParseGSI(const decoder_t *dec, decoder_sys_t *p_sys) +static int ParseGSI(decoder_t *dec, decoder_sys_t *p_sys) { uint8_t *header = dec->fmt_in.p_extra; if (!header) { _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
