summaryrefslogtreecommitdiff
path: root/libavfilter/avfiltergraph.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-04-04 20:06:31 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-04-04 20:06:31 +0000
commit81c25293c8646d930cb27b42ad15b4935a574540 (patch)
tree7f0db64b311726006681db34db37b486038f7861 /libavfilter/avfiltergraph.c
parent7b712850d2addea6e2b584bb223ffe74c08577bd (diff)
Need to copy over colorspace property too
Commited in SoC by Bobby Bingham on 2007-08-08 05:39:40 Originally committed as revision 12698 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r--libavfilter/avfiltergraph.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index dae2c979f0..abd41aa44f 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -240,6 +240,7 @@ static int graph_in_config_props(AVFilterLink *link)
/* copy link properties over to the dummy internal link */
link2->w = link->w;
link2->h = link->h;
+ link2->format = link->format;
if(!(config_props = link2->dst->input_pads[link2->dstpad].config_props))
return 0; /* FIXME? */