Changeset 5f5126e1b154eaa5004f7a7ea76e687f01aac82f
- Timestamp:
- 12/30/07 23:35:09
(11 months ago)
- Author:
- Jason Michalski <armooo@armooo.net>
- git-committer:
- Jason Michalski <armooo@armooo.net> 1199079309 -0600
- git-parent:
[921bcd3431cf0fb52c273471d38b572775e17f28]
- git-author:
- William McBrine <wmcbrine@gmail.com> 1199041495 -0500
- Message:
Added valid HD heights and widths
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r921bcd3 |
r5f5126e |
|
| 100 | 100 | |
|---|
| 101 | 101 | def getValidWidths(): |
|---|
| 102 | | return [1440, 720, 704, 544, 480, 352] |
|---|
| | 102 | return [1920, 1440, 1280, 720, 704, 544, 480, 352] |
|---|
| 103 | 103 | |
|---|
| 104 | 104 | def getValidHeights(): |
|---|
| 105 | | return [720, 480] # Technically 240 is also supported |
|---|
| | 105 | return [1080, 720, 480] # Technically 240 is also supported |
|---|
| 106 | 106 | |
|---|
| 107 | 107 | # Return the number in list that is nearest to x |
|---|