diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-10 03:08:19 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-10 03:08:19 +0200 |
commit | 7b0d362567983c7b22db98177be721bfe4bfec6e (patch) | |
tree | 4e0c1a787e0dd053b2dcb42acccb062e10a9017a /libavfilter/video.h | |
parent | 8836b41a782ff832bc9ff500d2f0b54e309475a3 (diff) | |
download | ffmpeg-7b0d362567983c7b22db98177be721bfe4bfec6e.tar.gz |
libavfilter: make ff_null_start_frame_keep_ref() a non static inline function.
Its only used through the start_frame pointer and thus cannot be inlined easily.
It also appears to break compilation with some unidentified compiler on darwin.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/video.h')
-rw-r--r-- | libavfilter/video.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavfilter/video.h b/libavfilter/video.h index 1fed45f925..b6886a6e8d 100644 --- a/libavfilter/video.h +++ b/libavfilter/video.h @@ -45,6 +45,11 @@ void ff_null_end_frame(AVFilterLink *link); void ff_start_frame(AVFilterLink *link, AVFilterBufferRef *picref); /** + * Pass video frame along and keep an internal reference for later use. + */ +void ff_null_start_frame_keep_ref(AVFilterLink *inlink, AVFilterBufferRef *picref); + +/** * Notify the next filter that the current frame has finished. * * @param link the output link the frame was sent over |