Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • P PyAV
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 37
    • Issues 37
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 26
    • Merge requests 26
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • PyAV
  • PyAV
  • Wiki
  • TODO HWAccel

TODO HWAccel · Changes

Page history
Updated TODO HWAccel (markdown) authored Oct 29, 2019 by Mike Boers's avatar Mike Boers
Hide whitespace changes
Inline Side-by-side
TODO-HWAccel.md
View page @ 66c77ffa
...@@ -7,18 +7,20 @@ av.open(..., hwaccel=True or 'auto') # automatically set up what it can. ...@@ -7,18 +7,20 @@ av.open(..., hwaccel=True or 'auto') # automatically set up what it can.
av.open(..., hwaccel='CUDA') # use cuda with default options av.open(..., hwaccel='CUDA') # use cuda with default options
av.open(..., hwaccel='/dev/gpu0') # use whatever device type with the given device av.open(..., hwaccel='/dev/gpu0') # use whatever device type with the given device
av.open(..., hwaccel=dict(type='CUDA', device='/dev/gpu0', ...)) # more options av.open(..., hwaccel=dict(type='CUDA', device='/dev/gpu0', ...)) # more options
av.open(..., hwaccel=('CUDA', '/dev/gpu0')) # shortcut for type and driver
``` ```
If there are no options to pass, consider using a tuple to pass the device: There are a few options:
- `vaapi`: `connection_type`, `kernel_driver`, and `driver`;
- `qsv`: `child_device` (and maybe forwards `kernel_driver` and `driver` to `vaapi`??);
- `d3d11va`: `debug`.
```
av.open(..., hwaccel=('CUDA', '/dev/gpu0'))
```
## TODO ## TODO
- [x] `av.hwdevice.HWDeviceType` enum - [x] `av.hwdevice.HWDeviceType` enum
- [x] `av.codec.hwconfig.HWConfig` - [x] `av.codec.hwconfig.HWConfig`
- [x] `av.codec.Codec.hardware_configs` tuple of `HWConfig` - [x] `av.codec.Codec.hardware_configs` tuple of `HWConfig`
- [ ] Determine that there are even options to bother passing; it doesn't look like it. - [√] Determine that there are even options to bother passing.
- [ ] What is `AVHWAccel` and can we use it?
- [ ] Design the `av.open` interface. - [ ] Design the `av.open` interface.
- [ ] Implement it. - [ ] Implement it.
Clone repository
  • GitHub Actions
  • Home
  • TODO Filters
  • TODO HWAccel
  • TODO _unsorted
  • TODO docs
  • TODO general
  • TODO time