summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-11-08 12:32:39 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-11-08 12:32:39 +0000
commit24de0edbd589b7cb0da51260073a1a28bb6a2619 (patch)
treef808dd5e52a5cd81742f76e2b722e4dde981792c /tools
parent7b3937360efd16ae87fa44fc4633a74913b5ac4d (diff)
Rename avfilter_destroy() as avfilter_free().
The new name is shorter and more consistent with the FFmpeg API, and sounds less evil. Originally committed as revision 25707 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tools')
-rw-r--r--tools/lavfi-showfiltfmts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lavfi-showfiltfmts.c b/tools/lavfi-showfiltfmts.c
index 34a6208a75..19bb6f6819 100644
--- a/tools/lavfi-showfiltfmts.c
+++ b/tools/lavfi-showfiltfmts.c
@@ -93,7 +93,7 @@ int main(int argc, char **argv)
av_pix_fmt_descriptors[fmts->formats[j]].name);
}
- avfilter_destroy(filter_ctx);
+ avfilter_free(filter_ctx);
fflush(stdout);
return 0;
}