Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Remove traces of broken 1080p support
Browse files Browse the repository at this point in the history
  • Loading branch information
direc85 committed Sep 15, 2019
1 parent e410beb commit cf5b216
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions src/YTLocalVideoManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,6 @@ private slots:
quality = "720p";
} else if (map.contains("360p")) {
quality = "360p";
} else if (map.contains("1080p")) {
quality = "1080p";
} else {
Q_ASSERT(false);
onMetadataRequestError(response);
Expand Down
3 changes: 0 additions & 3 deletions src/YTRequest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -460,9 +460,6 @@ YTRequest::handleVideoInfoReply(QNetworkReply *reply)
case 22: // MP4 1280 x 720
outMap.insert("720p", streamDetailsMap);
break;
case 37: // MP4 1920 x 1080
outMap.insert("1080p", streamDetailsMap);
break;
}
}

Expand Down

0 comments on commit cf5b216

Please sign in to comment.