Browse Source

ffmpeg_filter: do not pick evil path for trim filters

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.1
Paul B Mahol 12 years ago
parent
commit
d4ab1292e9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ffmpeg_filter.c

+ 2
- 2
ffmpeg_filter.c View File

@@ -302,11 +302,11 @@ static int insert_trim(int64_t start_time, int64_t duration,
return AVERROR(ENOMEM); return AVERROR(ENOMEM);


if (duration != INT64_MAX) { if (duration != INT64_MAX) {
ret = av_opt_set_double(ctx, "duration", (double)duration / 1e6,
ret = av_opt_set_int(ctx, "durationi", duration,
AV_OPT_SEARCH_CHILDREN); AV_OPT_SEARCH_CHILDREN);
} }
if (ret >= 0 && start_time != AV_NOPTS_VALUE) { if (ret >= 0 && start_time != AV_NOPTS_VALUE) {
ret = av_opt_set_double(ctx, "start", (double)start_time / 1e6,
ret = av_opt_set_int(ctx, "starti", start_time,
AV_OPT_SEARCH_CHILDREN); AV_OPT_SEARCH_CHILDREN);
} }
if (ret < 0) { if (ret < 0) {


Loading…
Cancel
Save