summaryrefslogtreecommitdiff
path: root/src/decoder.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/decoder.cc')
-rw-r--r--src/decoder.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder.cc b/src/decoder.cc
index f32c18a..9e34a28 100644
--- a/src/decoder.cc
+++ b/src/decoder.cc
@@ -92,8 +92,8 @@ void Decoder::decode()
bool skip_frames = config->readInt("player_skip_frames");
- dv1394 dv1394_stream = dv1394(info); // Use default port and channel.
- dvfile dvfile_stream = dvfile(info);
+ dv1394 dv1394_stream(info); // Use default port and channel.
+ dvfile dvfile_stream(info);
if(dv1394_stream.connect()) {
// Use the dv1394 stream for input.
dvstream = &dv1394_stream;