diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-10-30 17:59:01 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-11-02 10:42:54 +0100 |
commit | 20566eb0f0e3b0f538bcf68fca42e67afaa0dec6 (patch) | |
tree | d06fd70d43d1d8ad060f36c02861579ffdca5bfd /libavformat/cutils.c | |
parent | 124e28847b95a70724399c8473dd778b5c4c8ffc (diff) | |
download | ffmpeg-20566eb0f0e3b0f538bcf68fca42e67afaa0dec6.tar.gz |
Replace outdated references to ffmpeg tool with avconv.
Diffstat (limited to 'libavformat/cutils.c')
-rw-r--r-- | libavformat/cutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/cutils.c b/libavformat/cutils.c index 092aa8a1a9..f94442f1bd 100644 --- a/libavformat/cutils.c +++ b/libavformat/cutils.c @@ -24,7 +24,7 @@ /* add one element to a dynamic array */ void ff_dynarray_add(intptr_t **tab_ptr, int *nb_ptr, intptr_t elem) { - /* see similar ffmpeg.c:grow_array() */ + /* see similar avconv.c:grow_array() */ int nb, nb_alloc; intptr_t *tab; |