diff options
author | Martin Storsjö <martin@martin.st> | 2010-03-25 07:13:20 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-03-25 07:13:20 +0000 |
commit | ddbeb95447d237bd82a2234d15561ae2eeb88a4c (patch) | |
tree | bbaa9247dd0c8094b6489cd3b09cf7964d521ec3 /libavformat/sdp.c | |
parent | bd01c39330280313eebab7594168cae6180a6aef (diff) | |
download | ffmpeg-ddbeb95447d237bd82a2234d15561ae2eeb88a4c.tar.gz |
Add a lowercase parameter to ff_data_to_hex
Originally committed as revision 22665 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/sdp.c')
-rw-r--r-- | libavformat/sdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sdp.c b/libavformat/sdp.c index 37f92ff316..d48a5df950 100644 --- a/libavformat/sdp.c +++ b/libavformat/sdp.c @@ -201,7 +201,7 @@ static char *extradata2config(AVCodecContext *c) 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; |