Changeset 165 for smplayer/trunk/src/inforeader.cpp
- Timestamp:
- May 16, 2014, 9:51:55 AM (11 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 163
- Property svn:mergeinfo changed
-
smplayer/trunk/src/inforeader.cpp
r142 r165 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 3Ricardo Villalba <rvm@users.sourceforge.net>2 Copyright (C) 2006-2014 Ricardo Villalba <rvm@users.sourceforge.net> 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 = true; 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 = false; 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 = false; 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 = false; 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 = false; 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 = false; 222 222 qDebug("InfoReader::readLines: found key: vc"); 223 223 }
Note:
See TracChangeset
for help on using the changeset viewer.