[FFmpeg-soc] [soc]: r1425 - libavfilter/avfiltergraph.c
vitor
subversion at mplayerhq.hu
Tue Oct 30 22:15:19 CET 2007
Author: vitor
Date: Tue Oct 30 22:15:19 2007
New Revision: 1425
Log:
Silence warning caused by my last commit
Modified:
libavfilter/avfiltergraph.c
Modified: libavfilter/avfiltergraph.c
==============================================================================
--- libavfilter/avfiltergraph.c (original)
+++ libavfilter/avfiltergraph.c Tue Oct 30 22:15:19 2007
@@ -446,7 +446,7 @@ static AVFilterContext *create_filter_wi
av_log(NULL, AV_LOG_INFO, "creating filter \"%s\" with args \"%s\"\n",
name, args ? args : "(none)");
- if(ret = avfilter_open(avfilter_get_by_name(name), NULL)) {
+ if((ret = avfilter_open(avfilter_get_by_name(name), NULL))) {
if(avfilter_init_filter(ret, args, opaque)) {
av_log(NULL, AV_LOG_ERROR, "error initializing filter!\n");
avfilter_destroy(ret);
More information about the FFmpeg-soc
mailing list