notcurses-view: stop() before printing error

implement ncvisual_render()
This commit is contained in:
nick black 2019-12-01 12:59:16 -05:00 committed by Nick Black
parent d106ebf0d3
commit 28fac736bb
7 changed files with 136 additions and 48 deletions

View File

@ -600,16 +600,15 @@ API struct ncvisual* ncplane_visual_open(struct ncplane* nc, const char* file,
// can be neither decoded nor rendered any further. // can be neither decoded nor rendered any further.
API void ncvisual_destroy(struct ncvisual* ncv); API void ncvisual_destroy(struct ncvisual* ncv);
// extract the next frame from an ncvisual. returns NULL on end of file, writing // extract the next frame from an ncvisual. returns NULL on end of file,
// AVERROR_EOF to 'averr'. returns NULL on a decoding or allocation error, // writing AVERROR_EOF to 'averr'. returns NULL on a decoding or allocation
// placing the AVError in 'averr'. this frame is invalidated by a subsequent // error, placing the AVError in 'averr'. this frame is invalidated by a
// call to ncvisual_decode(), and should not be freed by the caller. // subsequent call to ncvisual_decode(), and should not be freed by the caller.
API struct AVFrame* ncvisual_decode(struct ncvisual* nc, int* averr); API struct AVFrame* ncvisual_decode(struct ncvisual* nc, int* averr);
// render the next frame to the associated ncplane at the current cursor // render the decoded frame to the associated ncplane. the frame will be scaled
// position, going through ystop/xstop. the frame will be scaled to the // to the size of the ncplane at ncplane_visual_open() time.
// appropriate size. API int ncvisual_render(const struct ncvisual* ncv);
API int ncvisual_render(struct ncvisual* ncv, int ystop, int xstop);
// A panelreel is an notcurses region devoted to displaying zero or more // A panelreel is an notcurses region devoted to displaying zero or more
// line-oriented, contained panels between which the user may navigate. If at // line-oriented, contained panels between which the user may navigate. If at

41
src/lib/internal.h Normal file
View File

@ -0,0 +1,41 @@
#ifndef NOTCURSES_INTERNAL
#define NOTCURSES_INTERNAL
#include <stdio.h>
#include <stdint.h>
#include <stdarg.h>
#include <string.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
struct AVFormatContext;
struct AVCodecContext;
struct AVFrame;
struct AVCodec;
struct AVCodecParameters;
struct AVPacket;
struct SwsContext;
struct ncplane;
typedef struct ncvisual {
struct AVFormatContext* fmtctx;
struct AVCodecContext* codecctx;
struct AVFrame* frame;
struct AVFrame* oframe;
struct AVCodec* codec;
struct AVCodecParameters* cparams;
struct AVPacket* packet;
struct SwsContext* swsctx;
int packet_outstanding;
int dstwidth, dstheight;
struct ncplane* ncp;
} ncvisual;
#ifdef __cplusplus
}
#endif
#endif

View File

@ -3,18 +3,7 @@
#include <libswscale/swscale.h> #include <libswscale/swscale.h>
#include <libavformat/avformat.h> #include <libavformat/avformat.h>
#include "notcurses.h" #include "notcurses.h"
#include "internal.h"
typedef struct ncvisual {
AVFormatContext* fmtctx;
AVCodecContext* codecctx;
AVFrame* frame;
AVCodec* codec;
AVCodecParameters* cparams;
AVPacket* packet;
struct SwsContext* swsctx;
int packet_outstanding;
int dstwidth, dstheight;
} ncvisual;
static ncvisual* static ncvisual*
ncvisual_create(void){ ncvisual_create(void){
@ -31,6 +20,7 @@ void ncvisual_destroy(ncvisual* ncv){
avcodec_close(ncv->codecctx); avcodec_close(ncv->codecctx);
avcodec_free_context(&ncv->codecctx); avcodec_free_context(&ncv->codecctx);
av_frame_free(&ncv->frame); av_frame_free(&ncv->frame);
av_frame_free(&ncv->oframe);
avcodec_parameters_free(&ncv->cparams); avcodec_parameters_free(&ncv->cparams);
sws_freeContext(ncv->swsctx); sws_freeContext(ncv->swsctx);
av_packet_free(&ncv->packet); av_packet_free(&ncv->packet);
@ -109,31 +99,28 @@ print_frame_summary(nc->codecctx, nc->frame);
fprintf(stderr, "Error retrieving swsctx (%s)\n", av_err2str(*averr)); fprintf(stderr, "Error retrieving swsctx (%s)\n", av_err2str(*averr));
return NULL; return NULL;
} }
AVFrame* oframe = av_frame_alloc(); nc->oframe->format = AV_PIX_FMT_RGB24;
if(oframe == NULL){ nc->oframe->width = nc->dstwidth;
fprintf(stderr, "Couldn't allocate output frame\n"); nc->oframe->height = nc->dstheight;
return NULL; if((*averr = av_image_alloc(nc->oframe->data, nc->oframe->linesize,
} nc->oframe->width, nc->oframe->height,
oframe->format = AV_PIX_FMT_RGB24; nc->oframe->format, IMGALLOCALIGN)) < 0){
oframe->width = nc->dstwidth;
oframe->height = nc->dstheight;
if((*averr = av_image_alloc(oframe->data, oframe->linesize, oframe->width, oframe->height,
oframe->format, IMGALLOCALIGN)) < 0){
fprintf(stderr, "Error allocating visual data (%s)\n", av_err2str(*averr)); fprintf(stderr, "Error allocating visual data (%s)\n", av_err2str(*averr));
av_frame_free(&oframe); av_frame_free(&nc->oframe);
return NULL; return NULL;
} }
print_frame_summary(nc->codecctx, oframe); fprintf(stderr, "ALLOCATED %d BYTES\n", *averr);
*averr = sws_scale(nc->swsctx, (const uint8_t* const*)nc->frame->data, nc->frame->linesize, 0, *averr = sws_scale(nc->swsctx, (const uint8_t* const*)nc->frame->data,
nc->frame->height, oframe->data, oframe->linesize); nc->frame->linesize, 0,
nc->frame->height, nc->oframe->data, nc->oframe->linesize);
if(*averr < 0){ if(*averr < 0){
fprintf(stderr, "Error applying scaling (%s)\n", av_err2str(*averr)); fprintf(stderr, "Error applying scaling (%s)\n", av_err2str(*averr));
av_frame_free(&oframe); av_frame_free(&nc->oframe);
return NULL; return NULL;
} }
print_frame_summary(nc->codecctx, oframe); print_frame_summary(nc->codecctx, nc->oframe);
#undef IMGALLOCALIGN #undef IMGALLOCALIGN
return oframe; return nc->oframe;
} }
ncvisual* ncplane_visual_open(struct ncplane* nc, const char* filename, int* averr){ ncvisual* ncplane_visual_open(struct ncplane* nc, const char* filename, int* averr){
@ -144,6 +131,7 @@ ncvisual* ncplane_visual_open(struct ncplane* nc, const char* filename, int* ave
return NULL; return NULL;
} }
memset(ncv, 0, sizeof(*ncv)); memset(ncv, 0, sizeof(*ncv));
ncv->ncp = nc;
ncplane_dim_yx(nc, &ncv->dstheight, &ncv->dstwidth); ncplane_dim_yx(nc, &ncv->dstheight, &ncv->dstwidth);
*averr = avformat_open_input(&ncv->fmtctx, filename, NULL, NULL); *averr = avformat_open_input(&ncv->fmtctx, filename, NULL, NULL);
if(*averr < 0){ if(*averr < 0){
@ -203,6 +191,11 @@ ncvisual* ncplane_visual_open(struct ncplane* nc, const char* filename, int* ave
*averr = AVERROR(ENOMEM); *averr = AVERROR(ENOMEM);
goto err; goto err;
} }
if((ncv->oframe = av_frame_alloc()) == NULL){
fprintf(stderr, "Couldn't allocate output frame for %s\n", filename);
*averr = AVERROR(ENOMEM);
goto err;
}
return ncv; return ncv;
err: err:

View File

@ -12,10 +12,13 @@
#include <sys/poll.h> #include <sys/poll.h>
#include <stdatomic.h> #include <stdatomic.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <libavutil/error.h>
#include <libavutil/frame.h>
#include <libavutil/version.h> #include <libavutil/version.h>
#include <libswscale/version.h> #include <libswscale/version.h>
#include <libavformat/version.h> #include <libavformat/version.h>
#include "notcurses.h" #include "notcurses.h"
#include "internal.h"
#include "timespec.h" #include "timespec.h"
#include "version.h" #include "version.h"
#include "egcpool.h" #include "egcpool.h"
@ -1531,3 +1534,32 @@ int notcurses_getc_blocking(const notcurses* nc, cell* c, ncspecial_key* special
} }
return -1; return -1;
} }
int ncvisual_render(const ncvisual* ncv){
const AVFrame* f = ncv->frame;
if(f == NULL){
return -1;
}
int x, y;
int dimy, dimx;
ncplane_dim_yx(ncv->ncp, &dimy, &dimx);
ncplane_cursor_move_yx(ncv->ncp, 0, 0);
for(y = 0 ; y < f->height && y < dimy ; ++y){
for(x = 0 ; x < f->width && x < dimx ; ++x){
const unsigned char* rgbbase = ((const unsigned char*)f->data) + (f->width * y) + x;
fprintf(stderr, "[%04d/%04d] %02x %02x %02x\n", y, x,
rgbbase[0], rgbbase[1], rgbbase[2]);
cell c = CELL_TRIVIAL_INITIALIZER;
if(cell_load(ncv->ncp, &c, "") <= 0){
return -1;
}
cell_set_fg(&c, rgbbase[0], rgbbase[1], rgbbase[2]);
if(ncplane_putc(ncv->ncp, &c) <= 0){
cell_release(ncv->ncp, &c);
return -1;
}
cell_release(ncv->ncp, &c);
}
}
return 0;
}

View File

@ -1,6 +1,8 @@
#include <array> #include <array>
#include <cstdlib> #include <cstdlib>
#include <clocale>
#include <libgen.h> #include <libgen.h>
#include <unistd.h>
#include <iostream> #include <iostream>
#include "notcurses.h" #include "notcurses.h"
@ -14,12 +16,20 @@ void usage(std::ostream& o, const char* name, int exitcode){
int ncview(struct notcurses* nc, struct ncvisual* ncv, int* averr){ int ncview(struct notcurses* nc, struct ncvisual* ncv, int* averr){
struct ncplane* n = notcurses_stdplane(nc); struct ncplane* n = notcurses_stdplane(nc);
int frame = 0; int frame = 1;
AVFrame* avf; AVFrame* avf;
while( (avf = ncvisual_decode(ncv, averr)) ){ while( (avf = ncvisual_decode(ncv, averr)) ){
ncplane_cursor_move_yx(n, 0, 0); ncplane_cursor_move_yx(n, 0, 0);
ncplane_printf(n, "Got frame %05d\u2026", frame); ncplane_printf(n, "Got frame %05d\u2026", frame);
if(ncvisual_render(ncv)){
fprintf(stderr, "couldn't render, fuck!\n");
return -1;
}
if(notcurses_render(nc)){
return -1;
}
++frame; ++frame;
sleep(100);
} }
if(*averr == AVERROR_EOF){ if(*averr == AVERROR_EOF){
return 0; return 0;
@ -28,38 +38,42 @@ int ncview(struct notcurses* nc, struct ncvisual* ncv, int* averr){
} }
int main(int argc, char** argv){ int main(int argc, char** argv){
setlocale(LC_ALL, "");
if(argc == 1){ if(argc == 1){
usage(std::cerr, argv[0], EXIT_FAILURE); usage(std::cerr, argv[0], EXIT_FAILURE);
} }
notcurses_options opts{}; notcurses_options opts{};
opts.outfp = stdout; opts.outfp = stdout;
bool success = true;
auto nc = notcurses_init(&opts); auto nc = notcurses_init(&opts);
if(nc == nullptr){ if(nc == nullptr){
return -1; return EXIT_FAILURE;
}
int dimy, dimx;
notcurses_term_dim_yx(nc, &dimy, &dimx);
auto ncp = notcurses_newplane(nc, dimy - 1, dimx, 1, 0, nullptr);
if(ncp == nullptr){
notcurses_stop(nc);
return EXIT_FAILURE;
} }
auto ncp = notcurses_stdplane(nc);
for(int i = 1 ; i < argc ; ++i){ for(int i = 1 ; i < argc ; ++i){
std::array<char, 128> errbuf; std::array<char, 128> errbuf;
int averr; int averr;
auto ncv = ncplane_visual_open(ncp, argv[i], &averr); auto ncv = ncplane_visual_open(ncp, argv[i], &averr);
if(ncv == nullptr){ if(ncv == nullptr){
av_make_error_string(errbuf.data(), errbuf.size(), averr); av_make_error_string(errbuf.data(), errbuf.size(), averr);
notcurses_stop(nc);
std::cerr << "Error opening " << argv[i] << ": " << errbuf.data() << std::endl; std::cerr << "Error opening " << argv[i] << ": " << errbuf.data() << std::endl;
success = false; return EXIT_FAILURE;
continue;
} }
if(ncview(nc, ncv, &averr)){ if(ncview(nc, ncv, &averr)){
av_make_error_string(errbuf.data(), errbuf.size(), averr); av_make_error_string(errbuf.data(), errbuf.size(), averr);
notcurses_stop(nc);
std::cerr << "Error decoding " << argv[i] << ": " << errbuf.data() << std::endl; std::cerr << "Error decoding " << argv[i] << ": " << errbuf.data() << std::endl;
success = false; return EXIT_FAILURE;
} }
ncvisual_destroy(ncv); ncvisual_destroy(ncv);
} }
if(notcurses_stop(nc)){ if(notcurses_stop(nc)){
success = false;
}
if(!success){
return EXIT_FAILURE; return EXIT_FAILURE;
} }
return EXIT_SUCCESS; return EXIT_SUCCESS;

View File

@ -28,6 +28,10 @@ TEST_F(EGCPoolTest, UTF8EGC) {
auto ulen = utf8_egc_len(wstr, &c); auto ulen = utf8_egc_len(wstr, &c);
ASSERT_LT(0, ulen); ASSERT_LT(0, ulen);
EXPECT_LT(0, c); EXPECT_LT(0, c);
wstr = "";
ulen = utf8_egc_len(wstr, &c);
ASSERT_LT(0, ulen);
EXPECT_LT(0, c);
} }
// we're gonna run both a composed latin a with grave, and then a latin a with // we're gonna run both a composed latin a with grave, and then a latin a with

View File

@ -31,11 +31,16 @@ class LibavTest : public :: testing::Test {
TEST_F(LibavTest, LoadImage) { TEST_F(LibavTest, LoadImage) {
int averr; int averr;
int dimy, dimx;
ncplane_dim_yx(ncp_, &dimy, &dimx);
auto ncv = ncplane_visual_open(ncp_, "../tests/dsscaw-purp.png", &averr); auto ncv = ncplane_visual_open(ncp_, "../tests/dsscaw-purp.png", &averr);
EXPECT_EQ(0, averr); EXPECT_EQ(0, averr);
ASSERT_NE(nullptr, ncv); ASSERT_NE(nullptr, ncv);
ASSERT_NE(nullptr, ncvisual_decode(ncv, &averr)); auto frame = ncvisual_decode(ncv, &averr);
ASSERT_NE(nullptr, frame);
EXPECT_EQ(AVERROR_EOF, averr); EXPECT_EQ(AVERROR_EOF, averr);
EXPECT_EQ(dimy, frame->height);
EXPECT_EQ(dimx, frame->width);
ncvisual_destroy(ncv); ncvisual_destroy(ncv);
} }