diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-27 04:45:04 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-27 04:49:09 +0200 |
commit | b96c9513f35a109b6ee06e6e22deea84c5fdab4b (patch) | |
tree | ad12ae34c14c935e73d9a9cbf910bd189fa8a89a /libavcodec/snow.h | |
parent | 134beb9e02222a33fc2534176c64aeeed0549851 (diff) | |
download | ffmpeg-b96c9513f35a109b6ee06e6e22deea84c5fdab4b.tar.gz |
avcodec/snow: factor ff_snow_get_buffer() out
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/snow.h')
-rw-r--r-- | libavcodec/snow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/snow.h b/libavcodec/snow.h index d0e5c5ba0b..a9c8518d75 100644 --- a/libavcodec/snow.h +++ b/libavcodec/snow.h @@ -232,6 +232,7 @@ int ff_snow_frame_start(SnowContext *s); void ff_snow_pred_block(SnowContext *s, uint8_t *dst, uint8_t *tmp, ptrdiff_t stride, int sx, int sy, int b_w, int b_h, BlockNode *block, int plane_index, int w, int h); +int ff_snow_get_buffer(SnowContext *s, AVFrame *frame); /* common inline functions */ //XXX doublecheck all of them should stay inlined |