[FFmpeg-cvslog] lavc/internal: add FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM
Matthieu Bouron
git at videolan.org
Sun Nov 15 10:24:36 CET 2015
ffmpeg | branch: master | Matthieu Bouron <matthieu.bouron at stupeflix.com> | Mon Nov 2 10:27:58 2015 +0100| [e162542e156ac02c96c80c3dd47bdcd13ad20dbf] | committer: Matthieu Bouron
lavc/internal: add FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM
The decoder extracts and fills its parameters even if the frame is
skipped due to the skip_frame setting.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e162542e156ac02c96c80c3dd47bdcd13ad20dbf
---
libavcodec/internal.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
index 0abe17f..9ab507a 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -53,6 +53,11 @@
* from the input AVPacket.
*/
#define FF_CODEC_CAP_SETS_PKT_DTS (1 << 2)
+/**
+ * The decoder extracts and fills its parameters even if the frame is
+ * skiped due to the skip_frame setting.
+ */
+#define FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM (1 << 3)
#ifdef TRACE
# define ff_tlog(ctx, ...) av_log(ctx, AV_LOG_TRACE, __VA_ARGS__)
More information about the ffmpeg-cvslog
mailing list