camerabin: do not set imagebin sinkpad twice

If we already have a sinkpad, do not get a new one
This commit is contained in:
Teemu Katajisto 2009-11-16 15:02:03 +02:00 committed by Thiago Santos
parent 779330a6e5
commit ae57a90fe2

View file

@ -432,7 +432,8 @@ gst_camerabin_image_create_elements (GstCameraBinImage * img)
"ffmpegcolorspace"))) {
goto done;
}
img_sinkpad = gst_element_get_static_pad (csp, "sink");
if (!img_sinkpad)
img_sinkpad = gst_element_get_static_pad (csp, "sink");
}
if (img->app_enc) {