summaryrefslogtreecommitdiffstats
path: root/video/mp_image.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-04-15 15:33:53 +0200
committerwm4 <wm4@nowhere>2016-04-15 15:33:53 +0200
commitd04aa5ef4e12f5bee3343e833e1209774e9204d9 (patch)
tree0e5cea32ab7cb527d60af3c368842efb12a2f70f /video/mp_image.h
parente6cdfdfa7446dca9b6737650e912ccd6122050b6 (diff)
downloadmpv-d04aa5ef4e12f5bee3343e833e1209774e9204d9.tar.bz2
mpv-d04aa5ef4e12f5bee3343e833e1209774e9204d9.tar.xz
mp_image: add mp_image_to_av_frame()
What mp_image_to_av_frame_and_unref() should have been. (The _unref variant is still useful though.)
Diffstat (limited to 'video/mp_image.h')
-rw-r--r--video/mp_image.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/mp_image.h b/video/mp_image.h
index c96674b290..c808b5cf07 100644
--- a/video/mp_image.h
+++ b/video/mp_image.h
@@ -159,6 +159,7 @@ void mp_image_copy_fields_from_av_frame(struct mp_image *dst,
void mp_image_copy_fields_to_av_frame(struct AVFrame *dst,
struct mp_image *src);
struct mp_image *mp_image_from_av_frame(struct AVFrame *av_frame);
+struct AVFrame *mp_image_to_av_frame(struct mp_image *img);
struct AVFrame *mp_image_to_av_frame_and_unref(struct mp_image *img);
void memcpy_pic(void *dst, const void *src, int bytesPerLine, int height,