summaryrefslogtreecommitdiff
path: root/libavcodec/bsf.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/bsf.h')
-rw-r--r--libavcodec/bsf.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libavcodec/bsf.h b/libavcodec/bsf.h
index 3435df5d86..af035eee44 100644
--- a/libavcodec/bsf.h
+++ b/libavcodec/bsf.h
@@ -28,6 +28,17 @@
*/
int ff_bsf_get_packet(AVBSFContext *ctx, AVPacket **pkt);
+/**
+ * Called by bitstream filters to get packet for filtering.
+ * The reference to packet is moved to provided packet structure.
+ *
+ * @param ctx pointer to AVBSFContext of filter
+ * @param pkt pointer to packet to move reference to
+ *
+ * @return 0>= on success, negative AVERROR in case of failure
+ */
+int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt);
+
const AVClass *ff_bsf_child_class_next(const AVClass *prev);
#endif /* AVCODEC_BSF_H */