diff options
author | Thilo Borgmann <thilo.borgmann@mail.de> | 2014-03-26 11:25:00 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-05 03:31:56 +0200 |
commit | 8c161d7884f0547a605c1221ec4cad020922d4aa (patch) | |
tree | e6908762c60e55d2f043a15c4ce545d7a65b1d6e /libavcodec/webp.c | |
parent | 7a5537fd3fd06f71c077ef06467149390ed491ea (diff) | |
download | ffmpeg-8c161d7884f0547a605c1221ec4cad020922d4aa.tar.gz |
lavc/exif: Make EXIF IFD decoding part of private API/ABI.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/webp.c')
-rw-r--r-- | libavcodec/webp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/webp.c b/libavcodec/webp.c index 89c8f13176..4dbdf786c8 100644 --- a/libavcodec/webp.c +++ b/libavcodec/webp.c @@ -1449,7 +1449,7 @@ static int webp_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, } bytestream2_seek(&exif_gb, ifd_offset, SEEK_SET); - if (ff_exif_decode_ifd(avctx, &exif_gb, le, 0, &s->exif_metadata) < 0) { + if (avpriv_exif_decode_ifd(avctx, &exif_gb, le, 0, &s->exif_metadata) < 0) { av_log(avctx, AV_LOG_ERROR, "error decoding Exif data\n"); goto exif_end; } |