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 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
|
/* GStreamer
* Copyright (C) 2024 Seungha Yang <seungha@centricular.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gstnvjpegenc.h"
#include <gst/cuda/gstcuda-private.h>
#include <gst/video/video.h>
#include <gmodule.h>
#include <string>
#include <mutex>
#include <unordered_map>
#include "kernel/gstnvjpegenc.cu"
/**
* SECTION:element-nvjpegenc
* @title: nvjpegenc
*
* A nvJPEG library based JPEG encoder
*
* ## Example launch line
* ```
* gst-launch-1.0 videotestsrc num-buffers=1 ! nvjpegenc ! filesink location=myjpeg.jpg
* ```
*
* Since: 1.24
*
*/
/* *INDENT-OFF* */
#ifdef NVCODEC_CUDA_PRECOMPILED
#include "kernel/jpegenc_ptx.h"
#else
static std::unordered_map<std::string, const char *> g_precompiled_ptx_table;
#endif
static std::unordered_map<std::string, const char *> g_cubin_table;
static std::unordered_map<std::string, const char *> g_ptx_table;
static std::mutex g_kernel_table_lock;
/* *INDENT-ON* */
GST_DEBUG_CATEGORY_STATIC (gst_nv_jpeg_enc_debug);
#define GST_CAT_DEFAULT gst_nv_jpeg_enc_debug
typedef gpointer nvjpegHandle_t;
typedef gpointer nvjpegEncoderState_t;
typedef gpointer nvjpegEncoderParams_t;
enum nvjpegStatus_t
{
NVJPEG_STATUS_SUCCESS = 0,
};
enum nvjpegChromaSubsampling_t
{
NVJPEG_CSS_444 = 0,
NVJPEG_CSS_422 = 1,
NVJPEG_CSS_420 = 2,
NVJPEG_CSS_440 = 3,
NVJPEG_CSS_411 = 4,
NVJPEG_CSS_410 = 5,
NVJPEG_CSS_GRAY = 6,
NVJPEG_CSS_410V = 7,
NVJPEG_CSS_UNKNOWN = -1
};
struct nvjpegImage_t
{
unsigned char *channel[4];
size_t pitch[4];
};
/* *INDENT-OFF* */
struct GstNvJpegVTable
{
gboolean loaded = FALSE;
nvjpegStatus_t (*NvjpegCreateSimple) (nvjpegHandle_t * handle);
nvjpegStatus_t (*NvjpegDestroy) (nvjpegHandle_t handle);
nvjpegStatus_t (*NvjpegEncoderStateCreate) (nvjpegHandle_t handle,
nvjpegEncoderState_t * state, CUstream stream);
nvjpegStatus_t (*NvjpegEncoderStateDestroy) (nvjpegEncoderState_t state);
nvjpegStatus_t (*NvjpegEncoderParamsCreate) (nvjpegHandle_t handle,
nvjpegEncoderParams_t * params, CUstream stream);
nvjpegStatus_t (*NvjpegEncoderParamsDestroy) (nvjpegEncoderParams_t params);
nvjpegStatus_t (*NvjpegEncoderParamsSetQuality) (nvjpegEncoderParams_t params,
const int quality, CUstream stream);
nvjpegStatus_t (*NvjpegEncoderParamsSetSamplingFactors) (
nvjpegEncoderParams_t params, const nvjpegChromaSubsampling_t subsampling,
CUstream stream);
nvjpegStatus_t (*NvjpegEncodeYUV) (nvjpegHandle_t handle,
nvjpegEncoderState_t state, const nvjpegEncoderParams_t params,
const nvjpegImage_t * source, nvjpegChromaSubsampling_t subsampling,
int width, int height, CUstream stream);
nvjpegStatus_t (*NvjpegEncodeRetrieveBitstream) (nvjpegHandle_t handle,
nvjpegEncoderState_t state, unsigned char *data, size_t *length,
CUstream stream);
};
/* *INDENT-ON* */
static GstNvJpegVTable g_vtable = { };
#define LOAD_SYMBOL(name,func) G_STMT_START { \
if (!g_module_symbol (module, G_STRINGIFY (name), (gpointer *) &vtable->func)) { \
GST_ERROR ("Failed to load '%s', %s", G_STRINGIFY (name), g_module_error()); \
return; \
} \
} G_STMT_END;
static gboolean
gst_nv_jpeg_enc_load_library (void)
{
static GModule *module = nullptr;
GST_CUDA_CALL_ONCE_BEGIN {
gint cuda_version;
auto ret = CuDriverGetVersion (&cuda_version);
if (ret != CUDA_SUCCESS) {
GST_WARNING ("Couldn't get driver version, 0x%x", (guint) ret);
return;
}
auto cuda_major_ver = cuda_version / 1000;
std::string nvjpeg_lib_name;
#ifdef G_OS_WIN32
nvjpeg_lib_name = "nvjpeg64_" + std::to_string (cuda_major_ver) + ".dll";
module = g_module_open (nvjpeg_lib_name.c_str (), G_MODULE_BIND_LAZY);
#else
nvjpeg_lib_name = "libnvjpeg.so";
module = g_module_open (nvjpeg_lib_name.c_str (), G_MODULE_BIND_LAZY);
if (!module) {
nvjpeg_lib_name += "." + std::to_string (cuda_major_ver);
module = g_module_open (nvjpeg_lib_name.c_str (), G_MODULE_BIND_LAZY);
}
#endif
if (!module)
return;
GstNvJpegVTable *vtable = &g_vtable;
LOAD_SYMBOL (nvjpegCreateSimple, NvjpegCreateSimple);
LOAD_SYMBOL (nvjpegDestroy, NvjpegDestroy);
LOAD_SYMBOL (nvjpegEncoderStateCreate, NvjpegEncoderStateCreate);
LOAD_SYMBOL (nvjpegEncoderStateDestroy, NvjpegEncoderStateDestroy);
LOAD_SYMBOL (nvjpegEncoderParamsCreate, NvjpegEncoderParamsCreate);
LOAD_SYMBOL (nvjpegEncoderParamsDestroy, NvjpegEncoderParamsDestroy);
LOAD_SYMBOL (nvjpegEncoderParamsSetQuality, NvjpegEncoderParamsSetQuality);
LOAD_SYMBOL (nvjpegEncoderParamsSetSamplingFactors,
NvjpegEncoderParamsSetSamplingFactors);
LOAD_SYMBOL (nvjpegEncodeYUV, NvjpegEncodeYUV);
LOAD_SYMBOL (nvjpegEncodeRetrieveBitstream, NvjpegEncodeRetrieveBitstream);
vtable->loaded = TRUE;
GST_INFO ("nvjpeg library loaded");
}
GST_CUDA_CALL_ONCE_END;
return g_vtable.loaded;
}
enum
{
PROP_0,
PROP_CUDA_DEVICE_ID,
PROP_QUALITY,
};
#define DEFAULT_JPEG_QUALITY 85
static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_SRC, GST_PAD_ALWAYS,
GST_STATIC_CAPS ("image/jpeg, width = " GST_VIDEO_SIZE_RANGE ", "
"height = " GST_VIDEO_SIZE_RANGE)
);
struct GstNvJpegEncCData
{
guint cuda_device_id;
GstCaps *sink_caps;
gboolean have_nvrtc;
gboolean autogpu;
};
/* *INDENT-OFF* */
struct GstNvJpegEncPrivate
{
GstCudaContext *context = nullptr;
GstCudaStream *stream = nullptr;
nvjpegHandle_t handle = nullptr;
nvjpegEncoderState_t state = nullptr;
nvjpegEncoderParams_t params = nullptr;
nvjpegChromaSubsampling_t subsampling;
CUmodule module = nullptr;
CUfunction kernel_func = nullptr;
bool launch_kernel = false;
CUdeviceptr uv[2] = { 0, };
gint pitch;
GstVideoInfo info;
GstBufferPool *pool = nullptr;
GstBuffer *fallback_buf = nullptr;
std::recursive_mutex lock;
guint quality = DEFAULT_JPEG_QUALITY;
bool quality_updated = false;
gboolean use_stream_ordered = FALSE;
guint cuda_device_id = 0;
};
/* *INDENT-ON* */
struct GstNvJpegEnc
{
GstVideoEncoder parent;
GstNvJpegEncPrivate *priv;
};
struct GstNvJpegEncClass
{
GstVideoEncoderClass parent_class;
guint cuda_device_id;
gboolean have_nvrtc;
gboolean autogpu;
};
static void gst_nv_jpeg_enc_finalize (GObject * object);
static void gst_nv_jpeg_enc_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec);
static void gst_nv_jpeg_enc_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec);
static void gst_nv_jpeg_enc_set_context (GstElement * element,
GstContext * context);
static gboolean gst_nv_jpeg_enc_open (GstVideoEncoder * encoder);
static gboolean gst_nv_jpeg_enc_stop (GstVideoEncoder * encoder);
static gboolean gst_nv_jpeg_enc_close (GstVideoEncoder * encoder);
static gboolean gst_nv_jpeg_enc_sink_query (GstVideoEncoder * encoder,
GstQuery * query);
static gboolean gst_nv_jpeg_enc_src_query (GstVideoEncoder * encoder,
GstQuery * query);
static gboolean gst_nv_jpeg_enc_propose_allocation (GstVideoEncoder * encoder,
GstQuery * query);
static gboolean gst_nv_jpeg_enc_set_format (GstVideoEncoder * encoder,
GstVideoCodecState * state);
static GstFlowReturn gst_nv_jpeg_enc_handle_frame (GstVideoEncoder * encoder,
GstVideoCodecFrame * frame);
static GstElementClass *parent_class = nullptr;
#define GST_NV_JPEG_ENC(object) ((GstNvJpegEnc *) (object))
#define GST_NV_JPEG_ENC_GET_CLASS(object) \
(G_TYPE_INSTANCE_GET_CLASS ((object),G_TYPE_FROM_INSTANCE (object),GstNvJpegEncClass))
static void
gst_nv_jpeg_enc_class_init (GstNvJpegEncClass * klass, gpointer data)
{
auto object_class = G_OBJECT_CLASS (klass);
auto element_class = GST_ELEMENT_CLASS (klass);
auto encoder_class = GST_VIDEO_ENCODER_CLASS (klass);
auto cdata = (GstNvJpegEncCData *) data;
parent_class = (GstElementClass *) g_type_class_peek_parent (klass);
object_class->finalize = gst_nv_jpeg_enc_finalize;
object_class->set_property = gst_nv_jpeg_enc_set_property;
object_class->get_property = gst_nv_jpeg_enc_get_property;
g_object_class_install_property (object_class, PROP_CUDA_DEVICE_ID,
g_param_spec_uint ("cuda-device-id", "CUDA Device ID",
"CUDA device ID of associated GPU", 0, G_MAXINT, 0,
(GParamFlags) (GST_PARAM_DOC_SHOW_DEFAULT |
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)));
g_object_class_install_property (object_class, PROP_QUALITY,
g_param_spec_uint ("quality", "Quality",
"Quality of encoding", 1, 100, DEFAULT_JPEG_QUALITY,
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
if (cdata->autogpu) {
gst_element_class_set_static_metadata (element_class,
"NVIDIA JPEG Encoder Auto GPU Select Mode",
"Codec/Encoder/Video/Hardware",
"Encode JPEG image using nvJPEG library",
"Seungha Yang <seungha@centricular.com>");
} else {
gst_element_class_set_static_metadata (element_class,
"NVIDIA JPEG Encoder", "Codec/Encoder/Video/Hardware",
"Encode JPEG image using nvJPEG library",
"Seungha Yang <seungha@centricular.com>");
}
auto sink_templ = gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
cdata->sink_caps);
gst_element_class_add_pad_template (element_class, sink_templ);
gst_element_class_add_static_pad_template (element_class, &src_template);
element_class->set_context = GST_DEBUG_FUNCPTR (gst_nv_jpeg_enc_set_context);
encoder_class->open = GST_DEBUG_FUNCPTR (gst_nv_jpeg_enc_open);
encoder_class->stop = GST_DEBUG_FUNCPTR (gst_nv_jpeg_enc_stop);
encoder_class->close = GST_DEBUG_FUNCPTR (gst_nv_jpeg_enc_close);
encoder_class->sink_query = GST_DEBUG_FUNCPTR (gst_nv_jpeg_enc_sink_query);
encoder_class->src_query = GST_DEBUG_FUNCPTR (gst_nv_jpeg_enc_src_query);
encoder_class->propose_allocation =
GST_DEBUG_FUNCPTR (gst_nv_jpeg_enc_propose_allocation);
encoder_class->set_format = GST_DEBUG_FUNCPTR (gst_nv_jpeg_enc_set_format);
encoder_class->handle_frame =
GST_DEBUG_FUNCPTR (gst_nv_jpeg_enc_handle_frame);
klass->cuda_device_id = cdata->cuda_device_id;
klass->have_nvrtc = cdata->have_nvrtc;
klass->autogpu = cdata->autogpu;
gst_caps_unref (cdata->sink_caps);
g_free (cdata);
}
static void
gst_nv_jpeg_enc_init (GstNvJpegEnc * self)
{
auto klass = GST_NV_JPEG_ENC_GET_CLASS (self);
self->priv = new GstNvJpegEncPrivate ();
self->priv->cuda_device_id = klass->cuda_device_id;
}
static void
gst_nv_jpeg_enc_finalize (GObject * object)
{
auto self = GST_NV_JPEG_ENC (object);
delete self->priv;
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static void
gst_nv_jpeg_enc_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec)
{
auto self = GST_NV_JPEG_ENC (object);
auto priv = self->priv;
std::lock_guard < std::recursive_mutex > lk (priv->lock);
switch (prop_id) {
case PROP_QUALITY:
{
auto quality = g_value_get_uint (value);
if (quality != priv->quality) {
priv->quality_updated = true;
priv->quality = quality;
}
break;
}
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gst_nv_jpeg_enc_get_property (GObject * object, guint prop_id, GValue * value,
GParamSpec * pspec)
{
auto self = GST_NV_JPEG_ENC (object);
auto priv = self->priv;
std::lock_guard < std::recursive_mutex > lk (priv->lock);
switch (prop_id) {
case PROP_CUDA_DEVICE_ID:
g_value_set_uint (value, priv->cuda_device_id);
break;
case PROP_QUALITY:
g_value_set_uint (value, priv->quality);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gst_nv_jpeg_enc_set_context (GstElement * element, GstContext * context)
{
auto self = GST_NV_JPEG_ENC (element);
auto priv = self->priv;
{
std::lock_guard < std::recursive_mutex > lk (priv->lock);
gst_cuda_handle_set_context (element, context, priv->cuda_device_id,
&priv->context);
}
GST_ELEMENT_CLASS (parent_class)->set_context (element, context);
}
static gboolean
default_stream_ordered_alloc_enabled (void)
{
static gboolean enabled = FALSE;
GST_CUDA_CALL_ONCE_BEGIN {
if (g_getenv ("GST_CUDA_ENABLE_STREAM_ORDERED_ALLOC"))
enabled = TRUE;
}
GST_CUDA_CALL_ONCE_END;
return enabled;
}
/* Caller should push context */
static gboolean
gst_nv_jpeg_enc_load_module (GstNvJpegEnc * self)
{
auto klass = GST_NV_JPEG_ENC_GET_CLASS (self);
auto priv = self->priv;
if (!priv->module && klass->have_nvrtc) {
const gchar *program = nullptr;
auto precompiled = g_precompiled_ptx_table.find ("GstJpegEnc");
CUresult ret;
if (precompiled != g_precompiled_ptx_table.end ())
program = precompiled->second;
if (program) {
GST_DEBUG_OBJECT (self, "Precompiled PTX available");
ret = CuModuleLoadData (&priv->module, program);
if (ret != CUDA_SUCCESS) {
GST_WARNING_OBJECT (self, "Could not load module from precompiled PTX");
priv->module = nullptr;
program = nullptr;
}
}
if (!program) {
std::lock_guard < std::mutex > lk (g_kernel_table_lock);
std::string cubin_kernel_name =
"GstJpegEnc_device_" + std::to_string (priv->cuda_device_id);
auto cubin = g_cubin_table.find (cubin_kernel_name);
if (cubin == g_cubin_table.end ()) {
GST_DEBUG_OBJECT (self, "Building CUBIN");
program = gst_cuda_nvrtc_compile_cubin (GstNvJpegEncConvertMain_str,
priv->cuda_device_id);
if (program)
g_cubin_table[cubin_kernel_name] = program;
} else {
GST_DEBUG_OBJECT (self, "Found cached CUBIN");
program = cubin->second;
}
if (program) {
GST_DEBUG_OBJECT (self, "Loading CUBIN module");
ret = CuModuleLoadData (&priv->module, program);
if (ret != CUDA_SUCCESS) {
GST_WARNING_OBJECT (self, "Could not load module from cached CUBIN");
program = nullptr;
priv->module = nullptr;
}
}
if (!program) {
auto ptx = g_ptx_table.find ("GstJpegEnc");
if (ptx == g_ptx_table.end ()) {
GST_DEBUG_OBJECT (self, "Building PTX");
program = gst_cuda_nvrtc_compile (GstNvJpegEncConvertMain_str);
if (program)
g_ptx_table["GstJpegEnc"] = program;
} else {
GST_DEBUG_OBJECT (self, "Found cached PTX");
program = ptx->second;
}
}
if (program && !priv->module) {
GST_DEBUG_OBJECT (self, "Loading PTX module");
ret = CuModuleLoadData (&priv->module, program);
if (ret != CUDA_SUCCESS) {
GST_ERROR_OBJECT (self, "Could not load module from PTX");
program = nullptr;
priv->module = nullptr;
}
}
}
if (!priv->module) {
GST_ERROR_OBJECT (self, "Couldn't load module");
return FALSE;
}
ret = CuModuleGetFunction (&priv->kernel_func, priv->module,
"GstNvJpegEncConvertMain");
if (!gst_cuda_result (ret)) {
GST_ERROR_OBJECT (self, "Couldn't get kernel function");
return FALSE;
}
}
return TRUE;
}
static gboolean
gst_nv_jpeg_enc_open (GstVideoEncoder * encoder)
{
auto self = GST_NV_JPEG_ENC (encoder);
auto priv = self->priv;
auto klass = GST_NV_JPEG_ENC_GET_CLASS (self);
GST_DEBUG_OBJECT (self, "Open");
/* Will open GPU later */
if (klass->autogpu)
return TRUE;
if (!gst_cuda_ensure_element_context (GST_ELEMENT_CAST (encoder),
priv->cuda_device_id, &priv->context)) {
GST_ERROR_OBJECT (self, "Couldn't create CUDA context");
return FALSE;
}
if (!priv->stream)
priv->stream = gst_cuda_stream_new (priv->context);
return TRUE;
}
static void
gst_nv_jpeg_enc_reset (GstNvJpegEnc * self)
{
auto priv = self->priv;
if (priv->context && gst_cuda_context_push (priv->context)) {
if (priv->state)
g_vtable.NvjpegEncoderStateDestroy (priv->state);
if (priv->params)
g_vtable.NvjpegEncoderParamsDestroy (priv->params);
if (priv->handle)
g_vtable.NvjpegDestroy (priv->handle);
gboolean need_sync = FALSE;
auto stream = gst_cuda_stream_get_handle (priv->stream);
for (guint i = 0; i < G_N_ELEMENTS (priv->uv); i++) {
if (priv->uv[i]) {
if (priv->use_stream_ordered) {
CuMemFreeAsync (priv->uv[i], stream);
need_sync = TRUE;
} else {
CuMemFree (priv->uv[i]);
}
priv->uv[i] = 0;
}
}
if (need_sync)
CuStreamSynchronize (stream);
gst_cuda_context_pop (nullptr);
}
priv->state = nullptr;
priv->params = nullptr;
priv->handle = nullptr;
priv->launch_kernel = false;
gst_clear_buffer (&priv->fallback_buf);
if (priv->pool) {
gst_buffer_pool_set_active (priv->pool, FALSE);
gst_clear_object (&priv->pool);
}
}
static gboolean
gst_nv_jpeg_enc_stop (GstVideoEncoder * encoder)
{
auto self = GST_NV_JPEG_ENC (encoder);
auto priv = self->priv;
auto klass = GST_NV_JPEG_ENC_GET_CLASS (self);
gst_nv_jpeg_enc_reset (self);
if (priv->context && priv->module) {
gst_cuda_context_push (priv->context);
if (priv->module) {
CuModuleUnload (priv->module);
priv->module = nullptr;
}
gst_cuda_context_pop (nullptr);
}
priv->module = nullptr;
priv->handle = nullptr;
if (klass->autogpu) {
gst_clear_cuda_stream (&priv->stream);
gst_clear_object (&priv->context);
}
return TRUE;
}
static gboolean
gst_nv_jpeg_enc_close (GstVideoEncoder * encoder)
{
auto self = GST_NV_JPEG_ENC (encoder);
auto priv = self->priv;
GST_DEBUG_OBJECT (self, "Close");
gst_clear_cuda_stream (&priv->stream);
gst_clear_object (&priv->context);
return TRUE;
}
static gboolean
gst_nv_jpeg_enc_handle_query (GstNvJpegEnc * self, GstQuery * query)
{
auto priv = self->priv;
switch (GST_QUERY_TYPE (query)) {
case GST_QUERY_CONTEXT:
{
std::lock_guard < std::recursive_mutex > lk (priv->lock);
return gst_cuda_handle_context_query (GST_ELEMENT (self), query,
priv->context);
}
default:
break;
}
return FALSE;
}
static gboolean
gst_nv_jpeg_enc_sink_query (GstVideoEncoder * encoder, GstQuery * query)
{
auto self = GST_NV_JPEG_ENC (encoder);
if (gst_nv_jpeg_enc_handle_query (self, query))
return TRUE;
return GST_VIDEO_ENCODER_CLASS (parent_class)->sink_query (encoder, query);
}
static gboolean
gst_nv_jpeg_enc_src_query (GstVideoEncoder * encoder, GstQuery * query)
{
auto self = GST_NV_JPEG_ENC (encoder);
if (gst_nv_jpeg_enc_handle_query (self, query))
return TRUE;
return GST_VIDEO_ENCODER_CLASS (parent_class)->src_query (encoder, query);
}
static gboolean
gst_nv_jpeg_enc_propose_allocation (GstVideoEncoder * encoder, GstQuery * query)
{
auto self = GST_NV_JPEG_ENC (encoder);
auto priv = self->priv;
auto klass = GST_NV_JPEG_ENC_GET_CLASS (self);
GstVideoInfo info;
GstBufferPool *pool = nullptr;
GstCaps *caps;
gboolean use_cuda_pool = FALSE;
gst_query_parse_allocation (query, &caps, NULL);
if (!caps) {
GST_WARNING_OBJECT (self, "null caps in query");
return FALSE;
}
if (klass->autogpu) {
/* Use upstream pool in case of auto select mode. We don't know which
* GPU to use at this moment */
gst_query_add_allocation_meta (query, GST_VIDEO_META_API_TYPE, nullptr);
return TRUE;
}
if (!gst_video_info_from_caps (&info, caps)) {
GST_WARNING_OBJECT (self, "Failed to convert caps into info");
return FALSE;
}
auto features = gst_caps_get_features (caps, 0);
if (gst_caps_features_contains (features,
GST_CAPS_FEATURE_MEMORY_CUDA_MEMORY)) {
GST_DEBUG_OBJECT (self, "Upstream support CUDA memory");
use_cuda_pool = TRUE;
}
if (use_cuda_pool)
pool = gst_cuda_buffer_pool_new (priv->context);
else
pool = gst_video_buffer_pool_new ();
auto config = gst_buffer_pool_get_config (pool);
gst_buffer_pool_config_add_option (config, GST_BUFFER_POOL_OPTION_VIDEO_META);
if (!use_cuda_pool) {
gst_buffer_pool_config_add_option (config,
GST_BUFFER_POOL_OPTION_VIDEO_ALIGNMENT);
}
guint size = GST_VIDEO_INFO_SIZE (&info);
gst_buffer_pool_config_set_params (config, caps, size, 0, 0);
if (use_cuda_pool && priv->stream) {
/* Set our stream on buffer pool config so that CUstream can be shared */
gst_buffer_pool_config_set_cuda_stream (config, priv->stream);
}
if (!gst_buffer_pool_set_config (pool, config)) {
GST_WARNING_OBJECT (self, "Failed to set pool config");
gst_object_unref (pool);
return FALSE;
}
config = gst_buffer_pool_get_config (pool);
gst_buffer_pool_config_get_params (config, nullptr, &size, nullptr, nullptr);
gst_structure_free (config);
gst_query_add_allocation_pool (query, pool, size, 0, 0);
gst_query_add_allocation_meta (query, GST_VIDEO_META_API_TYPE, nullptr);
gst_object_unref (pool);
return TRUE;
}
static gboolean
gst_nv_jpeg_enc_prepare_kernel_resource (GstNvJpegEnc * self)
{
auto priv = self->priv;
if (!priv->launch_kernel)
return TRUE;
if (!gst_nv_jpeg_enc_load_module (self))
return FALSE;
auto stream = gst_cuda_stream_get_handle (priv->stream);
auto width = (priv->info.width + 1) / 2;
auto height = (priv->info.height + 1) / 2;
size_t pitch;
CUresult ret = CUDA_SUCCESS;
if (priv->use_stream_ordered) {
gint texture_align = gst_cuda_context_get_texture_alignment (priv->context);
pitch = ((width + texture_align - 1) / texture_align) * texture_align;
ret = CuMemAllocAsync (&priv->uv[0], pitch * height, stream);
if (!gst_cuda_result (ret)) {
GST_ERROR_OBJECT (self, "Couldn't allocate U plane memory");
return FALSE;
}
ret = CuMemAllocAsync (&priv->uv[1], pitch * height, stream);
if (!gst_cuda_result (ret)) {
GST_ERROR_OBJECT (self, "Couldn't allocate V plane memory");
return FALSE;
}
if (!gst_cuda_result (CuStreamSynchronize (stream))) {
GST_ERROR_OBJECT (self, "Couldn't synchronize stream");
return FALSE;
}
} else {
ret = CuMemAllocPitch (&priv->uv[0], &pitch, width, height, 16);
if (!gst_cuda_result (ret)) {
GST_ERROR_OBJECT (self, "Couldn't allocate U plane memory");
return FALSE;
}
ret = CuMemAllocPitch (&priv->uv[1], &pitch, width, height, 16);
if (!gst_cuda_result (ret)) {
GST_ERROR_OBJECT (self, "Couldn't allocate V plane memory");
return FALSE;
}
}
priv->pitch = pitch;
return TRUE;
}
static gboolean
gst_nv_jpeg_enc_init_session (GstNvJpegEnc * self, GstBuffer * in_buf)
{
auto klass = GST_NV_JPEG_ENC_GET_CLASS (self);
auto priv = self->priv;
gst_nv_jpeg_enc_reset (self);
if (klass->autogpu) {
if (!in_buf) {
GST_DEBUG_OBJECT (self, "Open session later for auto gpu mode");
return TRUE;
}
std::lock_guard < std::recursive_mutex > lk (priv->lock);
if (priv->module) {
gst_cuda_context_push (priv->context);
CuModuleUnload (priv->module);
priv->module = nullptr;
gst_cuda_context_pop (nullptr);
}
gst_clear_cuda_stream (&priv->stream);
gst_clear_object (&priv->context);
auto mem = gst_buffer_peek_memory (in_buf, 0);
if (gst_is_cuda_memory (mem)) {
auto cmem = GST_CUDA_MEMORY_CAST (mem);
priv->context = (GstCudaContext *) gst_object_ref (cmem->context);
guint device_id = 0;
g_object_get (priv->context, "cuda-device-id", &device_id, nullptr);
GST_DEBUG_OBJECT (self, "Upstream is CUDA with device id %d", device_id);
if (device_id != priv->cuda_device_id) {
priv->cuda_device_id = device_id;
g_object_notify (G_OBJECT (self), "cuda-device-id");
}
priv->stream = gst_cuda_memory_get_stream (cmem);
if (priv->stream)
gst_cuda_stream_ref (priv->stream);
} else {
GST_DEBUG_OBJECT (self, "Upstream is not CUDA");
if (!gst_cuda_ensure_element_context (GST_ELEMENT_CAST (self),
priv->cuda_device_id, &priv->context)) {
GST_ERROR_OBJECT (self, "Couldn't create CUDA context");
return FALSE;
}
priv->stream = gst_cuda_stream_new (priv->context);
}
}
switch (GST_VIDEO_INFO_FORMAT (&priv->info)) {
case GST_VIDEO_FORMAT_I420:
priv->subsampling = NVJPEG_CSS_420;
break;
case GST_VIDEO_FORMAT_NV12:
priv->subsampling = NVJPEG_CSS_420;
priv->launch_kernel = true;
break;
case GST_VIDEO_FORMAT_Y42B:
priv->subsampling = NVJPEG_CSS_422;
break;
case GST_VIDEO_FORMAT_Y444:
priv->subsampling = NVJPEG_CSS_444;
break;
default:
g_assert_not_reached ();
return FALSE;
}
priv->use_stream_ordered = FALSE;
g_object_get (priv->context, "prefer-stream-ordered-alloc",
&priv->use_stream_ordered, nullptr);
if (!priv->use_stream_ordered)
priv->use_stream_ordered = default_stream_ordered_alloc_enabled ();
std::lock_guard < std::recursive_mutex > lk (priv->lock);
priv->quality_updated = false;
if (!gst_cuda_context_push (priv->context)) {
GST_ERROR_OBJECT (self, "Couldn't push context");
gst_nv_jpeg_enc_reset (self);
return FALSE;
}
if (!gst_nv_jpeg_enc_prepare_kernel_resource (self)) {
gst_cuda_context_pop (nullptr);
gst_nv_jpeg_enc_reset (self);
return FALSE;
}
auto ret = g_vtable.NvjpegCreateSimple (&priv->handle);
if (ret != NVJPEG_STATUS_SUCCESS) {
GST_ERROR_OBJECT (self, "Couldn't create encoder handle");
gst_cuda_context_pop (nullptr);
gst_nv_jpeg_enc_reset (self);
return FALSE;
}
auto stream = gst_cuda_stream_get_handle (priv->stream);
ret = g_vtable.NvjpegEncoderParamsCreate (priv->handle, &priv->params,
stream);
if (ret != NVJPEG_STATUS_SUCCESS) {
GST_ERROR_OBJECT (self, "Couldn't create param handle, ret %d", ret);
gst_cuda_context_pop (nullptr);
gst_nv_jpeg_enc_reset (self);
return FALSE;
}
ret = g_vtable.NvjpegEncoderParamsSetQuality (priv->params,
priv->quality, stream);
if (ret != NVJPEG_STATUS_SUCCESS) {
GST_ERROR_OBJECT (self, "Couldn't set quality, ret %d", ret);
gst_cuda_context_pop (nullptr);
gst_nv_jpeg_enc_reset (self);
return FALSE;
}
ret = g_vtable.NvjpegEncoderParamsSetSamplingFactors (priv->params,
priv->subsampling, stream);
if (ret != NVJPEG_STATUS_SUCCESS) {
GST_ERROR_OBJECT (self, "Couldn't set subsampling factor, ret %d", ret);
gst_cuda_context_pop (nullptr);
gst_nv_jpeg_enc_reset (self);
return FALSE;
}
ret = g_vtable.NvjpegEncoderStateCreate (priv->handle, &priv->state, stream);
gst_cuda_context_pop (nullptr);
if (ret != NVJPEG_STATUS_SUCCESS) {
GST_ERROR_OBJECT (self, "Couldn't create state handle, ret %d", ret);
gst_nv_jpeg_enc_reset (self);
return FALSE;
}
priv->pool = gst_cuda_buffer_pool_new (priv->context);
auto config = gst_buffer_pool_get_config (priv->pool);
auto caps = gst_video_info_to_caps (&priv->info);
gst_buffer_pool_config_add_option (config, GST_BUFFER_POOL_OPTION_VIDEO_META);
gst_buffer_pool_config_set_params (config, caps, priv->info.size, 0, 0);
gst_caps_unref (caps);
if (priv->stream)
gst_buffer_pool_config_set_cuda_stream (config, priv->stream);
if (!gst_buffer_pool_set_config (priv->pool, config)) {
GST_ERROR_OBJECT (self, "Failed to set pool config");
gst_nv_jpeg_enc_reset (self);
return FALSE;
}
if (!gst_buffer_pool_set_active (priv->pool, TRUE)) {
GST_ERROR_OBJECT (self, "Pool set active failed");
gst_nv_jpeg_enc_reset (self);
return FALSE;
}
return TRUE;
}
static gboolean
gst_nv_jpeg_enc_set_format (GstVideoEncoder * encoder,
GstVideoCodecState * state)
{
auto self = GST_NV_JPEG_ENC (encoder);
auto priv = self->priv;
priv->info = state->info;
auto caps = gst_caps_new_empty_simple ("image/jpeg");
auto output_state = gst_video_encoder_set_output_state (encoder, caps,
state);
gst_video_codec_state_unref (output_state);
return gst_nv_jpeg_enc_init_session (self, nullptr);
}
static GstBuffer *
gst_nv_jpeg_enc_upload_system (GstNvJpegEnc * self, GstBuffer * buffer)
{
auto priv = self->priv;
auto info = &priv->info;
if (!priv->fallback_buf) {
gst_buffer_pool_acquire_buffer (priv->pool, &priv->fallback_buf, nullptr);
if (!priv->fallback_buf) {
GST_ERROR_OBJECT (self, "Couldn't acquire upload buffer");
return nullptr;
}
}
if (!gst_cuda_buffer_copy (priv->fallback_buf, GST_CUDA_BUFFER_COPY_CUDA,
info, buffer, GST_CUDA_BUFFER_COPY_SYSTEM, info, priv->context,
priv->stream)) {
GST_ERROR_OBJECT (self, "Couldn't upload frame");
return nullptr;
}
return priv->fallback_buf;
}
static GstBuffer *
gst_nv_jpeg_enc_upload (GstNvJpegEnc * self, GstBuffer * buffer)
{
auto priv = self->priv;
auto mem = gst_buffer_peek_memory (buffer, 0);
if (!gst_is_cuda_memory (mem))
return gst_nv_jpeg_enc_upload_system (self, buffer);
auto cmem = GST_CUDA_MEMORY_CAST (mem);
if (cmem->context != priv->context)
return gst_nv_jpeg_enc_upload_system (self, buffer);
auto stream = gst_cuda_memory_get_stream (cmem);
if (stream != priv->stream)
gst_cuda_memory_sync (cmem);
return buffer;
}
#define CUDA_BLOCK_X 16
#define CUDA_BLOCK_Y 16
#define DIV_UP(size,block) (((size) + ((block) - 1)) / (block))
static gboolean
gst_nv_jpeg_enc_fill_source (GstNvJpegEnc * self, GstBuffer * buffer,
nvjpegImage_t * source)
{
auto priv = self->priv;
auto upload = gst_nv_jpeg_enc_upload (self, buffer);
if (!upload)
return FALSE;
GstVideoFrame frame;
if (!gst_video_frame_map (&frame,
&priv->info, upload, (GstMapFlags) (GST_MAP_READ | GST_MAP_CUDA))) {
GST_ERROR_OBJECT (self, "Couldn't map input buffer");
return FALSE;
}
if (priv->launch_kernel) {
CUtexObject texture;
auto cmem = (GstCudaMemory *) gst_buffer_peek_memory (upload, 0);
if (!gst_cuda_memory_get_texture (cmem,
1, CU_TR_FILTER_MODE_POINT, &texture)) {
GST_ERROR_OBJECT (self, "Couldn't get texture");
gst_video_frame_unmap (&frame);
return FALSE;
}
gint width = priv->info.width / 2;
gint height = priv->info.height / 2;
gpointer args[] = { &texture, &priv->uv[0], &priv->uv[1], &width, &height,
&priv->pitch
};
if (!gst_cuda_context_push (priv->context)) {
GST_ERROR_OBJECT (self, "Couldn't push context");
gst_video_frame_unmap (&frame);
return FALSE;
}
auto stream = gst_cuda_stream_get_handle (priv->stream);
auto ret = CuLaunchKernel (priv->kernel_func, DIV_UP (width, CUDA_BLOCK_X),
DIV_UP (height, CUDA_BLOCK_Y), 1, CUDA_BLOCK_X, CUDA_BLOCK_Y, 1, 0,
stream, args, nullptr);
gst_cuda_context_pop (nullptr);
if (!gst_cuda_result (ret)) {
GST_ERROR_OBJECT (self, "Couldn't launch kernel");
gst_video_frame_unmap (&frame);
return FALSE;
}
source->channel[0] = (unsigned char *)
GST_VIDEO_FRAME_PLANE_DATA (&frame, 0);
source->pitch[0] = GST_VIDEO_FRAME_PLANE_STRIDE (&frame, 0);
source->channel[1] = (unsigned char *) priv->uv[0];
source->channel[2] = (unsigned char *) priv->uv[1];
source->pitch[1] = source->pitch[2] = priv->pitch;
} else {
for (guint i = 0; i < GST_VIDEO_FRAME_N_PLANES (&frame); i++) {
source->channel[i] = (unsigned char *)
GST_VIDEO_FRAME_PLANE_DATA (&frame, i);
source->pitch[i] = GST_VIDEO_FRAME_PLANE_STRIDE (&frame, i);
}
}
gst_video_frame_unmap (&frame);
return TRUE;
}
static GstFlowReturn
gst_nv_jpeg_enc_handle_frame (GstVideoEncoder * encoder,
GstVideoCodecFrame * frame)
{
auto self = GST_NV_JPEG_ENC (encoder);
auto priv = self->priv;
if (!priv->handle && !gst_nv_jpeg_enc_init_session (self,
frame->input_buffer)) {
gst_video_encoder_finish_frame (encoder, frame);
return GST_FLOW_ERROR;
}
if (!gst_cuda_context_push (priv->context)) {
GST_ERROR_OBJECT (self, "Couldn't push context");
gst_video_encoder_finish_frame (encoder, frame);
return GST_FLOW_ERROR;
}
auto stream = gst_cuda_stream_get_handle (priv->stream);
{
std::lock_guard < std::recursive_mutex > lk (priv->lock);
if (priv->quality_updated) {
priv->quality_updated = false;
auto ret = g_vtable.NvjpegEncoderParamsSetQuality (priv->params,
priv->quality, stream);
if (ret != NVJPEG_STATUS_SUCCESS) {
GST_ERROR_OBJECT (self, "Couldn't set quality, ret %d", ret);
gst_cuda_context_pop (nullptr);
gst_video_encoder_finish_frame (encoder, frame);
return GST_FLOW_ERROR;
}
}
}
nvjpegImage_t source = { };
if (!gst_nv_jpeg_enc_fill_source (self, frame->input_buffer, &source)) {
GST_ERROR_OBJECT (self, "Couldn't fill source struct");
gst_cuda_context_pop (nullptr);
gst_video_encoder_finish_frame (encoder, frame);
return GST_FLOW_ERROR;
}
auto ret = g_vtable.NvjpegEncodeYUV (priv->handle, priv->state, priv->params,
&source, priv->subsampling, priv->info.width, priv->info.height, stream);
if (ret != NVJPEG_STATUS_SUCCESS) {
GST_ERROR_OBJECT (self, "nvjpegEncodeYUV failed, ret: %d", ret);
gst_cuda_context_pop (nullptr);
gst_video_encoder_finish_frame (encoder, frame);
return GST_FLOW_ERROR;
}
size_t length = 0;
ret = g_vtable.NvjpegEncodeRetrieveBitstream (priv->handle,
priv->state, nullptr, &length, stream);
if (ret != NVJPEG_STATUS_SUCCESS) {
GST_ERROR_OBJECT (self,
"nvjpegEncodeRetrieveBitstream failed, ret: %d", ret);
gst_cuda_context_pop (nullptr);
gst_video_encoder_finish_frame (encoder, frame);
return GST_FLOW_ERROR;
}
CuStreamSynchronize (stream);
auto outbuf = gst_buffer_new_and_alloc (length);
GstMapInfo map;
gst_buffer_map (outbuf, &map, GST_MAP_WRITE);
ret = g_vtable.NvjpegEncodeRetrieveBitstream (priv->handle,
priv->state, (unsigned char *) map.data, &length, stream);
gst_buffer_unmap (outbuf, &map);
gst_cuda_context_pop (nullptr);
if (ret != NVJPEG_STATUS_SUCCESS) {
GST_ERROR_OBJECT (self,
"nvjpegEncodeRetrieveBitstream failed, ret: %d", ret);
gst_buffer_unref (outbuf);
gst_video_encoder_finish_frame (encoder, frame);
return GST_FLOW_ERROR;
}
frame->output_buffer = outbuf;
frame->dts = frame->pts;
GST_VIDEO_CODEC_FRAME_SET_SYNC_POINT (frame);
return gst_video_encoder_finish_frame (encoder, frame);
}
gboolean
gst_nv_jpeg_enc_register (GstPlugin * plugin, GstCudaContext * context,
guint rank, gboolean have_nvrtc)
{
GST_DEBUG_CATEGORY_INIT (gst_nv_jpeg_enc_debug, "nvjpegenc", 0, "nvjpegenc");
if (!gst_nv_jpeg_enc_load_library ())
return FALSE;
GType type;
guint index = 0;
GTypeInfo type_info = {
sizeof (GstNvJpegEncClass),
nullptr,
nullptr,
(GClassInitFunc) gst_nv_jpeg_enc_class_init,
nullptr,
nullptr,
sizeof (GstNvJpegEnc),
0,
(GInstanceInitFunc) gst_nv_jpeg_enc_init,
};
guint cuda_device_id = 0;
gboolean autogpu = FALSE;
if (!context)
autogpu = TRUE;
else
g_object_get (context, "cuda-device-id", &cuda_device_id, nullptr);
std::string format_string;
#ifdef NVCODEC_CUDA_PRECOMPILED
have_nvrtc = TRUE;
#endif
if (have_nvrtc)
format_string = "NV12, I420, Y42B, Y444";
else
format_string = "I420, Y42B, Y444";
std::string cuda_caps_str = "video/x-raw(memory:CUDAMemory), "
"format = (string) { " + format_string + " }, width = "
GST_VIDEO_SIZE_RANGE ", height = " GST_VIDEO_SIZE_RANGE;
GstCaps *sink_caps = gst_caps_from_string (cuda_caps_str.c_str ());
GstCaps *sysmem_caps = gst_caps_from_string ("video/x-raw, format = (string)"
"{ I420, Y42B, Y444 }, width = " GST_VIDEO_SIZE_RANGE
", height = " GST_VIDEO_SIZE_RANGE);
gst_caps_append (sink_caps, sysmem_caps);
GST_MINI_OBJECT_FLAG_SET (sink_caps, GST_MINI_OBJECT_FLAG_MAY_BE_LEAKED);
auto cdata = g_new0 (GstNvJpegEncCData, 1);
cdata->cuda_device_id = cuda_device_id;
cdata->sink_caps = sink_caps;
cdata->have_nvrtc = have_nvrtc;
cdata->autogpu = autogpu;
type_info.class_data = cdata;
gchar *type_name = nullptr;
gchar *feature_name = nullptr;
if (autogpu) {
type_name = g_strdup ("GstNvAutoGpuJpegEnc");
feature_name = g_strdup ("nvautogpujpegenc");
} else {
type_name = g_strdup ("GstNvJpegEnc");
feature_name = g_strdup ("nvjpegenc");
while (g_type_from_name (type_name)) {
index++;
g_free (type_name);
g_free (feature_name);
type_name = g_strdup_printf ("GstNvJpegDevice%dEnc", index);
feature_name = g_strdup_printf ("nvjpegdevice%denc", index);
}
}
type = g_type_register_static (GST_TYPE_VIDEO_ENCODER,
type_name, &type_info, (GTypeFlags) 0);
if (rank > 0 && index != 0)
rank--;
if (index != 0)
gst_element_type_set_skip_documentation (type);
if (!gst_element_register (plugin, feature_name, rank, type))
GST_WARNING ("Failed to register plugin '%s'", type_name);
g_free (type_name);
g_free (feature_name);
return TRUE;
}
|