diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-22 11:56:55 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-06-25 13:42:47 +0200 |
commit | 43583fb85c75ce66f57a6654ca65b55c1c026aae (patch) | |
tree | d906c1fb92c24673a2e4e973920afd20196a2f57 /libavfilter/version.h | |
parent | 972cad77fa13ae312650dd0b7b99e484ffcb7949 (diff) | |
download | ffmpeg-43583fb85c75ce66f57a6654ca65b55c1c026aae.tar.gz |
lavfi/avcodec: deprecate avfilter_fill_frame_from_*_buffer_ref API
Deprecate functions:
avfilter_fill_frame_from_buffer_ref
avfilter_fill_frame_from_audio_buffer_ref
avfilter_fill_frame_from_video_buffer_ref
and schedule to drop them at the next API major bump.
The function avfilter_copy_buf_props() should be used instead.
Diffstat (limited to 'libavfilter/version.h')
-rw-r--r-- | libavfilter/version.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/version.h b/libavfilter/version.h index a5aa29ce07..a3f6816ec2 100644 --- a/libavfilter/version.h +++ b/libavfilter/version.h @@ -74,5 +74,8 @@ #ifndef FF_API_FOO_COUNT #define FF_API_FOO_COUNT (LIBAVFILTER_VERSION_MAJOR < 4) #endif +#ifndef FF_API_FILL_FRAME +#define FF_API_FILL_FRAME (LIBAVFILTER_VERSION_MAJOR < 4) +#endif #endif // AVFILTER_VERSION_H |