|
a/libupnpp/control/avtransport.cxx |
|
b/libupnpp/control/avtransport.cxx |
|
... |
|
... |
388 |
iacts |= TPA_Previous;
|
388 |
iacts |= TPA_Previous;
|
389 |
} else if (!it->compare("Seek")) {
|
389 |
} else if (!it->compare("Seek")) {
|
390 |
iacts |= TPA_Seek;
|
390 |
iacts |= TPA_Seek;
|
391 |
} else if (!it->compare("Stop")) {
|
391 |
} else if (!it->compare("Stop")) {
|
392 |
iacts |= TPA_Stop;
|
392 |
iacts |= TPA_Stop;
|
|
|
393 |
} else if (it->empty()) {
|
|
|
394 |
continue;
|
393 |
} else {
|
395 |
} else {
|
394 |
LOGERR("AVTransport::CTAStringToBits: unknown action "
|
396 |
LOGERR("AVTransport::CTAStringToBits: unknown action in " <<
|
395 |
<< *it << endl);
|
397 |
actions << " : [" << *it << "]" << endl);
|
396 |
}
|
398 |
}
|
397 |
}
|
399 |
}
|
398 |
return 0;
|
400 |
return 0;
|
399 |
}
|
401 |
}
|
400 |
|
402 |
|