| 238 | } |
| 239 | |
| 240 | int CParameterRecord::SetVideoPath(const QString &szPath) |
| 241 | { |
| 242 | if(m_szVideoPath == szPath) |
| 243 | return 0; |
| 244 | m_szVideoPath = szPath; |
| 245 | SetModified(true); |
| 246 | QDir d(m_szVideoPath); |
| 247 | if(!d.exists()) |
| 248 | d.mkpath(m_szVideoPath); |
| 249 | return 0; |
| 250 | } |
| 251 | |
| 252 | #if HAVE_QT6_MULTIMEDIA |
| 253 | const QMediaFormat::FileFormat CParameterRecord::GetFileFormat() const |