Skip to content
  • George Kiagiadakis's avatar
    vpxenc: discard frames that have been dropped by libvpx · 4abc746f
    George Kiagiadakis authored and Sebastian Dröge's avatar Sebastian Dröge committed
    This fixes a memory leak. When dropframe-threshold has been set,
    libvpx may output less frames than the input ones, which causes
    some GstVideoCodecFrames to queue up in GstVideoEncoder's internal
    frame queue with no chance of ever being all released. And because
    the frames keep references to the input buffers, the input buffer
    pool keeps allocating new buffers and memory usage grows very fast.
    For example the following pipeline's memory usage grows at a rate
    of about 1GB per minute!
    
    videotestsrc ! capsfilter caps=video/x-raw,width=1920,height=1080,framerate=30/1,format=I420 ! \
      vp8enc target-bitrate=1000000 end-usage=cbr dropframe-threshold=95 ! fakesink
    
    https://bugzilla.gnome.org/show_bug.cgi?id=783086
    4abc746f