diff options
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r-- | libavfilter/internal.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 40ffef5..d1bcb03 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -135,8 +135,12 @@ struct AVFilterPad { * and should do its processing. * * Input audio pads only. + * + * @return >= 0 on success, a negative AVERROR on error. This function + * must ensure that samplesref is properly unreferenced on error if it + * hasn't been passed on to another filter. */ - void (*filter_samples)(AVFilterLink *link, AVFilterBufferRef *samplesref); + int (*filter_samples)(AVFilterLink *link, AVFilterBufferRef *samplesref); /** * Frame poll callback. This returns the number of immediately available |