mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-26 22:00:33 +05:00
test output, warning removal
This commit is contained in:
parent
febc65e217
commit
dbd73daf8d
19
ng/ngpkg.cpp
19
ng/ngpkg.cpp
@ -2197,7 +2197,8 @@ namespace netgen
|
|||||||
if (occgeometry->ErrorInSurfaceMeshing())
|
if (occgeometry->ErrorInSurfaceMeshing())
|
||||||
{
|
{
|
||||||
char script[] = "rebuildoccdialog";
|
char script[] = "rebuildoccdialog";
|
||||||
int errcode = Tcl_GlobalEval (tcl_interp, script);
|
// int errcode =
|
||||||
|
Tcl_GlobalEval (tcl_interp, script);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@ -3551,19 +3552,14 @@ namespace netgen
|
|||||||
buff.YUV = (uint8_t*)malloc(3*(PIXsize/2));
|
buff.YUV = (uint8_t*)malloc(3*(PIXsize/2));
|
||||||
buff.MPG = (uint8_t*)malloc(MPGbufsize);
|
buff.MPG = (uint8_t*)malloc(MPGbufsize);
|
||||||
|
|
||||||
cout << "z0" << endl;
|
|
||||||
|
|
||||||
// Initialize libavcodec:
|
// Initialize libavcodec:
|
||||||
//-----------------------
|
//-----------------------
|
||||||
if( !initialized ) {
|
if( !initialized ) {
|
||||||
cout << "call register" << endl;
|
|
||||||
av_register_all();
|
av_register_all();
|
||||||
cout << "reg done" << endl;
|
|
||||||
initialized = 1;
|
initialized = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
cout << "a" << endl;
|
|
||||||
|
|
||||||
// Choose codec:
|
// Choose codec:
|
||||||
//--------------
|
//--------------
|
||||||
codec = avcodec_find_encoder( codec_id );
|
codec = avcodec_find_encoder( codec_id );
|
||||||
@ -3574,14 +3570,10 @@ namespace netgen
|
|||||||
return TCL_ERROR;
|
return TCL_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
cout << "b" << endl;
|
|
||||||
|
|
||||||
// Init codec context etc.:
|
// Init codec context etc.:
|
||||||
//--------------------------
|
//--------------------------
|
||||||
context = avcodec_alloc_context();
|
context = avcodec_alloc_context();
|
||||||
|
|
||||||
cout << "b01" << endl;
|
|
||||||
|
|
||||||
context->bit_rate = bitrate;
|
context->bit_rate = bitrate;
|
||||||
context->width = nx;
|
context->width = nx;
|
||||||
context->height = ny;
|
context->height = ny;
|
||||||
@ -3591,8 +3583,6 @@ namespace netgen
|
|||||||
context->pix_fmt = PIX_FMT_YUV420P;
|
context->pix_fmt = PIX_FMT_YUV420P;
|
||||||
context->flags |= CODEC_FLAG_PSNR;
|
context->flags |= CODEC_FLAG_PSNR;
|
||||||
|
|
||||||
cout << "b1" << endl;
|
|
||||||
|
|
||||||
if( avcodec_open( context, codec ) < 0 ) {
|
if( avcodec_open( context, codec ) < 0 ) {
|
||||||
cout << "can't open codec" << endl;
|
cout << "can't open codec" << endl;
|
||||||
avcodec_close( context );
|
avcodec_close( context );
|
||||||
@ -3602,8 +3592,6 @@ namespace netgen
|
|||||||
return TCL_ERROR;
|
return TCL_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
cout << "c" << endl;
|
|
||||||
|
|
||||||
YUVpicture = avcodec_alloc_frame();
|
YUVpicture = avcodec_alloc_frame();
|
||||||
|
|
||||||
YUVpicture->data[0] = buff.YUV;
|
YUVpicture->data[0] = buff.YUV;
|
||||||
@ -3734,7 +3722,8 @@ namespace netgen
|
|||||||
static int Ng_VideoClip (struct Togl * togl,
|
static int Ng_VideoClip (struct Togl * togl,
|
||||||
int argc, tcl_const char *argv[])
|
int argc, tcl_const char *argv[])
|
||||||
{
|
{
|
||||||
return TCL_OK;
|
Tcl_SetResult (Togl_Interp(togl), (char*)"Video not available, Netgen was not compiled with FFMPEG library", TCL_STATIC);
|
||||||
|
return TCL_ERROR;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user