1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
|
/*
Common/Screen/PsychMovieWritingSupportGStreamer.c
PLATFORMS:
All.
AUTHORS:
Mario Kleiner mk mario.kleiner.de@gmail.com
HISTORY:
06-Jun-2011 mk Wrote it.
23-Aug-2014 mk Ported from 0.10 to 1.0+ GStreamer.
DESCRIPTION:
Psychtoolbox functions for dealing with GStreamer 1.x movie editing.
*/
#include "Screen.h"
#ifdef PTB_USE_GSTREAMER
// GStreamer includes:
#include <gst/gst.h>
#include <gst/app/gstappsink.h>
#include <gst/app/gstappsrc.h>
#if GST_CHECK_VERSION(1,0,0)
// PsychGetCodecLaunchLineFromString() - Helper function for GStreamer based movie writing.
// Defined in PsychVideoCaptureSupport.h: psych_bool PsychGetCodecLaunchLineFromString(char* codecSpec, char* launchString);
// GStreamer implementation of movie writing support:
// Record which defines all state for a capture device:
typedef struct {
volatile psych_bool eos;
GMainLoop* Context;
GstElement* Movie;
GstElement* ptbvideoappsrc;
GstElement* ptbaudioappsrc;
GstElement* ptbvideoappsink;
GstBus* bus;
GstBuffer* PixMap;
GstMapInfo mapinfo;
guint32 CodecType;
char File[FILENAME_MAX];
int height;
int width;
unsigned int numChannels;
unsigned int bitdepth;
unsigned int audioSampleRate;
psych_bool useVariableFramerate;
double frameTime;
double frameTimeDelta;
GstClockTime audioTime;
} PsychMovieWriterRecordType;
static PsychMovieWriterRecordType moviewriterRecordBANK[PSYCH_MAX_MOVIEWRITERDEVICES];
static int moviewritercount = 0;
static psych_bool firsttime = TRUE;
// Forward declaration:
static gboolean PsychMovieBusCallback(GstBus *bus, GstMessage *msg, gpointer dataptr);
/* Perform context loop iterations (for bus message handling) if doWait == false,
* as long as there is work to do, or at least two seconds worth of iterations
* if doWait == true. This drives the message-bus callback, so needs to be
* performed to get any error reporting etc.
*/
static int PsychGSProcessMovieContext(PsychMovieWriterRecordType *movie, psych_bool doWait)
{
GstBus* bus;
GstMessage *msg;
psych_bool workdone = FALSE;
double tdeadline, tnow;
PsychGetAdjustedPrecisionTimerSeconds(&tdeadline);
tnow = tdeadline;
tdeadline+=2.0;
bus = gst_pipeline_get_bus(GST_PIPELINE(movie->Movie));
msg = NULL;
// If doWait, try to perform iterations until 2 seconds elapsed or at least one event handled:
while (doWait && (tnow < tdeadline) && !gst_bus_have_pending(bus)) {
// Update time:
PsychYieldIntervalSeconds(0.010);
PsychGetAdjustedPrecisionTimerSeconds(&tnow);
}
msg = gst_bus_pop(bus);
while (msg) {
workdone = TRUE;
PsychMovieBusCallback(bus, msg, movie);
gst_message_unref(msg);
msg = gst_bus_pop(bus);
}
gst_object_unref(bus);
return(workdone);
}
void PsychMovieWritingInit(void)
{
int i;
for (i = 0; i < PSYCH_MAX_MOVIEWRITERDEVICES; i++) {
memset(&(moviewriterRecordBANK[i]), 0, sizeof(PsychMovieWriterRecordType));
}
moviewritercount = 0;
firsttime = TRUE;
return;
}
void PsychDeleteAllMovieWriters(void)
{
int i;
for (i = 0; i < PSYCH_MAX_MOVIEWRITERDEVICES; i++) {
if (moviewriterRecordBANK[i].Movie) PsychFinalizeNewMovieFile(i);
}
}
void PsychExitMovieWriting(void)
{
if (firsttime) return;
PsychDeleteAllMovieWriters();
firsttime = TRUE;
return;
}
PsychMovieWriterRecordType* PsychGetMovieWriter(int moviehandle, psych_bool unsafe)
{
if (moviehandle < 0 || moviehandle >= PSYCH_MAX_MOVIEWRITERDEVICES) PsychErrorExitMsg(PsychError_user, "Invalid handle for moviewriter provided!");
if (!unsafe && (NULL == moviewriterRecordBANK[moviehandle].Movie)) PsychErrorExitMsg(PsychError_user, "Invalid handle for moviewriter provided! No such writer open.");
return(&(moviewriterRecordBANK[moviehandle]));
}
// Pulls next GStreamer videobuffer from appsink, if any, and copies its image data into a new malloc'd buffer. Caller has to free() the returned buffer.
// Used mostly by the libdc1394 video capture engine for retrieval of feedback data:
unsigned char* PsychMovieCopyPulledPipelineBuffer(int moviehandle, unsigned int* twidth, unsigned int* theight, unsigned int* numChannels, unsigned int* bitdepth, double* timestamp)
{
unsigned char* imgdata;
unsigned int count;
// Retrieve movie record:
PsychMovieWriterRecordType* pwriterRec = PsychGetMovieWriter(moviehandle, FALSE);
// Pull next buffer from appsink, if any:
GstBuffer *videoBuffer = NULL;
GstSample *videoSample = NULL;
// Return NULL if appsink doesn't exist or is end-of-stream already:
if ((pwriterRec->ptbvideoappsink == NULL) || !GST_IS_APP_SINK(pwriterRec->ptbvideoappsink) || gst_app_sink_is_eos(GST_APP_SINK(pwriterRec->ptbvideoappsink))) return(NULL);
// Pull next buffer from appsink:
videoSample = gst_app_sink_pull_sample(GST_APP_SINK(pwriterRec->ptbvideoappsink));
// Double-check: Buffer valid with data?
if (NULL == videoSample) return(NULL);
// Get pointer to buffer - no ownership transfer, no unref needed:
videoBuffer = gst_sample_get_buffer(videoSample);
// Valid assign properties:
*twidth = pwriterRec->width;
*theight = pwriterRec->height;
*numChannels = pwriterRec->numChannels;
*bitdepth = pwriterRec->bitdepth;
*timestamp = (double) GST_BUFFER_PTS(videoBuffer) / (double) 1e9;
// Copy data into new malloc'ed buffer:
count = (pwriterRec->width * pwriterRec->height * pwriterRec->numChannels * ((pwriterRec->bitdepth > 8) ? 2 : 1));
// Allocate target buffer for most recent captured frame from video recorder thread:
imgdata = (unsigned char*) malloc(count);
// Copy image into it:
if (gst_buffer_extract(videoBuffer, 0, (gpointer) imgdata, count) < count) {
free(imgdata);
return(NULL);
}
// Release to appsink for recycling:
gst_sample_unref(videoSample);
return(imgdata);
}
unsigned char* PsychGetVideoFrameForMoviePtr(int moviehandle, unsigned int* twidth, unsigned int* theight, unsigned int* numChannels, unsigned int* bitdepth)
{
PsychMovieWriterRecordType* pwriterRec = PsychGetMovieWriter(moviehandle, FALSE);
size_t size = pwriterRec->width * pwriterRec->height * pwriterRec->numChannels * (pwriterRec->bitdepth / 8);
// Buffer already created?
if (NULL == pwriterRec->PixMap) {
// No. Let's create a suitable one:
pwriterRec->PixMap = gst_buffer_new_allocate(NULL, size, NULL);
// Out of memory condition!
if (NULL == pwriterRec->PixMap) return(NULL);
// Make buffers memory writable:
if (gst_buffer_make_writable(pwriterRec->PixMap) != pwriterRec->PixMap) {
printf("PsychGetVideoFrameForMoviePtr: AIIIIIIIIIIII gst_buffer_make_writable() didn't return same buffer!!!\n");
return(NULL);
}
}
// Map the buffers memory for writing:
memset(&(pwriterRec->mapinfo), 0, sizeof(GstMapInfo));
if (!gst_buffer_map(pwriterRec->PixMap, &(pwriterRec->mapinfo), GST_MAP_WRITE) || (pwriterRec->mapinfo.maxsize < size) || (pwriterRec->mapinfo.size < size)) {
// MK PORTING memleak if map succeeded!
PsychErrorExitMsg(PsychError_outofMemory, "Failed to map buffer memory when trying to add video data to movie!");
return(NULL);
}
*twidth = pwriterRec->width;
*theight = pwriterRec->height;
*numChannels = pwriterRec->numChannels;
*bitdepth = pwriterRec->bitdepth;
return((unsigned char*) pwriterRec->mapinfo.data);
}
int PsychAddVideoFrameToMovie(int moviehandle, int frameDurationUnits, psych_bool isUpsideDown, double frameTimestamp)
{
PsychMovieWriterRecordType* pwriterRec = PsychGetMovieWriter(moviehandle, FALSE);
GstBuffer* refBuffer = NULL;
GstBuffer* curBuffer = NULL;
GstFlowReturn ret;
int x, y, w, h;
unsigned char* pixptr;
unsigned int* wordptr;
unsigned int *wordptr2, *wordptr1;
unsigned char *byteptr2, *byteptr1;
unsigned int dummy;
unsigned char dummyb;
int bframeDurationUnits = frameDurationUnits;
if (NULL == pwriterRec->ptbvideoappsrc) return(0);
if (NULL == pwriterRec->PixMap) return(0);
if ((frameDurationUnits < 1) && (PsychPrefStateGet_Verbosity() > 1)) printf("PTB-WARNING:In AddFrameToMovie: Negative or zero 'frameduration' %i units for moviehandle %i provided! Sounds like trouble ahead.\n", frameDurationUnits, moviehandle);
// Assign frameTimestamp (if valid aka greater than zero) as video buffer timestamp, after conversion into nanoseconds:
// We can only timestamp if variable framerate recording is enabled, ie., the "videorate" converter element isn't used,
// as that element chokes on many frameTimestamp's.
if (pwriterRec->useVariableFramerate && (frameTimestamp >= 0)) GST_BUFFER_PTS(pwriterRec->PixMap) = (psych_uint64) (frameTimestamp * 1e9);
// Invalid frameTimestamps (e.g., from Screen('AddFrameToMovie')?
if (frameTimestamp == -1) {
// Yes. Need to create synthetic one, as GStreamer-1.x appsrc doesn't automatically
// create meaningful ts anymore:
GST_BUFFER_PTS(pwriterRec->PixMap) = (psych_uint64) (pwriterRec->frameTime * 1e9);
pwriterRec->frameTime += pwriterRec->frameTimeDelta;
}
// Is Imagebuffer upside-down? If so, need to flip it vertically:
if (isUpsideDown) {
// RGBA8 format?
if ((pwriterRec->numChannels == 4) && (pwriterRec->bitdepth == 8)) {
// Yes. Can use optimized copy of uint32 units:
wordptr = (unsigned int*) pwriterRec->mapinfo.data;
h = pwriterRec->height;
w = pwriterRec->width;
wordptr1 = wordptr;
for (y = 0; y < h/2; y++) {
wordptr2 = wordptr;
wordptr2 += ((h - 1 - y) * w);
for (x = 0; x < w; x++) {
dummy = *wordptr1;
*(wordptr1++) = *wordptr2;
*(wordptr2++) = dummy;
}
}
}
else {
// No. Could be 1, 2, 3, 6 or 8 bytes per pixel. Just use a
// robust but slightly less efficient byte-wise copy:
pixptr = (unsigned char*) pwriterRec->mapinfo.data;
h = pwriterRec->height;
w = pwriterRec->width;
w = w * pwriterRec->numChannels * pwriterRec->bitdepth / 8;
byteptr1 = pixptr;
for (y = 0; y < h/2; y++) {
byteptr2 = pixptr;
byteptr2 += ((h - 1 - y) * w);
for (x = 0; x < w; x++) {
dummyb = *byteptr1;
*(byteptr1++) = *byteptr2;
*(byteptr2++) = dummyb;
}
}
}
}
// Done writing to this buffer:
gst_buffer_unmap(pwriterRec->PixMap, &(pwriterRec->mapinfo));
// Make backup copy of buffer for replication if needed:
if (frameDurationUnits > 1) {
refBuffer = gst_buffer_copy(pwriterRec->PixMap);
}
// Add encoded buffer to movie: The function takes our reference, so we *must not unref the buffer*
ret = gst_app_src_push_buffer(GST_APP_SRC(pwriterRec->ptbvideoappsrc), pwriterRec->PixMap);
// Drop our handle to it, so we can allocate a new one on demand:
pwriterRec->PixMap = NULL;
// A dumb way to let this buffer last frameDurationUnits > 1 instead of
// the default typical frameDurationUnits == 1. We simply create and
// push frameDurationUnits-1 extra identicaly copies of the buffer. This
// will not win the "computational efficiency award 2011", but should be robust.
if (frameDurationUnits > 1) {
// One already done:
frameDurationUnits--;
// Repeat for remaining ones:
while ((frameDurationUnits > 0) && (ret == GST_FLOW_OK)) {
// Create a new copy:
curBuffer = gst_buffer_copy(refBuffer);
// Synthesize proper pts if caller doesn't provide a meaningful frameTimestamp:
if (frameTimestamp == -1) {
// Yes. Need to create synthetic one, as GStreamer-1.x appsrc doesn't automatically
// create meaningful ts anymore:
GST_BUFFER_PTS(curBuffer) = (psych_uint64) (pwriterRec->frameTime * 1e9);
pwriterRec->frameTime += pwriterRec->frameTimeDelta;
}
// Add copied buffer to movie:
// The function takes our reference, so we *must not unref the buffer*
ret = gst_app_src_push_buffer(GST_APP_SRC(pwriterRec->ptbvideoappsrc), curBuffer);
curBuffer = NULL;
// One less...
frameDurationUnits--;
}
}
if (refBuffer) gst_buffer_unref(refBuffer);
refBuffer = NULL;
if (ret != GST_FLOW_OK) {
// Oopsie! Error encountered - Abort.
if (PsychPrefStateGet_Verbosity() > 0) printf("PTB-ERROR:In AddFrameToMovie: Adding current frame to moviehandle %i failed [push-buffer returned error code %i]!\n", moviehandle, (int) ret);
return((int) ret);
}
PsychGSProcessMovieContext(pwriterRec, FALSE);
if (PsychPrefStateGet_Verbosity() > 5) printf("PTB-DEBUG:In AddFrameToMovie: Added new videoframe with %i units duration and upsidedown = %i to moviehandle %i.\n", bframeDurationUnits, (int) isUpsideDown, moviehandle);
// Return success:
return((int) ret);
}
psych_bool PsychAddAudioBufferToMovie(int moviehandle, unsigned int nrChannels, unsigned int nrSamples, double* buffer)
{
PsychMovieWriterRecordType* pwriterRec = PsychGetMovieWriter(moviehandle, FALSE);
GstFlowReturn ret;
float* fwordptr;
float v;
unsigned int n, i;
GstBuffer* pushBuffer;
#if PSYCH_SYSTEM == PSYCH_WINDOWS
#pragma warning( disable : 4068 )
#endif
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
GstMapInfo mapinfo = GST_MAP_INFO_INIT;
#pragma GCC diagnostic pop
// Child protection: Audio writing enabled for this movie?
if (NULL == pwriterRec->ptbaudioappsrc) {
PsychErrorExitMsg(PsychError_user, "Tried to add audio data to a movie which was created without an audio track.");
}
// nrChannels and nrSamples are already validated by high level code.
// Just calculate total sample count and required buffer size:
n = nrChannels * nrSamples;
// Create GstBuffer for audio data:
pushBuffer = gst_buffer_new_allocate(NULL, n * sizeof(float), NULL);
// Out of memory condition!
if (NULL == pushBuffer) {
PsychErrorExitMsg(PsychError_outofMemory, "Out of memory when trying to add audio data to movie!");
return(FALSE);
}
// Make buffers memory writable:
if (gst_buffer_make_writable(pushBuffer) != pushBuffer) {
printf("PsychAddAudioBufferToMovie: AIIIIIIIIIIII gst_buffer_make_writable() didn't return same buffer!!!\n");
return(FALSE);
}
// Map the buffers memory for writing:
if (!gst_buffer_map(pushBuffer, &mapinfo, GST_MAP_WRITE) || (mapinfo.maxsize < n * sizeof(float)) || (mapinfo.size < n * sizeof(float))) {
// MK PORTING memleak if map succeeded!
PsychErrorExitMsg(PsychError_outofMemory, "Failed to map buffer memory when trying to add audio data to movie!");
return(FALSE);
}
// Convert and copy sample data:
fwordptr = (float*) mapinfo.data;
for (i = 0; i < n; i++) {
// Fetch and convert from double to float:
v = (float) *(buffer++);;
// Clip:
if (v < -1.0) v = -1.0;
if (v > +1.0) v = +1.0;
// Push to float buffer:
*(fwordptr++) = v;
}
gst_buffer_unmap(pushBuffer, &mapinfo);
// Compute and assign duration of this buffer in nsecs from number of submitted samples and nominal sampling rate:
GST_BUFFER_DURATION(pushBuffer) = (GstClockTime) ((double) nrSamples / (double) pwriterRec->audioSampleRate * 1e9);
// Assign presentation timestamp:
GST_BUFFER_PTS(pushBuffer) = pwriterRec->audioTime;
// Increment it by duration of this buffer:
pwriterRec->audioTime += GST_BUFFER_DURATION(pushBuffer);
// Add encoded buffer to movie: Must not unref it, as app-src takes our ref!
ret = gst_app_src_push_buffer(GST_APP_SRC(pwriterRec->ptbaudioappsrc), pushBuffer);
pushBuffer = NULL;
if (ret != GST_FLOW_OK) {
// Oopsie! Error encountered - Abort.
if (PsychPrefStateGet_Verbosity() > 0) printf("PTB-ERROR:In AddAudioBufferToMovie: Adding current audio buffer to moviehandle %i failed [push-buffer returned error code %i]!\n", moviehandle, (int) ret);
return(FALSE);
}
// Do a bit of event processing for handling of potential GStreamer messages:
PsychGSProcessMovieContext(pwriterRec, FALSE);
if (PsychPrefStateGet_Verbosity() > 5) printf("PTB-DEBUG:In AddAudioBufferToMovie: Added new audio buffer to moviehandle %i.\n", moviehandle);
// Return success:
return(TRUE);
}
/* Initiate pipeline state changes: Startup, Preroll, Playback, Pause, Standby, Shutdown. */
static psych_bool PsychMoviePipelineSetState(GstElement* camera, GstState state, double timeoutSecs)
{
GstState state_pending;
GstStateChangeReturn rcstate;
gst_element_set_state(camera, state);
// Non-Blocking, async?
if (timeoutSecs < 0) return(TRUE);
// Wait for up to timeoutSecs for state change to complete or fail:
rcstate = gst_element_get_state(camera, &state, &state_pending, (GstClockTime) (timeoutSecs * 1e9));
switch(rcstate) {
case GST_STATE_CHANGE_SUCCESS:
//printf("PTB-DEBUG: Statechange completed with GST_STATE_CHANGE_SUCCESS.\n");
break;
case GST_STATE_CHANGE_ASYNC:
printf("PTB-INFO: Statechange in progress with GST_STATE_CHANGE_ASYNC.\n");
break;
case GST_STATE_CHANGE_NO_PREROLL:
printf("PTB-INFO: Statechange completed with GST_STATE_CHANGE_NO_PREROLL.\n");
break;
case GST_STATE_CHANGE_FAILURE:
printf("PTB-ERROR: Statechange failed with GST_STATE_CHANGE_FAILURE!\n");
return(FALSE);
break;
default:
printf("PTB-ERROR: Unknown state-change result in preroll.\n");
return(FALSE);
}
return(TRUE);
}
/* Receive messages from the pipeline message bus and handle them: */
static gboolean PsychMovieBusCallback(GstBus *bus, GstMessage *msg, gpointer dataptr)
{
PsychMovieWriterRecordType* dev = (PsychMovieWriterRecordType*) dataptr;
(void) bus;
if (PsychPrefStateGet_Verbosity() > 11) printf("PTB-DEBUG: PsychMovieWriterBusCallback: Msg source name and type: %s : %s\n", GST_MESSAGE_SRC_NAME(msg), GST_MESSAGE_TYPE_NAME(msg));
switch (GST_MESSAGE_TYPE (msg)) {
case GST_MESSAGE_EOS:
if (PsychPrefStateGet_Verbosity() > 4) printf("PTB-DEBUG: Moviewriter bus: Message EOS received.\n");
dev->eos = TRUE;
break;
case GST_MESSAGE_WARNING: {
gchar *debug;
GError *error;
gst_message_parse_warning(msg, &error, &debug);
if (PsychPrefStateGet_Verbosity() > 3) {
printf("PTB-WARNING: GStreamer movie writing engine reports this warning:\n"
" Warning from element %s: %s\n", GST_OBJECT_NAME(msg->src), error->message);
printf(" Additional debug info: %s.\n", (debug) ? debug : "None");
}
g_free(debug);
g_error_free(error);
break;
}
case GST_MESSAGE_ERROR: {
gchar *debug;
GError *error;
gst_message_parse_error(msg, &error, &debug);
if (PsychPrefStateGet_Verbosity() > 0) {
printf("PTB-ERROR: GStreamer movie writing engine reports this error:\n"
" Error from element %s: %s\n", GST_OBJECT_NAME(msg->src), error->message);
printf(" Additional debug info: %s.\n\n", (debug) ? debug : "None");
// Special tips for the challenged:
if (strstr(error->message, "property") || (debug && strstr(debug, "property"))) {
// Bailed due to unsupported x264enc parameter "speed-preset". Can be solved by upgrading
// GStreamer or the OS or the VideoCodec= override:
printf("PTB-TIP: One reason this may have failed is because your GStreamer codec installation is too outdated.\n");
printf("PTB-TIP: Either upgrade your GStreamer (plugin) installation to a more recent version,\n");
printf("PTB-TIP: or upgrade your operating system (e.g., Ubuntu 10.10 'Maverick Meercat' and later are fine).\n");
printf("PTB-TIP: A recent GStreamer installation is required to use all features and get optimal performance.\n");
printf("PTB-TIP: As a workaround, you can manually specify all codec settings, leaving out the unsupported\n");
printf("PTB-TIP: option. See 'help VideoRecording' on how to do that.\n\n");
}
}
g_free(debug);
g_error_free(error);
break;
}
default:
break;
}
return TRUE;
}
int PsychCreateNewMovieFile(char* moviefile, int width, int height, double framerate, int numChannels, int bitdepth, char* movieoptions, char* feedbackString)
{
PsychMovieWriterRecordType* pwriterRec = NULL;
int moviehandle = 0;
GError *myErr = NULL;
char* poption;
char codecString[1000];
char capsString[1000];
char capsForCodecString[1000];
char videorateString[100];
char launchString[10000];
int dummyInt;
float dummyFloat;
char myfourcc[5];
psych_bool doAudio = FALSE;
psych_bool useOwn16bpc = FALSE;
// Validate number of color channels: We support 1, 3 or 4:
if (numChannels != 1 && numChannels != 3 && numChannels != 4) PsychErrorExitMsg(PsychError_internal, "Invalid number of channels parameter provided. Not 1, 3 or 4!");
// Validate number of bits per component: We support 8 bpc or 16 bpc:
if (bitdepth != 8 && bitdepth != 16) PsychErrorExitMsg(PsychError_internal, "Invalid number of bits per channel bpc parameter provided. Not 8 or 16!");
// Still capacity left?
if (moviewritercount >= PSYCH_MAX_MOVIEWRITERDEVICES) PsychErrorExitMsg(PsychError_user, "Maximum number of movie writers exceeded. Please close some first!");
// Find first free (i.e., NULL) slot and assign moviehandle:
while ((pwriterRec = PsychGetMovieWriter(moviehandle, TRUE)) && pwriterRec->Movie) moviehandle++;
if (firsttime) {
// Make sure GStreamer is ready:
PsychGSCheckInit("movie writing");
firsttime = FALSE;
}
// Store movie filename:
strcpy(pwriterRec->File, (moviefile) ? moviefile : "");
// Store width, height, numChannels, bitdepth:
pwriterRec->height = height;
pwriterRec->width = width;
pwriterRec->numChannels = (unsigned int) numChannels;
pwriterRec->bitdepth = (unsigned int) bitdepth;
pwriterRec->eos = FALSE;
pwriterRec->useVariableFramerate = FALSE;
pwriterRec->frameTime = 0.0;
pwriterRec->frameTimeDelta = (framerate > 0.0) ? (1.0 / framerate) : 0.0;
pwriterRec->audioTime = 0;
// If no movieoptions specified, create default string for default
// codec selection and configuration:
if (strlen(movieoptions) == 0) {
// No options provided. Select default encoder with default settings:
movieoptions = strdup("DEFAULTenc");
} else if ((poption = strstr(movieoptions, ":CodecSettings="))) {
// Replace ':' with a zero in movieoptions, so it gets null-terminated:
movieoptions = poption;
*movieoptions = 0;
// Move after null-terminator:
movieoptions++;
// Replace the ':CodecSettings=' with the special keyword 'DEFAULTenc', so
// so the default video codec is chosen, but the given settings override its
// default parameters.
strncpy(movieoptions, "DEFAULTenc ", strlen("DEFAULTenc "));
if (strlen(movieoptions) == 0) PsychErrorExitMsg(PsychError_user, "Invalid (empty) :CodecSettings= parameter specified. Aborted.");
} else if ((poption = strstr(movieoptions, ":CodecType="))) {
// Replace ':' with a zero in movieoptions, so it gets null-terminated
// and only points to the actual movie filename:
movieoptions = poption;
*movieoptions = 0;
// Advance movieoptions to point to the actual codec spec string:
movieoptions+= 11;
if (strlen(movieoptions) == 0) PsychErrorExitMsg(PsychError_user, "Invalid (empty) :CodecType= parameter specified. Aborted.");
}
// Assign numeric 32-bit FOURCC equivalent code to select codec:
// This is optional. We default to kH264CodecType:
if ((poption = strstr(movieoptions, "CodecFOURCCId="))) {
if (sscanf(poption, "CodecFOURCCId=%i", &dummyInt) == 1) {
pwriterRec->CodecType = dummyInt;
if (PsychPrefStateGet_Verbosity() > 3) printf("PTB-INFO: Codec with FOURCC numeric id %i [%" GST_FOURCC_FORMAT "] requested for encoding of movie %i [%s].\n", dummyInt, GST_FOURCC_ARGS(dummyInt), moviehandle, moviefile);
if (PsychPrefStateGet_Verbosity() > 1) printf("PTB-WARNING: Codec selection by FOURCC not yet supported. FOURCC code ignored!\n");
}
else PsychErrorExitMsg(PsychError_user, "Invalid CodecFOURCCId= parameter provided in movieoptions parameter. Parse error!");
}
// Assign 4 character string FOURCC code to select codec:
if ((poption = strstr(movieoptions, "CodecFOURCC="))) {
if (sscanf(poption, "CodecFOURCC=%c%c%c%c", &myfourcc[0], &myfourcc[1], &myfourcc[2], &myfourcc[3]) == 4) {
myfourcc[4] = 0;
dummyInt = (int) GST_STR_FOURCC (myfourcc);
pwriterRec->CodecType = dummyInt;
if (PsychPrefStateGet_Verbosity() > 3) printf("PTB-INFO: Codec with FOURCC numeric id %i [%" GST_FOURCC_FORMAT "] requested for encoding of movie %i [%s].\n", dummyInt, GST_FOURCC_ARGS(dummyInt), moviehandle, moviefile);
if (PsychPrefStateGet_Verbosity() > 1) printf("PTB-WARNING: Codec selection by FOURCC not yet supported. FOURCC code ignored!\n");
}
else PsychErrorExitMsg(PsychError_user, "Invalid CodecFOURCC= parameter provided in movieoptions parameter. Must be exactly 4 characters! Parse error!");
}
// Assign numeric encoding quality level:
// This is optional. We default to "normal quality":
if ((poption = strstr(movieoptions, "EncodingQuality="))) {
if ((sscanf(poption, "EncodingQuality=%f", &dummyFloat) == 1) && (dummyFloat >= 0) && (dummyFloat <= 1)) {
// Map floating point quality level between 0.0 and 1.0 to 10 discrete levels:
if (PsychPrefStateGet_Verbosity() > 3) printf("PTB-INFO: Encoding quality level %f selected for encoding of movie %i [%s].\n", dummyFloat, moviehandle, moviefile);
// Rewrite "EncodingQuality=" string into "VideoQuality=" string, with proper
// padding: "EncodingQuality="
// This way EncodingQuality in Quicktime lingo corresponds to
// VideoQuality in GStreamer lingo:
strncpy(poption, " Videoquality=", strlen(" Videoquality="));
}
else PsychErrorExitMsg(PsychError_user, "Invalid EncodingQuality= parameter provided in movieoptions parameter. Parse error or out of valid 0 - 1 range!");
}
// Check for valid parameters. Also warn if some parameters are borderline for certain codecs:
if ((framerate < 1) && (PsychPrefStateGet_Verbosity() > 1)) printf("PTB-WARNING:In CreateMovie: Negative or zero 'framerate' %f units for moviehandle %i provided! Sounds like trouble ahead.\n", (float) framerate, moviehandle);
if (width < 1) PsychErrorExitMsg(PsychError_user, "In CreateMovie: Invalid zero or negative 'width' for video frame size provided!");
if ((width < 4) && (PsychPrefStateGet_Verbosity() > 1)) printf("PTB-WARNING:In CreateMovie: 'width' of %i pixels for moviehandle %i provided! Some video codecs may malfunction with such a small width.\n", width, moviehandle);
if ((width % 4 != 0) && (PsychPrefStateGet_Verbosity() > 1)) printf("PTB-WARNING:In CreateMovie: 'width' of %i pixels for moviehandle %i provided! Some video codecs may malfunction with a width which is not a multiple of 4 or 16.\n", width, moviehandle);
if (height < 1) PsychErrorExitMsg(PsychError_user, "In CreateMovie: Invalid zero or negative 'height' for video frame size provided!");
if ((height < 4) && (PsychPrefStateGet_Verbosity() > 1)) printf("PTB-WARNING:In CreateMovie: 'height' of %i pixels for moviehandle %i provided! Some video codecs may malfunction with such a small height.\n", height, moviehandle);
// Use of variable framerate requested? If so, we use the GstBuffer timestamps instead
// of synthetic timestamps generated by the videorate converter and derived from fps:
if (strstr(movieoptions, "UseVFR")) {
videorateString[0] = 0;
pwriterRec->useVariableFramerate = TRUE;
}
else {
sprintf(videorateString, "videorate ! ");
pwriterRec->useVariableFramerate = FALSE;
}
// Full GStreamer launch line a la gst-launch command provided?
if (strstr(movieoptions, "gst-launch")) {
// Yes: We use movieoptions directly as launch line:
movieoptions = strstr(movieoptions, "gst-launch");
// Move string pointer behind the "gst-launch" word (plus a blank):
movieoptions+= strlen("gst-launch ");
// Can directly use this:
sprintf(launchString, "%s", movieoptions);
// With audio track?
if (strstr(movieoptions, "name=ptbaudioappsrc")) doAudio = TRUE;
}
else {
// No: Do our own parsing and setup:
// No special capsfilter string for Codec by default, just a videoconvert converter
// which will determine proper src/sink caps automagically:
sprintf(capsForCodecString, "videoconvert ! ");
// Find the gst-launch style string for codecs and muxers:
codecString[0] = 0;
if (moviefile && (strlen(moviefile) > 0) && !PsychGetCodecLaunchLineFromString(movieoptions, &(codecString[0]))) {
// No config for this format possible:
if (PsychPrefStateGet_Verbosity() > 0) printf("PTB-ERROR:In CreateMovie: Creating movie file with handle %i [%s] failed: Could not find matching codec setup.\n", moviehandle, moviefile);
goto bail;
}
// With audio track?
if (strstr(movieoptions, "AddAudioTrack")) {
// Yes:
doAudio = TRUE;
// Parse sampling frequency out of it:
if (sscanf(strstr(movieoptions, "AddAudioTrack") + strlen("AddAudioTrack"), "=%*i@%i", &(pwriterRec->audioSampleRate)) != 1) {
// None provided: Assign default 48 kHz frequency.
pwriterRec->audioSampleRate = 48000;
}
}
// With our own pseudo 16 bpc format which squeezes 16 bpc content into 8 bpc encodings?
if (strstr(movieoptions, "UsePTB16BPC")) useOwn16bpc = TRUE;
// Define filter-caps aka capsfilter for appsrc, to tell the encoding pipeline what kind of
// video format is delivered by the appsrc:
if (bitdepth == 8) {
// 8 bpc format: We handle Luminance8/Raw8, RGB8 or RGBA8:
switch (numChannels) {
case 1:
// 8 bpc gray or raw:
sprintf(capsString, "video/x-raw, format=GRAY8");
// If the ffenc_huffyuv or ffenc_ljpeg encoder is in use, we need some special caps after the colorspace converter to get lossless
// encoding of 8 bpc gray/raw images. See case 3 below for explanation.
if (strstr(codecString, "enc_huffyuv") || strstr(codecString, "enc_ljpeg"))
sprintf(capsForCodecString, "videoconvert ! capsfilter caps=\"video/x-raw, format=BGRA\" ! ");
break;
case 3:
// 8 bpc RGB8:
sprintf(capsString, "video/x-raw, format=RGB");
// If the ffenc_huffyuv or ffenc_ljpeg encoder is in use, we need some special caps after the colorspace converter. These make sure that
// the huffyuv encoder actually performs RGB8 24 bpp lossless encoding of the video, instead of YUV422p encoding with near-lossless
// luminance, but lossy chrominance encoding (spatial subsampling). This is derived from the code of libavcodec's huffyuv
// element aka ffenc_huffyuv and testing on GStreamer command line. We only care about lossless encoding if huffyuv or ffenc_ljpeg is in
// use, because we assume one would only use huffyuv if the intention would be to get lossless encoding:
if (strstr(codecString, "enc_huffyuv") || strstr(codecString, "enc_ljpeg"))
sprintf(capsForCodecString, "videoconvert ! capsfilter caps=\"video/x-raw, format=BGRA\" ! ");
break;
case 4:
// 8 bpc RGBA8:
sprintf(capsString, "video/x-raw, format=ARGB");
// Note: At least if lossless encoding via ffenc_huffyuv is requested, this will actually cause a lossless encoding
// of the RGB8 color channels, but complete loss of the A8 alpha channel! Why? Because libavcodec's huffyuv encoder
// only supports RGB32 or RGB24, but GStreamer's ffenc_huffyuv plugin maps RGBA8 to RGBA, which is not supported by huffyuv,
// so fallback to RGB24 encoding results. Essentially case 4 reverts to case 3 above, but accepts RGBA8 input at least.
// ffenc_ljpeg needs manual setup of component swizzling, so it actually encodes RGB8 lossless instead of using I420 encoding.
// Note: The alpha channel is accepted as input, but lost/thrown away during encoding, just as with huffyuv!
if (strstr(codecString, "enc_ljpeg"))
sprintf(capsForCodecString, "videoconvert ! capsfilter caps=\"video/x-raw, format=BGRA\" ! ");
break;
default:
printf("PTB-ERROR: Unsupported number of color channels %i for video encoding!\n", numChannels);
goto bail;
}
// y4menc as codec/muxer? This is essentially YUV raw encoding. Assume user wants near-lossless operation. This only accepts YUV
// input, so try to convert to Y42B format so encoding loses as few information as possible:
if (strstr(codecString, "y4menc")) sprintf(capsForCodecString, "videoconvert ! capsfilter caps=\"video/x-raw, format=Y42B\" ! ");
}
else {
// 16 bpc format:
// Use our own proprietary encoding for squeezing 16 bpc content into 8 bpc codecs?
if (useOwn16bpc) {
// We always accept pixeldata from our provider - and feed it via appsrc into GStreamer - as RGB 24 bpp, 8 bpc:
// For 3 channel RGB this is natural, and the layout is:
// [red1,green1,blue1][red2,green2,blue2] == [RH,RL, GH][GL,BH,BL] -- Abuse two neighbour pixels to encode one 16 bpc RGB pixel.
// For 1 channel 16 bpp gray, the layout is:
// [red1,green1,blue1][red2,green2,blue2] == [GH1, GL1, GH2][GL2, GH3, GL3] == Abuse two neighbour pixels to encode 3 grayscale pixels.
sprintf(capsString, "video/x-raw, format=RGB");
// If the ffenc_huffyuv or ffenc_ljpeg encoder is in use, we need some special caps after the colorspace converter. These make sure that
// the huffyuv encoder actually performs RGB8 24 bpp lossless encoding of the video, instead of YUV422p encoding with near-lossless
// luminance, but lossy chrominance encoding (spatial subsampling). This is derived from the code of libavcodec's huffyuv
// element aka ffenc_huffyuv and testing on GStreamer command line. We only care about lossless encoding if huffyuv or ffenc_ljpeg is in
// use, because we assume one would only use huffyuv if the intention would be to get lossless encoding:
if (strstr(codecString, "enc_huffyuv") || strstr(codecString, "enc_ljpeg"))
sprintf(capsForCodecString, "videoconvert ! capsfilter caps=\"video/x-raw, format=BGRA\" ! ");
switch (numChannels) {
case 1:
// 16 bpc gray or raw: 3 grayscale pixels in two rgb pixels. Only 2/3 of RGB8 pixels needed to
// encode these GRAY16 pixels. Image width of typical video encoding formats oesn't end up as
// integer when multiplied by 2/3, but height often does, e.g., for 640x480, 768x576, 1600x1200,
// so do this. As height is an integer, this will truncate to smaller integer if it doesn't fit,
// so worst case we cut off a few scanlines at the bottom or top of the image if usercode selects an
// unlucky resolution. This loop tries different height cutoffs until one satisfies our constraint:
for (height = pwriterRec->height; (height > pwriterRec->height - 3) && (height > 0); height--) {
if (height == (height * 2 / 3) * 3 / 2) break;
}
// Managed to do without cutting information?
if ((height != pwriterRec->height) && (PsychPrefStateGet_Verbosity() > 1)) {
printf("PTB-WARNING: Can't store complete image in 1 channel 16 bpc 'UsePTB16BPC' proprietary encoding as height %i * 2/3 \n", pwriterRec->height);
printf("PTB-WARNING: doesn't end up as integral value! %i scanlines will be removed from top or bottom of image during movie\n", pwriterRec->height - height);
printf("PTB-WARNING: encoding for resulting final valid height of %i scanlines.\n", height);
}
// Define final height of input images:
pwriterRec->height = height;
// Define height for encoding:
height = height * 2 / 3;
break;
case 3:
// 16 bpc RGB16: 1 RGB16 pixel in two RGB8 pixels -> double-wide image:
width = width * 2;
if ((width > 4096) && (PsychPrefStateGet_Verbosity() > 1)) {
printf("PTB-WARNING: Video image for 16 bpc RGB encoding is wider than 2048 pixels. This may cause encoding failure with various codecs!\n");
}
break;
default:
printf("PTB-ERROR: Unsupported number of color channels %i for 16 bpc video encoding in Psychtoolbox proprietary format! Only 1 and 3 are supported.\n", numChannels);
goto bail;
}
// None of the known lossless codecs in use? May want to warn user about possible royal screwups:
if (!strstr(codecString, "enc_huffyuv") && !strstr(codecString, "enc_ljpeg") && !strstr(codecString, "enc_sgi") &&
(PsychPrefStateGet_Verbosity() > 1)) {
printf("PTB-WARNING: You don't use one of the known good lossless video codecs huffyuv, ffenc_sgi or maybe ffenc_ljpeg? Note that\n");
printf("PTB-WARNING: use of even a slightly lossy codec for 16 bpc UsePTB16BPC format will royally screw up your movie!\n");
}
if (PsychPrefStateGet_Verbosity() > 2) {
printf("PTB-INFO: 16 bpc %i-channels Psychtoolbox proprietary video encoding via keyword 'UsePTB16BPC' selected.\n", numChannels);
printf("PTB-INFO: You can read such movie files later if you add a 'specialFlags1' setting of 512 in Screen('OpenMovie') and a\n");
printf("PTB-INFO: 'pixelFormat' of %i channels. Other 'pixelFormats' are not supported for this proprietary encoding.\n", numChannels);
}
}
else {
// Proper standardized 16 bpc encodings on GStreamer-1.x, which is still limited in
// what it can do for HDR formats:
// We handle Luminance16/Raw16, aka 16 bit grayscale and ARGB64 aka 16 bpc true color with alpha.
// However, in practice i'm not aware of any high performance codecs which handle 16 bpc content,
// so this is a bit pointless. Last checked August 2014 for GStreamer-1.4.0.
if (PsychPrefStateGet_Verbosity() > 1) {
printf("PTB-WARNING: As of GStreamer-1.4 the PTB developers do not know of many codecs which could actually store 16 bpc content.\n");
printf("PTB-WARNING: One exception is the 'schroenc' encoder with setting gop-structure=1 for pure intra-coding and qtmux or matroskamux.\n");
printf("PTB-WARNING: Select schroenc, e.g., via the options string: ':CodecType=VideoCodec=schroenc gop-structure=1 ::: Muxer=qtmux'\n\n");
printf("PTB-WARNING: Most other codecs will downgrade your content to 8 bpc with your current settings. To avoid this you can use a special\n");
printf("PTB-WARNING: Psychtoolbox proprietary encoding, which only Psychtoolbox can read. This encoding sqeezes 16 bpc content into 8 bpc\n");
printf("PTB-WARNING: encodings. Specify the keyword UsePTB16BPC in the encoding options / movieoptions when creating a movie file with\n");
printf("PTB-WARNING: Screen('CreateMovie') or opening a video capture device for recording with the libdc1394 pro-class capture engine.\n");
printf("PTB-WARNING: Also select the number of channels during encoding/video recording to be 1 or 3 for grayscale or RGB, other channels are\n");
printf("PTB-WARNING: not supported. You must provide a 'bitdepth' of 16 and you must choose a perfectly lossless codec for encoding.\n");
printf("PTB-WARNING: You can read such movie files if you add a 'specialFlags1' setting of 512 in Screen('OpenMovie') and a\n");
printf("PTB-WARNING: 'pixelFormat' of 1 for grayscale movies or of 3 for RGB color movies. Other 'pixelFormats' are not supported.\n\n");
}
switch (numChannels) {
case 1:
// 16 bit gray encoding of luminance16 or raw16 sensor data:
sprintf(capsString, "video/x-raw, format=GRAY16_LE");
break;
case 4:
// ARGB64 - 64 bpp, 16 bpc true color encoding:
sprintf(capsString, "video/x-raw, format=ARGB64");
break;
default:
printf("PTB-ERROR: Unsupported number of color channels %i for standard compliant 16 bpc video encoding! Only 1-channel encoding of 16 bpc luminance or raw data and 4-channel RGBA 16 bpc data is supported.\n", numChannels);
goto bail;
}
// The schroenc Schroedinger Codec for Dirac encoding can apparently handle v216 format which is
// a up to 16 bpc YUV format:
if (strstr(codecString, "schroenc"))
sprintf(capsForCodecString, "videoconvert ! capsfilter caps=\"video/x-raw, format=v216\" ! ");
}
}
// Build final launch string:
if (moviefile && (strlen(moviefile) > 0)) {
// Actual recording into moviefile requested:
sprintf(launchString, "appsrc name=ptbvideoappsrc format=3 do-timestamp=0 stream-type=0 max-bytes=0 block=1 is-live=0 emit-signals=0 caps=\"%s, width=(int)%i, height=(int)%i, framerate=%i/10000 \" ! %s%s%s%s ! filesink name=ptbfilesink async=0 location=%s ", capsString, width, height, ((int) (framerate * 10000 + 0.5)), (feedbackString) ? feedbackString : "", videorateString, capsForCodecString, codecString, moviefile);
}
else {
// No writing of moviefile, just (ab)use GStreamer "recording" pipeline for image processing on behalf
// of, e.g., the libdc1394 video capture engine:
sprintf(launchString, "appsrc name=ptbvideoappsrc format=3 do-timestamp=0 stream-type=0 max-bytes=0 block=1 is-live=0 emit-signals=0 caps=\"%s, width=(int)%i, height=(int)%i, framerate=%i/10000 \" ! %s ", capsString, width, height, ((int) (framerate * 10000 + 0.5)), (feedbackString) ? feedbackString : "");
}
}
// Create a movie file for the destination movie:
if (PsychPrefStateGet_Verbosity() > 3) {
printf("PTB-INFO: Movie writing / GStreamer processing pipeline gst-launch line (without the -e option required on the command line!) is:\n");
printf("gst-launch %s\n", launchString);
}
// Build pipeline from launch string:
pwriterRec->Movie = gst_parse_launch_full((const gchar*) launchString, NULL, GST_PARSE_FLAG_FATAL_ERRORS, &myErr);
if ((NULL == pwriterRec->Movie) || myErr) {
if (PsychPrefStateGet_Verbosity() > 0) {
if (strlen(moviefile) > 0) {
printf("PTB-ERROR: In CreateMovie: Creating movie file with handle %i [%s] failed: Could not build pipeline.\n", moviehandle, moviefile);
}
else {
printf("PTB-ERROR: In CreateMovie: Creating GStreamer processing pipeline with handle %i failed: Could not build pipeline.\n", moviehandle);
}
printf("PTB-ERROR: Parameters were: %s\n", movieoptions);
printf("PTB-ERROR: Launch string was: %s\n", launchString);
printf("PTB-ERROR: GStreamer error message was: %s\n", (char*) myErr->message);
}
goto bail;
}
// Get handle to ptbvideoappsrc:
pwriterRec->ptbvideoappsrc = gst_bin_get_by_name(GST_BIN(pwriterRec->Movie), (const gchar *) "ptbvideoappsrc");
if (NULL == pwriterRec->ptbvideoappsrc) {
if (PsychPrefStateGet_Verbosity() > 0) printf("PTB-ERROR: In CreateMovie: Creating movie file with handle %i [%s] failed: Could not find ptbvideoappsrc pipeline element.\n", moviehandle, moviefile);
goto bail;
}
// Get handle to ptbaudioappsrc:
pwriterRec->ptbaudioappsrc = gst_bin_get_by_name(GST_BIN(pwriterRec->Movie), (const gchar *) "ptbaudioappsrc");
if (doAudio && (NULL == pwriterRec->ptbaudioappsrc)) {
if (PsychPrefStateGet_Verbosity() > 0) printf("PTB-ERROR: In CreateMovie: Creating movie file with handle %i [%s] failed: Could not find ptbaudioappsrc pipeline element.\n", moviehandle, moviefile);
goto bail;
}
// feedbackString provided? If so, then get handle to its appsink:
if (feedbackString) {
pwriterRec->ptbvideoappsink = gst_bin_get_by_name(GST_BIN(pwriterRec->Movie), (const gchar *) "ptbvideoappsink");
if (NULL == pwriterRec->ptbvideoappsink) {
if (PsychPrefStateGet_Verbosity() > 0) printf("PTB-ERROR: In CreateMovie: Creating movie file with handle %i [%s] failed: Could not find ptbvideoappsink pipeline element.\n", moviehandle, moviefile);
goto bail;
}
}
// Start the pipeline:
if (!PsychMoviePipelineSetState(pwriterRec->Movie, GST_STATE_PLAYING, 10)) {
if (PsychPrefStateGet_Verbosity() > 0) printf("PTB-ERROR: In CreateMovie: Creating movie file with handle %i [%s] failed: Failed to start movie encoding pipeline!\n", moviehandle, moviefile);
goto bail;
}
PsychGSProcessMovieContext(pwriterRec, FALSE);
// Increment count of open movie writers:
moviewritercount++;
if ((strlen(moviefile) > 0) && (PsychPrefStateGet_Verbosity() > 3)) printf("PTB-INFO: Moviehandle %i successfully opened for movie writing into file '%s'.\n", moviehandle, moviefile);
if ((strlen(moviefile) == 0) && (PsychPrefStateGet_Verbosity() > 3)) printf("PTB-INFO: Handle %i successfully opened for GStreamer video processing.\n", moviehandle);
// Should we dump the whole encoding pipeline graph to a file for visualization
// with GraphViz? This can be controlled via PsychTweak('GStreamerDumpFilterGraph' dirname);
if (getenv("GST_DEBUG_DUMP_DOT_DIR")) {
// Dump complete encoding filter graph to a .dot file for later visualization with GraphViz:
printf("PTB-DEBUG: Dumping movie encoder graph pre-negotiation for movie %s to directory %s.\n", moviefile, getenv("GST_DEBUG_DUMP_DOT_DIR"));
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS(GST_BIN(pwriterRec->Movie), GST_DEBUG_GRAPH_SHOW_ALL, "PsychMovieWritingGraph-PreNeg");
}
// Return new handle:
return(moviehandle);
bail:
if (pwriterRec->ptbvideoappsrc) gst_object_unref(GST_OBJECT(pwriterRec->ptbvideoappsrc));
pwriterRec->ptbvideoappsrc = NULL;
if (pwriterRec->ptbaudioappsrc) gst_object_unref(GST_OBJECT(pwriterRec->ptbaudioappsrc));
pwriterRec->ptbaudioappsrc = NULL;
if (pwriterRec->ptbvideoappsink) gst_object_unref(GST_OBJECT(pwriterRec->ptbvideoappsink));
pwriterRec->ptbvideoappsink = NULL;
if (pwriterRec->Movie) gst_object_unref(GST_OBJECT(pwriterRec->Movie));
pwriterRec->Movie = NULL;
if (pwriterRec->Context) g_main_loop_unref(pwriterRec->Context);
pwriterRec->Context = NULL;
// Return failure:
return(-1);
}
int PsychFinalizeNewMovieFile(int movieHandle)
{
int myErr = 0;
GstFlowReturn ret;
PsychMovieWriterRecordType* pwriterRec = PsychGetMovieWriter(movieHandle, FALSE);
if (NULL == pwriterRec->ptbvideoappsrc) return(0);
// Release any pending buffers:
if (pwriterRec->PixMap) gst_buffer_unref(pwriterRec->PixMap);
pwriterRec->PixMap = NULL;
PsychGSProcessMovieContext(pwriterRec, FALSE);
// Send EOS signal downstream:
ret = gst_app_src_end_of_stream(GST_APP_SRC(pwriterRec->ptbvideoappsrc));
if (ret != GST_FLOW_OK) myErr |= 1;
if (pwriterRec->ptbaudioappsrc) {
if (GST_IS_APP_SRC(pwriterRec->ptbaudioappsrc))
ret = gst_app_src_end_of_stream(GST_APP_SRC(pwriterRec->ptbaudioappsrc));
else
if (!gst_element_send_event(pwriterRec->ptbaudioappsrc, gst_event_new_eos()))
myErr |= 2;
if (ret != GST_FLOW_OK) myErr |= 2;
}
// Wait for eos flag to turn TRUE due to bus callback receiving the
// downstream EOS event that we just sent out:
while (!pwriterRec->eos) {
PsychGSProcessMovieContext(pwriterRec, FALSE);
PsychYieldIntervalSeconds(0.010);
}
// Yield another 10 msecs after EOS signalled, just to be safe:
PsychYieldIntervalSeconds(0.010);
PsychGSProcessMovieContext(pwriterRec, FALSE);
// Pause the encoding pipeline:
if (!PsychMoviePipelineSetState(pwriterRec->Movie, GST_STATE_PAUSED, 10)) {
myErr |= 4;
if (PsychPrefStateGet_Verbosity() > 0) printf("PTB-ERROR: Failed to pause movie encoding pipeline at close time!!\n");
}
PsychGSProcessMovieContext(pwriterRec, FALSE);
// Should we dump the whole encoding pipeline graph to a file for visualization
// with GraphViz? This can be controlled via PsychTweak('GStreamerDumpFilterGraph' dirname);
if (getenv("GST_DEBUG_DUMP_DOT_DIR")) {
// Dump complete encoding filter graph to a .dot file for later visualization with GraphViz:
printf("PTB-DEBUG: Dumping movie encoder graph post-encoding for moviehandle %i to directory %s.\n", movieHandle, getenv("GST_DEBUG_DUMP_DOT_DIR"));
GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS(GST_BIN(pwriterRec->Movie), GST_DEBUG_GRAPH_SHOW_ALL, "PsychMovieWritingGraph-Actual");
}
// Stop the encoding pipeline:
if (!PsychMoviePipelineSetState(pwriterRec->Movie, GST_STATE_READY, 10)) {
if (PsychPrefStateGet_Verbosity() > 0) printf("PTB-ERROR: Failed to stop movie encoding pipeline at close time!!\n");
myErr |= 8;
}
PsychGSProcessMovieContext(pwriterRec, FALSE);
// Shutdown and release encoding pipeline:
if (!PsychMoviePipelineSetState(pwriterRec->Movie, GST_STATE_NULL, 10)) {
if (PsychPrefStateGet_Verbosity() > 0) printf("PTB-ERROR: Failed to shutdown movie encoding pipeline at close time!!\n");
myErr |= 16;
}
PsychGSProcessMovieContext(pwriterRec, FALSE);
gst_object_unref(GST_OBJECT(pwriterRec->Movie));
pwriterRec->Movie = NULL;
if (pwriterRec->ptbvideoappsrc) gst_object_unref(GST_OBJECT(pwriterRec->ptbvideoappsrc));
pwriterRec->ptbvideoappsrc = NULL;
if (pwriterRec->ptbaudioappsrc) gst_object_unref(GST_OBJECT(pwriterRec->ptbaudioappsrc));
pwriterRec->ptbaudioappsrc = NULL;
if (pwriterRec->ptbvideoappsink) gst_object_unref(GST_OBJECT(pwriterRec->ptbvideoappsink));
pwriterRec->ptbvideoappsink = NULL;
// Delete video context:
if (pwriterRec->Context) g_main_loop_unref(pwriterRec->Context);
pwriterRec->Context = NULL;
// Decrement count of active writers:
moviewritercount--;
// Return success/fail status:
if (myErr == 0) {
if (PsychPrefStateGet_Verbosity() > 3) printf("PTB-INFO: Moviehandle %i successfully closed and movie written to filesystem.\n", movieHandle);
}
else if (PsychPrefStateGet_Verbosity() > 0) {
printf("PTB-ERROR: Failed to close moviehandle %i successfully! Errorcode %i.\n", movieHandle, myErr);
}
return(myErr == 0);
}
// End of GStreamer routines.
#endif // #if GST_CHECK_VERSION(1,0,0)
#else
// Surrogates to prevent linker failure if built without GStreamer:
void PsychMovieWritingInit(void) { return; }
void PsychExitMovieWriting(void) { return; }
void PsychDeleteAllMovieWriters(void) { return; }
int PsychCreateNewMovieFile(char* moviefile, int width, int height, double framerate, int numChannels, int bitdepth, char* movieoptions, char* feedbackString)
{
PsychErrorExitMsg(PsychError_unimplemented, "Sorry, movie writing not supported on this operating system");
return(-1);
}
int PsychFinalizeNewMovieFile(int movieHandle) {
PsychErrorExitMsg(PsychError_unimplemented, "Sorry, movie writing not supported on this operating system");
return FALSE;
}
unsigned char* PsychMovieCopyPulledPipelineBuffer(int moviehandle, unsigned int* twidth, unsigned int* theight, unsigned int* numChannels, unsigned int* bitdepth, double* timestamp)
{
PsychErrorExitMsg(PsychError_unimplemented, "Sorry, movie writing and recording not supported on this operating system");
return(NULL);
}
int PsychAddVideoFrameToMovie(int moviehandle, int frameDurationUnits, psych_bool isUpsideDown, double frameTimestamp)
{
PsychErrorExitMsg(PsychError_unimplemented, "Sorry, movie writing not supported on this operating system");
return(1);
}
unsigned char* PsychGetVideoFrameForMoviePtr(int moviehandle, unsigned int* twidth, unsigned int* theight, unsigned int* numChannels, unsigned int* bitdepth)
{
PsychErrorExitMsg(PsychError_unimplemented, "Sorry, movie writing not supported on this operating system");
return(NULL);
}
psych_bool PsychAddAudioBufferToMovie(int moviehandle, unsigned int nrChannels, unsigned int nrSamples, double* buffer)
{
PsychErrorExitMsg(PsychError_unimplemented, "Sorry, movie writing not supported on this operating system");
return FALSE;
}
// End of surrogate routines.
#endif
|