mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-31 19:30:11 +01:00
avcodec/exif/exif_add_metadata: add support for SSHORT & SBYTE
No working testcase, this omission was just spoted when the parser apparently went out of sync. Reviewed-by; Thilo Borgmann <thilo.borgmann@mail.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -121,13 +121,13 @@ int ff_tadd_doubles_metadata(int count, const char *name, const char *sep,
|
||||
* into the metadata dictionary.
|
||||
*/
|
||||
int ff_tadd_shorts_metadata(int count, const char *name, const char *sep,
|
||||
GetByteContext *gb, int le, AVDictionary **metadata);
|
||||
GetByteContext *gb, int le, int is_signed, AVDictionary **metadata);
|
||||
|
||||
/** Adds count bytes converted to a string
|
||||
* into the metadata dictionary.
|
||||
*/
|
||||
int ff_tadd_bytes_metadata(int count, const char *name, const char *sep,
|
||||
GetByteContext *gb, int le, AVDictionary **metadata);
|
||||
GetByteContext *gb, int le, int is_signed, AVDictionary **metadata);
|
||||
|
||||
/** Adds a string of count characters
|
||||
* into the metadata dictionary.
|
||||
|
||||
Reference in New Issue
Block a user