summaryrefslogtreecommitdiff
path: root/src/decoder.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-06-04 10:46:41 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2014-06-04 10:46:41 +0200
commit7a290431cf56a54886888d90c9b0aea65a7940de (patch)
tree80c5ee81f0e671a9f7f6390c6e8065dc505af60d /src/decoder.cc
parent9fa8ce5d62a24efa4e5b584f5a6cf921e3052be8 (diff)
Move all pixmaps into qrc.
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;