Control socket: report when video prop change

This commit is contained in:
Martin Pulec
2016-05-02 11:26:00 +02:00
parent 6ffaff45ff
commit 08be232a19
6 changed files with 59 additions and 26 deletions

View File

@@ -222,3 +222,10 @@ bool video_desc::operator!() const
return color_spec == VIDEO_CODEC_NONE;
}
video_desc::operator string() const
{
ostringstream oss;
oss << *this;
return oss.str();
}