diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-08-21 19:12:09 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-22 22:18:46 +0200 |
commit | 6e51e746c42607e35e8595bd66a8f50e1d9c40a4 (patch) | |
tree | 3829b47d6eafee6f0f1d76ec5dddbe0add9eb024 /libavfilter/vidstabutils.h | |
parent | d2a06242966d7a640d32d304a5653f4e1545f259 (diff) | |
download | ffmpeg-6e51e746c42607e35e8595bd66a8f50e1d9c40a4.tar.gz |
vidstab*: Remove accidentally exported av_2_vs_pixel_format()
Also correctly namespace other functions in vidstabutils, and decrease
difference from Libav.
Initial-patch-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vidstabutils.h')
-rw-r--r-- | libavfilter/vidstabutils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vidstabutils.h b/libavfilter/vidstabutils.h index f1c20e6c65..93278f680d 100644 --- a/libavfilter/vidstabutils.h +++ b/libavfilter/vidstabutils.h @@ -28,9 +28,9 @@ /* ** some conversions from avlib to vid.stab constants and functions *** */ /** converts the pixelformat of avlib into the one of the vid.stab library */ -VSPixelFormat av_2_vs_pixel_format(AVFilterContext *ctx, enum AVPixelFormat pf); +VSPixelFormat ff_av2vs_pixfmt(AVFilterContext *ctx, enum AVPixelFormat pf); /** sets the memory allocation function and logging constants to av versions */ -void vs_set_mem_and_log_functions(void); +void ff_vs_init(void); #endif |