]> git.sesse.net Git - ffmpeg/commit
af_compand: make sure request_frame always outputs at least one frame
authorAndrew Kelley <superjoe30@gmail.com>
Sun, 6 Jul 2014 05:24:43 +0000 (22:24 -0700)
committerAnton Khirnov <anton@khirnov.net>
Tue, 8 Jul 2014 07:54:00 +0000 (07:54 +0000)
commitd3cfd7aff86ee3d449ca68aba21d67b9b2136a9b
tree47996b6e1f7b3628d400a42a6dad102b2991f931
parenta9aee08d900f686e966c64afec5d88a7d9d130a3
af_compand: make sure request_frame always outputs at least one frame

This fixes a segmentation fault because request_frame in fifo.c assumes
that the call to ff_request_frame will populate fifo->root.next.
Before, it was possible for request_frame in af_compand to not do this,
resulting in a null pointer access. Now, request_frame in af_compand
always will return at least one frame or an error, as per the API
specifications in avfilter.h for request_frame.

Signed-off-by: Anton Khirnov <anton@khirnov.net>
libavfilter/af_compand.c