Cosmetics in the y4m video provider
Originally committed to SVN as r3177.
This commit is contained in:
parent
c329c4e047
commit
9e150d282d
2 changed files with 6 additions and 6 deletions
|
@ -242,8 +242,8 @@ void YUV4MPEGVideoProvider::ParseFileHeader(const std::vector<wxString>& tags) {
|
|||
else if (tags.at(i).StartsWith(_T("C"), &tag)) {
|
||||
// technically this should probably be case sensitive,
|
||||
// but being liberal in what you accept doesn't hurt
|
||||
if (!tag.CmpNoCase(_T("420jpeg"))) t_pixfmt = Y4M_PIXFMT_420JPEG;
|
||||
else if (!tag.CmpNoCase(_T("420"))) t_pixfmt = Y4M_PIXFMT_420JPEG; // is this really correct?
|
||||
if (!tag.CmpNoCase(_T("420"))) t_pixfmt = Y4M_PIXFMT_420JPEG; // is this really correct?
|
||||
else if (!tag.CmpNoCase(_T("420jpeg"))) t_pixfmt = Y4M_PIXFMT_420JPEG;
|
||||
else if (!tag.CmpNoCase(_T("420mpeg2"))) t_pixfmt = Y4M_PIXFMT_420MPEG2;
|
||||
else if (!tag.CmpNoCase(_T("420paldv"))) t_pixfmt = Y4M_PIXFMT_420PALDV;
|
||||
else if (!tag.CmpNoCase(_T("411"))) t_pixfmt = Y4M_PIXFMT_411;
|
||||
|
|
|
@ -51,9 +51,9 @@ class YUV4MPEGVideoProvider : public VideoProvider {
|
|||
private:
|
||||
enum Y4M_PixelFormat {
|
||||
Y4M_PIXFMT_NONE = -1,
|
||||
Y4M_PIXFMT_420JPEG,
|
||||
Y4M_PIXFMT_420MPEG2,
|
||||
Y4M_PIXFMT_420PALDV,
|
||||
Y4M_PIXFMT_420JPEG, // afaict the only difference between
|
||||
Y4M_PIXFMT_420MPEG2, // these three is the chroma sample location,
|
||||
Y4M_PIXFMT_420PALDV, // and nobody cares about that.
|
||||
Y4M_PIXFMT_411,
|
||||
Y4M_PIXFMT_422,
|
||||
Y4M_PIXFMT_444,
|
||||
|
|
Loading…
Reference in a new issue