Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (43)

Sur d’autres sites (8557)

  • ffmpeg mod if case in source code

    5 février 2014, par Stephan Pokorny

    I'm working on a specific ffmpeg mod where I have to auto execute an extension within the binary call.

    Specific it is the extension -isync -af aresample=async=1000

    The binary is called by another compiled tool which escapes my input.

    For that reason I wanna rewrite the filter rule to execude in any case.

    if (audio_sync_method > 0) {
       char args[256] = {0};

       av_strlcatf(args, sizeof(args), "async=%d", audio_sync_method);
       if (audio_drift_threshold != 0.1)
           av_strlcatf(args, sizeof(args), ":min_hard_comp=%f", audio_drift_threshold);
       if (!fg->reconfiguration)
           av_strlcatf(args, sizeof(args), ":first_pts=0");
       AUTO_INSERT_FILTER_INPUT("-async", "aresample", args);
    }

    Can somebody help me to execute this AUTO_INSERT_FILTER in any case which could happen.

    I already played around to answer any if loop with the AUTO_INSERT_FILTER_INPUT("-async", "aresample", 1000) ;

    When I launch I can see that it is calling the fresh compiled version of ffmpeg but not activating the filter

    Thanks

    Stephan

  • Revision bd994ed42d : Fixing PRED_SWITCHABLE_INTERP case in vp9_get_pred_context function. Adding xd-

    24 avril 2013, par Dmitry Kovalev

    Changed Paths : Modify /vp9/common/vp9_pred_common.c Fixing PRED_SWITCHABLE_INTERP case in vp9_get_pred_context function. Adding xd->up_available as additional check for above context. Change-Id : If5654e4cae184b9c369b7b2e08076cb2951d00ed

  • vsrc_testsrc : Fix case without a specified duration

    21 septembre 2012, par Michael Niedermayer

    vsrc_testsrc : Fix case without a specified duration