Skip to content

Commit 8ad426e

Browse files
Revert "UI: also show frame rate tag if frame rate < 30 (like 15)"
This reverts commit f6fa12b.
1 parent e11aa38 commit 8ad426e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

library/src/commonMain/kotlin/project/pipepipe/app/helper/FormatHelper.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ object FormatHelper {
6464
* Format video display label with codec, resolution, and optional frame rate
6565
*/
6666
fun formatVideoLabel(codecName: String, resolution: String, frameRate: Float? = null): String {
67-
return if (frameRate != null && frameRate.toInt() != 30) {
67+
return if (frameRate != null && frameRate.toInt() > 30) {
6868
"$codecName $resolution${frameRate.toInt()}"
6969
} else {
7070
"$codecName $resolution"

0 commit comments

Comments
 (0)