]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/decode.h
avcodec/rkmpp : remove stream start retries before first frame.
[ffmpeg] / libavcodec / decode.h
index 03fc783bba308f0e65413166fd44a29c0dfbb98c..15271c529ab64bbb3d3c57963ed637c08d92c2c6 100644 (file)
@@ -23,6 +23,7 @@
 
 #include "libavutil/buffer.h"
 #include "libavutil/frame.h"
+#include "libavutil/hwcontext.h"
 
 #include "avcodec.h"
 
@@ -65,6 +66,14 @@ int ff_decode_get_packet(AVCodecContext *avctx, AVPacket *pkt);
 
 void ff_decode_bsfs_uninit(AVCodecContext *avctx);
 
+/**
+ * Make sure avctx.hw_frames_ctx is set. If it's not set, the function will
+ * try to allocate it from hw_device_ctx. If that is not possible, an error
+ * message is printed, and an error code is returned.
+ */
+int ff_decode_get_hw_frames_ctx(AVCodecContext *avctx,
+                                enum AVHWDeviceType dev_type);
+
 int ff_attach_decode_data(AVFrame *frame);
 
 #endif /* AVCODEC_DECODE_H */