Changeset 163 for smplayer/vendor/current/src/inforeader.cpp
- Timestamp:
- May 15, 2014, 7:53:54 PM (12 years ago)
- File:
-
- 1 edited
-
smplayer/vendor/current/src/inforeader.cpp (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/inforeader.cpp
r140 r163 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 3Ricardo Villalba <[email protected]>2 Copyright (C) 2006-201 Ricardo Villalba <[email protected]> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 72 72 73 73 void InfoReader::getInfo() { 74 waiting_for_key = TRUE;74 waiting_for_key = ; 75 75 vo_list.clear(); 76 76 ao_list.clear(); … … 195 195 if ( rx_vo_key.indexIn(line) > -1 ) { 196 196 reading_type = VO; 197 waiting_for_key = FALSE;197 waiting_for_key = ; 198 198 qDebug("InfoReader::readLine: found key: vo"); 199 199 } … … 201 201 if ( rx_ao_key.indexIn(line) > -1 ) { 202 202 reading_type = AO; 203 waiting_for_key = FALSE;203 waiting_for_key = ; 204 204 qDebug("InfoReader::readLine: found key: ao"); 205 205 } … … 207 207 if ( rx_demuxer_key.indexIn(line) > -1 ) { 208 208 reading_type = DEMUXER; 209 waiting_for_key = FALSE;209 waiting_for_key = ; 210 210 qDebug("InfoReader::readLine: found key: demuxer"); 211 211 } … … 213 213 if ( rx_ac_key.indexIn(line) > -1 ) { 214 214 reading_type = AC; 215 waiting_for_key = FALSE;215 waiting_for_key = ; 216 216 qDebug("InfoReader::readLine: found key: ac"); 217 217 } … … 219 219 if ( rx_vc_key.indexIn(line) > -1 ) { 220 220 reading_type = VC; 221 waiting_for_key = FALSE;221 waiting_for_key = ; 222 222 qDebug("InfoReader::readLines: found key: vc"); 223 223 }
Note:
See TracChangeset
for help on using the changeset viewer.
