diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-27 21:57:16 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-27 21:57:16 +0000 |
commit | 486adc55c0faa6ebc693645dbbeb1c11d2768280 (patch) | |
tree | 04a1e236d6c8357c6e4f2f5ba317e79612de4b25 /libavfilter/avfilter.h | |
parent | fa6f4ebc08d228ce9795f1f4178d68e31407aeb9 (diff) | |
download | ffmpeg-486adc55c0faa6ebc693645dbbeb1c11d2768280.tar.gz |
Use more expressive names for the avfilter_insert_filter() in and out
parameters.
Originally committed as revision 25235 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index b1d565b103..6fc7500809 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -783,12 +783,12 @@ void avfilter_destroy(AVFilterContext *filter); * * @param link the link into which the filter should be inserted * @param filt the filter to be inserted - * @param in the input pad on the filter to connect - * @param out the output pad on the filter to connect + * @param filt_srcpad_idx the input pad on the filter to connect + * @param filt_dstpad_idx the output pad on the filter to connect * @return zero on success */ int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt, - unsigned in, unsigned out); + unsigned filt_srcpad_idx, unsigned filt_dstpad_idx); /** * Insert a new pad. |