Skip to content
Snippets Groups Projects
Commit add8a2b5 authored by Silas Della Contrada's avatar Silas Della Contrada
Browse files

Updated README.md with additional decoders

parent 254e6fe9
No related branches found
No related tags found
No related merge requests found
...@@ -6,16 +6,17 @@ An object-oriented Qt interface for FFmpeg. ...@@ -6,16 +6,17 @@ An object-oriented Qt interface for FFmpeg.
### Current ### Current
- VAAPI accelerated decode - VAAPI, QSV, DXVA2 accelerated decode
- VAAPI accelerated encode (***WIP***)
- Frame sink for saving every n-th frame to file - Frame sink for saving every n-th frame to file
- QOpenGLWidget based renderer (***WIP***) - QOpenGLWidget based renderer
- OpenAL based audio output (***WIP***) - OpenAL based audio output (***unstable***)
### Planned ### Planned
- Reliable API Reference - Reliable API Reference
- Audio encode - Audio encode
- Other hardware accelerations - Other hardware accelerations (NVDEC/NVENC, AMF, VDPAU, MMAL)
- Frame filters for e.g. scaling or color <-> greyscale - Frame filters for e.g. scaling or color <-> greyscale
- Other renderers (e.g. QWidget, QGraphicsItem) - Other renderers (e.g. QWidget, QGraphicsItem)
- CMake module - CMake module
...@@ -60,13 +61,27 @@ include_directories(<path>) ...@@ -60,13 +61,27 @@ include_directories(<path>)
link_directories(<path>/build/AVQt) link_directories(<path>/build/AVQt)
``` ```
Dynamic link:
```
target_link_libraries(<target-name> AVQt)
```
Static link:
```
target_link_libraries(<target-name> AVQt_static)
```
## Examples ## Examples
A simple example for displaying video with the OpenGLRenderer and OpenALAudioOutput can be found A simple example for displaying video with the OpenGLRenderer and OpenALAudioOutput can be found in ``main.cpp``. It
in ``main.cpp``. It will be compiled along with the library by the commands above. will be compiled along with the library by the commands above.
### Run the example ### Run the example
In your build directory, run the example by: In your build directory, run the example by:
``` ```
./Player ./Player
``` ```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment