[FFmpeg-trac] #375(avfilter:new): earwax audio filter generates wrong pts and af_sox filter can not be applied.

FFmpeg trac at avcodec.org
Mon Aug 1 09:47:04 CEST 2011


#375: earwax audio filter generates wrong pts and af_sox filter can not be
applied.
------------------------+-----------------------
Reporter:  chinshou     |       Owner:
    Type:  defect       |      Status:  new
Priority:  normal       |   Component:  avfilter
 Version:  unspecified  |  Resolution:
Keywords:               |  Blocked By:
Blocking:               |  Reproduced:  0
Analyzed:  0            |
------------------------+-----------------------

Comment (by chinshou):

 another problem
 in af_sox.c uninit will segfault when called, we should change it

 static av_cold void uninit(AVFilterContext *ctx)
 {
     sox_effect_t *effect = ((SoxContext*)ctx->priv)->effect;
     sox_delete_effect(effect);
     sox_quit();
     av_free(effect->in_encoding);
 }

 to
 static av_cold void uninit(AVFilterContext *ctx)
 {
     sox_effect_t *effect = ((SoxContext*)ctx->priv)->effect;
     av_free(effect->in_encoding);
     sox_delete_effect(effect);
     sox_quit();
 }

-- 
Ticket URL: <https://ffmpeg.org/trac/ffmpeg/ticket/375#comment:2>
FFmpeg <http://ffmpeg.org>
FFmpeg issue tracker


More information about the FFmpeg-trac mailing list