mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-01 02:36:23 -04:00
Added "previewable" for .webm and .weba extension
- .webm -- basically is full video container (video+audio) - .weba -- is only audio stream
This commit is contained in:
parent
5d3737f9b4
commit
cae7797b55
1 changed files with 2 additions and 0 deletions
|
@ -108,6 +108,8 @@ bool misc::isPreviewable(QString extension)
|
||||||
if(extension == "WAV") return true;
|
if(extension == "WAV") return true;
|
||||||
if(extension == "WMA") return true;
|
if(extension == "WMA") return true;
|
||||||
if(extension == "WMV") return true;
|
if(extension == "WMV") return true;
|
||||||
|
if(extension == "WEBM") return true;
|
||||||
|
if(extension == "WEBA") return true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue