fix passing frames if format matches
Stefan Schuermans

Stefan Schuermans commited on 2011-12-27 00:32:44
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -111,7 +111,7 @@ void Resizer::procFrame(stBlinkenFrame *pFrame)
111 111
       BlinkenFrameGetHeight(pFrame) == height &&
112 112
       BlinkenFrameGetChannels(pFrame) == channels &&
113 113
       BlinkenFrameGetMaxval(pFrame) == maxval) {
114
-    m_fileOutStream.setFrame(NULL);
114
+    m_fileOutStream.setFrame(pFrame);
115 115
     return;
116 116
   }
117 117
 
118 118