diff options
author | Muhammad Faiz <mfcc64@gmail.com> | 2017-04-22 15:54:58 +0700 |
---|---|---|
committer | Muhammad Faiz <mfcc64@gmail.com> | 2017-04-23 14:27:47 +0700 |
commit | 31f61b0d4f8d452becb44f044c739f9057900159 (patch) | |
tree | 624d61d8db11c10d9f01aabaf649aa1f45a497d3 /libavcodec/webp.c | |
parent | fdeab95a823b10adda6f29d134122537c21578e2 (diff) | |
download | ffmpeg-31f61b0d4f8d452becb44f044c739f9057900159.tar.gz |
avcodec: do not use AVFrame accessor
Reviewed-by: wm4 <nfxjfg@googlemail.com>
Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
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 45abfdc3ca..52a80402e9 100644 --- a/libavcodec/webp.c +++ b/libavcodec/webp.c @@ -1489,7 +1489,7 @@ static int webp_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, goto exif_end; } - av_dict_copy(avpriv_frame_get_metadatap(data), exif_metadata, 0); + av_dict_copy(&((AVFrame *) data)->metadata, exif_metadata, 0); exif_end: av_dict_free(&exif_metadata); |