Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/strukturag/libde265-ffmpeg
h.265 codec for ffmpeg using libde265
https://github.com/strukturag/libde265-ffmpeg
Last synced: 16 days ago
JSON representation
h.265 codec for ffmpeg using libde265
- Host: GitHub
- URL: https://github.com/strukturag/libde265-ffmpeg
- Owner: strukturag
- Created: 2014-01-09T15:02:10.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-06-09T12:25:18.000Z (over 7 years ago)
- Last Synced: 2024-08-25T00:55:07.363Z (3 months ago)
- Language: C
- Size: 44.9 KB
- Stars: 40
- Watchers: 19
- Forks: 25
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libde265-ffmpeg
HEVC/H.265 codec for ffmpeg / libavcodec using libde265
## Building
- Add the `libde265dec.c` to your projects source files.
- Add the folder containing `libde265dec.h` to your include path.
- Change your initialization code (where you call `av_register_all`) to
also call `libde265dec_register`:```
#includevoid initialize(void) {
...
av_register_all();
libde265dec_register();
...
}
```
- This will replace any existing HEVC/H.265 decoders with libde265.
- Make sure the `libde265` library can be loaded when your application
runs.## Dependencies
In addition to a compiler and the public ffmpeg/libavcodec headers,
a couple of other packages must be installed in order to compile the
codec:
- libde265-dev (>= 0.6)Copyright (c) 2014-2015 struktur AG