Commit 4a3838cb authored by Rémi Duraffort's avatar Rémi Duraffort

stl: fix warnings

parent 00d43bb2
...@@ -173,7 +173,7 @@ static int Open(vlc_object_t *object) ...@@ -173,7 +173,7 @@ static int Open(vlc_object_t *object)
const int cct = ParseInteger(&header[12], 2); const int cct = ParseInteger(&header[12], 2);
const mtime_t program_start = ParseTextTimeCode(&header[256], fps); const mtime_t program_start = ParseTextTimeCode(&header[256], fps);
const int tti_count = ParseInteger(&header[238], 5); const int tti_count = ParseInteger(&header[238], 5);
msg_Dbg(demux, "Detected EBU STL : CCT=%d TTI=%d start=%8.8s %lld", cct, tti_count, &header[256], program_start); msg_Dbg(demux, "Detected EBU STL : CCT=%d TTI=%d start=%8.8s %"PRId64, cct, tti_count, &header[256], program_start);
demux_sys_t *sys = xmalloc(sizeof(*sys)); demux_sys_t *sys = xmalloc(sizeof(*sys));
sys->next_date = 0; sys->next_date = 0;
...@@ -221,7 +221,7 @@ static int Open(vlc_object_t *object) ...@@ -221,7 +221,7 @@ static int Open(vlc_object_t *object)
sys->es = es_out_Add(demux->out, &fmt); sys->es = es_out_Add(demux->out, &fmt);
fmt.i_extra = NULL; fmt.i_extra = 0;
fmt.p_extra = NULL; fmt.p_extra = NULL;
es_format_Clean(&fmt); es_format_Clean(&fmt);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment