-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix format change error for YUY2 #984
fix format change error for YUY2 #984
Conversation
@NaveenThum is added to the review. #Closed |
@SangChoe is added to the review. #Closed |
@chrilaMSFT is added to the review. #Closed |
@kasumman is added to the review. #Closed |
@LPBourret is added to the review. #Closed |
@j-leungyy is added to the review. #Closed |
@gerritsMSFT is added to the review. #Closed |
GUID m_streamCategory; | ||
ULONG m_cRef; | ||
protected: | ||
IMFDeviceTransform* m_pTransform; /* Weak reference to the the device MFT */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
on the member m_pTransform itself as well
@@ -473,6 +473,7 @@ class CDecoderTee : public CVideoProcTee { | |||
DWORD m_lNeedInputRequest; | |||
GUID m_streamCategory; // Needed for bind flags | |||
BOOL m_bXvpAdded; | |||
ComPtr<CVideoProcTee> m_spXvp; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't want to change too much.
I guess these changes are not in OS repo yet. Is the plan to mirror these changes once they go on GitHub? |
@@ -1292,7 +1292,10 @@ UpdateAllocatorAttributes( | |||
level = spDevice->GetFeatureLevel(); | |||
dwBindFlags |= ((level >= D3D_FEATURE_LEVEL_10_0) ? D3D11_BIND_SHADER_RESOURCE : 0); | |||
} | |||
|
|||
else |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is a fallback value
I will make these changes after I check this in #Resolved |
No description provided.