Commit ed69c69a authored by Hendrik Leppkes's avatar Hendrik Leppkes Committed by Michael Niedermayer

lavfi/avcodec: fix API version checks

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 3c7f6699
...@@ -134,7 +134,7 @@ int avfilter_copy_buf_props(AVFrame *dst, const AVFilterBufferRef *src) ...@@ -134,7 +134,7 @@ int avfilter_copy_buf_props(AVFrame *dst, const AVFilterBufferRef *src)
return 0; return 0;
} }
#ifdef FF_API_FILL_FRAME #if FF_API_FILL_FRAME
int avfilter_fill_frame_from_audio_buffer_ref(AVFrame *frame, int avfilter_fill_frame_from_audio_buffer_ref(AVFrame *frame,
const AVFilterBufferRef *samplesref) const AVFilterBufferRef *samplesref)
{ {
......
...@@ -58,7 +58,7 @@ AVFilterBufferRef *avfilter_get_buffer_ref_from_frame(enum AVMediaType type, ...@@ -58,7 +58,7 @@ AVFilterBufferRef *avfilter_get_buffer_ref_from_frame(enum AVMediaType type,
const AVFrame *frame, const AVFrame *frame,
int perms); int perms);
#ifdef FF_API_FILL_FRAME #if FF_API_FILL_FRAME
/** /**
* Fill an AVFrame with the information stored in samplesref. * Fill an AVFrame with the information stored in samplesref.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment