diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-21 22:10:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-21 22:10:11 +0000 |
commit | 4c4de9ca49c4aa99183c96abd333389f7a66f511 (patch) | |
tree | 71f4601c7d8d79d4d7c42e8fd941cb08dfce9289 | |
parent | 09b63a42a5b837c241abfec486baf22bfedf3f72 (diff) | |
download | ffmpeg-4c4de9ca49c4aa99183c96abd333389f7a66f511.tar.gz |
Better description for merge_ref().
Originally committed as revision 12173 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/formats.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavfilter/formats.c b/libavfilter/formats.c index cc7924326f..33fec163a5 100644 --- a/libavfilter/formats.c +++ b/libavfilter/formats.c @@ -21,7 +21,9 @@ #include "avfilter.h" -/** merge and update all the references */ +/** + * Add all refs from a to ret and destroy a. + */ static void merge_ref(AVFilterFormats *ret, AVFilterFormats *a) { int i; |