mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-02 09:57:44 +00:00
Add a lowercase parameter to ff_data_to_hex
Originally committed as revision 22665 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
bd01c39330
commit
ddbeb95447
4 changed files with 10 additions and 6 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue