diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-20 02:58:02 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-20 17:01:46 +0200 |
commit | a94de50ba02f5c260ca7c571b43fb595c8f951b6 (patch) | |
tree | 08a113eb6a16415a16c48442fc5ff800e0664c65 /libavcodec/tiff_common.h | |
parent | cd4faed89378dfb9ba4c985ef661d10c0d7e7b7e (diff) | |
download | ffmpeg-a94de50ba02f5c260ca7c571b43fb595c8f951b6.tar.gz |
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>
Diffstat (limited to 'libavcodec/tiff_common.h')
-rw-r--r-- | libavcodec/tiff_common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/tiff_common.h b/libavcodec/tiff_common.h index 01a7b0891b..16c9e50850 100644 --- a/libavcodec/tiff_common.h +++ b/libavcodec/tiff_common.h @@ -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. |