diff sdp.c @ 5883:fd37c39041cd libavformat

Add a lowercase parameter to ff_data_to_hex
author mstorsjo
date Thu, 25 Mar 2010 07:13:20 +0000
parents 7a123cc24a81
children 536e5527c1e0
line wrap: on
line diff
--- a/sdp.c	Wed Mar 24 23:06:58 2010 +0000
+++ b/sdp.c	Thu Mar 25 07:13:20 2010 +0000
@@ -201,7 +201,7 @@
         return NULL;
     }
     memcpy(config, "; config=", 9);
-    ff_data_to_hex(config + 9, c->extradata, c->extradata_size);
+    ff_data_to_hex(config + 9, c->extradata, c->extradata_size, 0);
     config[9 + c->extradata_size * 2] = 0;
 
     return config;