Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2020-08-10 21:03:46 +0300
committerJames Almer <jamrial@gmail.com>2020-08-15 21:55:22 +0300
commit161d7f3fee7467b96832cb8773b740065db194fb (patch)
treec667a0e4a8c3781358365068658452f95c90e49d /libavcodec/bsf.h
parent34a385b340a0f187ad776841cf526b111cda1b58 (diff)
avcodec/bsf: improve the doxy for av_bsf_flush()
Mention an example scenario where the function should be used. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/bsf.h')
-rw-r--r--libavcodec/bsf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bsf.h b/libavcodec/bsf.h
index 7ed51677e8..3b5faa85cb 100644
--- a/libavcodec/bsf.h
+++ b/libavcodec/bsf.h
@@ -215,7 +215,7 @@ int av_bsf_send_packet(AVBSFContext *ctx, AVPacket *pkt);
int av_bsf_receive_packet(AVBSFContext *ctx, AVPacket *pkt);
/**
- * Reset the internal bitstream filter state / flush internal buffers.
+ * Reset the internal bitstream filter state. Should be called e.g. when seeking.
*/
void av_bsf_flush(AVBSFContext *ctx);