# HG changeset patch # User rtogni # Date 1201650608 0 # Node ID b61b5a697afcbb1b8181f947adb6e9cae2c9e480 # Parent aaebaf255b23113cf9243b187a7d57f4f9b1f3e1 Stream IDs must be written as hex numbers. Fixes http://wm.streampower.be/ceu/archive/CEU_COUNCIL_DELIBIRATIONS_PUBLIC_DEBATE/ceulive_1443.wmv Patch by Peter Collingbourne pcc03 doc ic ac uk diff -r aaebaf255b23 -r b61b5a697afc stream/asf_streaming.c --- a/stream/asf_streaming.c Tue Jan 29 23:25:11 2008 +0000 +++ b/stream/asf_streaming.c Tue Jan 29 23:50:08 2008 +0000 @@ -594,7 +594,7 @@ continue; } asf_nb_stream++; - ptr += sprintf(ptr, "ffff:%d:%d ", stream_id, enable); + ptr += sprintf(ptr, "ffff:%x:%d ", stream_id, enable); } } if(asf_http_ctrl->n_video > 0) { @@ -607,7 +607,7 @@ continue; } asf_nb_stream++; - ptr += sprintf(ptr, "ffff:%d:%d ", stream_id, enable); + ptr += sprintf(ptr, "ffff:%x:%d ", stream_id, enable); } } http_set_field( http_hdr, str );