2020-01-02 02:23:11 +00:00
|
|
|
|
% notcurses_ncvisual(3)
|
|
|
|
|
% nick black <nickblack@linux.com>
|
2020-04-27 01:25:23 +00:00
|
|
|
|
% v1.3.3
|
2020-01-02 02:23:11 +00:00
|
|
|
|
|
|
|
|
|
# NAME
|
2020-01-04 07:37:55 +00:00
|
|
|
|
notcurses_ncvisual - notcurses multimedia
|
2020-01-02 02:23:11 +00:00
|
|
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
|
2020-04-19 22:46:32 +00:00
|
|
|
|
**#include <notcurses/notcurses.h>**
|
2020-01-02 02:23:11 +00:00
|
|
|
|
|
2020-01-04 07:37:55 +00:00
|
|
|
|
```c
|
|
|
|
|
typedef enum {
|
|
|
|
|
NCSCALE_NONE,
|
|
|
|
|
NCSCALE_SCALE,
|
|
|
|
|
NCSCALE_STRETCH,
|
|
|
|
|
} ncscale_e;
|
2020-01-14 20:50:17 +00:00
|
|
|
|
|
|
|
|
|
typedef int (*streamcb)(struct notcurses*, struct ncvisual*, void*);
|
2020-01-04 07:37:55 +00:00
|
|
|
|
```
|
|
|
|
|
|
2020-01-17 14:30:53 +00:00
|
|
|
|
**bool notcurses_canopen(const struct notcurses* nc);**
|
|
|
|
|
|
|
|
|
|
**struct ncvisual* ncplane_visual_open(struct ncplane* nc, const char* file,
|
2020-04-24 05:25:46 +00:00
|
|
|
|
nc_err_e* err);**
|
2020-01-17 14:30:53 +00:00
|
|
|
|
|
2020-01-04 07:37:55 +00:00
|
|
|
|
**struct ncvisual* ncvisual_open_plane(struct notcurses* nc, const char* file,
|
2020-04-24 05:25:46 +00:00
|
|
|
|
nc_err_e* err, int y, int x,
|
2020-01-04 07:37:55 +00:00
|
|
|
|
ncscale_e style);**
|
|
|
|
|
|
|
|
|
|
**void ncvisual_destroy(struct ncvisual* ncv);**
|
|
|
|
|
|
2020-04-24 07:17:34 +00:00
|
|
|
|
**nc_err_e ncvisual_decode(struct ncvisual* nc);**
|
2020-01-04 07:37:55 +00:00
|
|
|
|
|
|
|
|
|
**int ncvisual_render(const struct ncvisual* ncv, int begy, int begx,
|
|
|
|
|
int leny, int lenx);**
|
|
|
|
|
|
|
|
|
|
**int ncvisual_simple_streamer(struct notcurses* nc, struct ncvisual* ncv, void* curry);**
|
|
|
|
|
|
2020-04-24 05:25:46 +00:00
|
|
|
|
**int ncvisual_stream(struct notcurses* nc, struct ncvisual* ncv, nc_err_e* err,
|
2020-01-14 20:50:17 +00:00
|
|
|
|
float timescale, streamcb streamer, void* curry);**
|
2020-01-04 07:37:55 +00:00
|
|
|
|
|
|
|
|
|
**struct ncplane* ncvisual_plane(struct ncvisual* ncv);**
|
|
|
|
|
|
2020-01-02 02:23:11 +00:00
|
|
|
|
# DESCRIPTION
|
|
|
|
|
|
2020-03-24 22:43:10 +00:00
|
|
|
|
The frame will be scaled to the size of the ncplane per the ncscale_e style.
|
|
|
|
|
**ncvisual_render** actually blits the decoded frame to its associated plane.
|
|
|
|
|
A subregion of the frame can be specified using **begx**, **begy**, **lenx**,
|
|
|
|
|
and **leny**. To render the rectangle having its origin at **begy**, **begx**
|
|
|
|
|
and the lower-right corner, -1 can be supplied as **leny** and **lenx**.
|
|
|
|
|
{0, 0, -1, -1} will thus render the entire visual. Negative values for **begy**
|
|
|
|
|
or **begx** are an error. It is an error to specify any region beyond the
|
|
|
|
|
boundaries of the frame. Supplying zero for either **leny** or **lenx** will
|
|
|
|
|
result in a zero-area rendering.
|
2020-01-02 02:23:11 +00:00
|
|
|
|
|
|
|
|
|
# RETURN VALUES
|
|
|
|
|
|
2020-03-24 22:43:10 +00:00
|
|
|
|
**notcurses_canopen** returns true if this functionality is enabled, or false
|
2020-04-25 19:52:23 +00:00
|
|
|
|
if Notcurses was not built with multimedia support. **ncplane_visual_open** and
|
2020-03-24 22:43:10 +00:00
|
|
|
|
**ncvisual_open_plane** return an **ncvisual** object on success, or **NULL**
|
|
|
|
|
on failure. Success from these functions indicates that the specified **file**
|
|
|
|
|
was opened, and enough data was read to make a firm codec identification. It
|
2020-04-24 05:25:46 +00:00
|
|
|
|
does not mean that the entire file is properly-formed. On failure, **err**
|
2020-04-24 07:17:34 +00:00
|
|
|
|
will be updated. **ncvisual_decode** returns **NCERR_SUCCESS** on success, or
|
|
|
|
|
**NCERR_EOF** on end of file, or some other **nc_err_e** on failure. It
|
|
|
|
|
likewise updates **err** in the event of an error. **ncvisual_render** returns
|
|
|
|
|
the number of cells emitted, or -1 on error.
|
|
|
|
|
|
|
|
|
|
# NOTES
|
|
|
|
|
|
|
|
|
|
Multimedia decoding requires that Notcurses be built with either FFmpeg or
|
|
|
|
|
OpenImageIO support. What formats can be decoded is totally dependent on the
|
|
|
|
|
linked library.
|
2020-03-24 22:43:10 +00:00
|
|
|
|
|
2020-01-02 02:23:11 +00:00
|
|
|
|
# SEE ALSO
|
|
|
|
|
|
|
|
|
|
**notcurses(3)**, **notcurses_ncplane(3)**
|