[FFmpeg-cvslog] lavfi/select: assign NAN to ignored values
Stefano Sabatini
git at videolan.org
Thu Dec 13 00:20:44 CET 2012
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Wed Dec 12 00:28:09 2012 +0100| [43912625e0103f79674a1f36cc4572204f94e9fc] | committer: Stefano Sabatini
lavfi/select: assign NAN to ignored values
Also log scene value. Improve debugging.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=43912625e0103f79674a1f36cc4572204f94e9fc
---
libavfilter/f_select.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/libavfilter/f_select.c b/libavfilter/f_select.c
index 6628d6d..11ee988 100644
--- a/libavfilter/f_select.c
+++ b/libavfilter/f_select.c
@@ -197,6 +197,12 @@ static int config_input(AVFilterLink *inlink)
select->var_values[VAR_INTERLACE_TYPE_T] = INTERLACE_TYPE_T;
select->var_values[VAR_INTERLACE_TYPE_B] = INTERLACE_TYPE_B;
+ select->var_values[VAR_PICT_TYPE] = NAN;
+ select->var_values[VAR_INTERLACE_TYPE] = NAN;
+ select->var_values[VAR_SCENE] = NAN;
+ select->var_values[VAR_CONSUMED_SAMPLES_N] = NAN;
+ select->var_values[VAR_SAMPLES_N] = NAN;
+
select->var_values[VAR_SAMPLE_RATE] =
inlink->type == AVMEDIA_TYPE_AUDIO ? inlink->sample_rate : NAN;
@@ -298,11 +304,12 @@ static int select_frame(AVFilterContext *ctx, AVFilterBufferRef *ref)
switch (inlink->type) {
case AVMEDIA_TYPE_VIDEO:
- av_log(inlink->dst, AV_LOG_DEBUG, " interlace_type:%c pict_type:%c",
+ av_log(inlink->dst, AV_LOG_DEBUG, " interlace_type:%c pict_type:%c scene:%f",
select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_P ? 'P' :
select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_T ? 'T' :
select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_B ? 'B' : '?',
- av_get_picture_type_char(select->var_values[VAR_PICT_TYPE]));
+ av_get_picture_type_char(select->var_values[VAR_PICT_TYPE]),
+ select->var_values[VAR_SCENE]);
break;
case AVMEDIA_TYPE_AUDIO:
av_log(inlink->dst, AV_LOG_DEBUG, " samples_n:%d consumed_samples_n:%d",
More information about the ffmpeg-cvslog
mailing list