-
Notifications
You must be signed in to change notification settings - Fork 759
Fix HW accelerated encoder #3140
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
Conversation
|
This pull request was exported from Phabricator. Differential Revision: D43759162 |
Summary: Pull Request resolved: pytorch#3140 pytorch#3120 introduced regression in GPU encoder. This happened because previously source AVPixelFormat (expected channel order of input tensor) and AVCodecContext (encoding format) in converter (module to copy input tensor to buffer), even though converter does not need to konw about the encoding format. This commit fixes the issue and make sure that converter does not recieve codec context. Differential Revision: D43759162 fbshipit-source-id: a4d76034312d42ce2267daeafe84d87ef91200cb
|
This pull request was exported from Phabricator. Differential Revision: D43759162 |
Summary: Pull Request resolved: pytorch#3140 pytorch#3120 introduced regression in GPU encoder. This happened because previously source AVPixelFormat (expected channel order of input tensor) and AVCodecContext (encoding format) in converter (module to copy input tensor to buffer), even though converter does not need to konw about the encoding format. This commit fixes the issue and make sure that converter does not recieve codec context. Reviewed By: nateanl Differential Revision: D43759162 fbshipit-source-id: c3b2a8b5afad0c8e084a6b58c1c073b487da5f43
|
This pull request was exported from Phabricator. Differential Revision: D43759162 |
|
This pull request has been merged in 41e3b93. |
|
Hey @None. |
Summary: Similar to pytorch#3140, only provide objects which are semantically related to the operation performed by AudioConverter. Differential Revision: D43781012 fbshipit-source-id: e60d3afab3cf224aca6140efa5f4e09088e6859f
Summary: Similar to pytorch#3140, only provide objects which are semantically related to the operation performed by AudioConverter. Reviewed By: xiaohui-zhang Differential Revision: D43781012 fbshipit-source-id: b70d76b6886fe59ca21e47c6c8610aac6e96162e
Summary: Similar to pytorch#3140, only provide objects which are semantically related to the operation performed by AudioConverter. Differential Revision: D43781012 fbshipit-source-id: e60d3afab3cf224aca6140efa5f4e09088e6859f
Summary:
#3120 introduced regression in GPU encoder.
This happened because previously source AVPixelFormat (expected channel order of
input tensor) and AVCodecContext (encoding format) in converter (module to copy
input tensor to buffer), even though converter does not need to konw about the
encoding format.
This commit fixes the issue and make sure that converter does not recieve
codec context.
Differential Revision: D43759162