GNOME Bugzilla – Bug 611782
[regression] Segmentation fault in demuxers
Last modified: 2010-03-04 08:13:29 UTC
The demuxers are using the 'old' way of freeing a AVPacket (pkt.destruct(&pkt)). This behaviour has subtlely changed and pkt might be NULL, resulting in a segmentation fault. We must use av_packet_free() to properly free them
Created attachment 155209 [details] [review] ffmpegdemux: Use av_free_packet. Fixes #611782
commit 7162290afe2de9982dcb9ef65c37cf68ba7484e7 Author: Edward Hervey <bilboed@bilboed.com> Date: Thu Mar 4 08:58:36 2010 +0100 ffmpegdemux: Use av_free_packet. Fixes #611782