diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-01 22:26:12 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-01 22:40:50 +0100 |
commit | bf90ef0314e298f7ecfa133685e938e694dd3cad (patch) | |
tree | 539a154a26d35ced82e061a3d6daa618386ea755 /libavcodec/internal.h | |
parent | 5b802cf567a0ee7a2990e08d08f8aa0abffbb7d2 (diff) | |
download | ffmpeg-bf90ef0314e298f7ecfa133685e938e694dd3cad.tar.gz |
avcodec: add ff_frame_get_metadatap()
This is needed for av_dict_*
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/internal.h')
-rw-r--r-- | libavcodec/internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 3402cc2547..14f7918dbd 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -213,4 +213,6 @@ int ff_codec_close_recursive(AVCodecContext *avctx); */ int avpriv_bprint_to_extradata(AVCodecContext *avctx, struct AVBPrint *buf); +AVDictionary **ff_frame_get_metadatap(AVFrame *frame); + #endif /* AVCODEC_INTERNAL_H */ |