diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-04-01 13:13:03 +0200 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-04-02 22:48:15 +0100 |
commit | ce87711df563a9d2d0537a062b86bb91b15ea1a0 (patch) | |
tree | 83f98f7de933fa06473812ff8dcc6d62ff5a9c19 /libavcodec/exif.h | |
parent | 994412fb9b07dd3d012a76f480f4f5e0cfa883cc (diff) | |
download | ffmpeg-ce87711df563a9d2d0537a062b86bb91b15ea1a0.tar.gz |
exif: take a generic log context
The AVCodecContext is only used for logging, so instead take any valid log context.
This allows reusing the exif functions more easily in avformat.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavcodec/exif.h')
-rw-r--r-- | libavcodec/exif.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/exif.h b/libavcodec/exif.h index 2f509ba1e9..5f09208b9d 100644 --- a/libavcodec/exif.h +++ b/libavcodec/exif.h @@ -164,7 +164,7 @@ static const struct exif_tag tag_list[] = { // JEITA CP-3451 EXIF specification: /** Recursively decodes all IFD's and * adds included TAGS into the metadata dictionary. */ -int avpriv_exif_decode_ifd(AVCodecContext *avctx, GetByteContext *gbytes, int le, +int avpriv_exif_decode_ifd(void *logctx, GetByteContext *gbytes, int le, int depth, AVDictionary **metadata); #endif /* AVCODEC_EXIF_H */ |