diff options
Diffstat (limited to 'src/decoder.cc')
-rw-r--r-- | src/decoder.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/decoder.cc b/src/decoder.cc index 4707c90..ac076a4 100644 --- a/src/decoder.cc +++ b/src/decoder.cc @@ -25,6 +25,10 @@ */ /* * $Log$ + * Revision 1.23 2005/05/02 09:58:43 deva + * + * Fixed initial values of the stae bools. + * * Revision 1.22 2005/05/02 09:50:22 deva * Rewrote freeze, shoot and record flags, from encoder to frame. * @@ -63,6 +67,8 @@ Decoder::Decoder(Error* err, player_queue = gplayer_queue; mutex = gmutex; running = grunning; + b_shoot = false; + b_freeze = false; b_record = false; // Initially no recording is done. } |