Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# OMX image viewer

A GPU accelerated image viewer for the Raspberry Pi.
A GPU accelerated image viewer for the Raspberry Pi.

Due to deprecation of the OpenMax API and the unavailability of those libraries on arm64, this project only supports 32bit operating systems.

## Building

You will need the development header for libjpeg and libpng
(Debian: libjpeg8-dev, libpng12-dev). Then build it on the Pi with:
(Debian: libjpeg-dev, libpng-dev). Then build it on the Pi with:

make ilclient
make
Expand Down
2 changes: 1 addition & 1 deletion omx_render.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ typedef struct OMX_RENDER_DISP_CONF{

} OMX_RENDER_DISP_CONF;

struct OMX_RENDER_TRANSITION{
typedef struct OMX_RENDER_TRANSITION{
enum transition_t{NONE, BLEND} type;
int durationMs;

Expand Down