FFmpeg源代码简单分析-其他-libavdevice的gdigrab

参考链接

  • FFmpeg源代码简单分析:libavdevice的gdigrab_雷霄骅的博客-CSDN博客_gdigrab

libavdevice的gdigrab

  • GDIGrab用于在Windows下屏幕录像(抓屏)
  • gdigrab的源代码位于libavdevice\gdigrab.c。
  • 关键函数的调用关系图如下图所示。
  • 图中绿色背景的函数代表源代码中自己声明的函数,紫色背景的函数代表Win32的API函数。

 

ff_gdigrab_demuxer

  • 在FFmpeg中Device也被当做是一种Format,因为GDIGrab是一个输入设备,因此被当作一个AVInputFormat。
  • GDIGrab对应的AVInputFormat结构体如下所示。
/** gdi grabber device demuxer declaration */
const AVInputFormat ff_gdigrab_demuxer = {.name           = "gdigrab",.long_name      = NULL_IF_CONFIG_SMALL("GDI API Windows frame grabber"),.priv_data_size = sizeof(struct gdigrab),.read_header    = gdigrab_read_header,.read_packet    = gdigrab_read_packet,.read_close     = gdigrab_read_close,.flags          = AVFMT_NOFILE,.priv_class     = &gdigrab_class,
};
  • 从该结构体可以看出:
    • 设备名称是“gdigrab”;
    • 设备完整名称是“GDI API Windows frame grabber”;
    • 初始化函数指针read_header()指向gdigrab_read_header();
    • 读取数据函数指针read_packet()指向gdigrab_read_packet();
    • 关闭函数指针read_close()指向gdigrab_read_close();
    • Flags设置为AVFMT_NOFILE;
    • AVClass指定为gdigrab_class。
  • 下面分析一下这些数据。

gdigrab_class

  • ff_gdigrab_demuxer指定它的AVClass为一个名称为“gdigrab_class”的静态变量。
  • gdigrab_class的定义如下。
static const AVClass gdigrab_class = {.class_name = "GDIgrab indev",.item_name  = av_default_item_name,.option     = options,.version    = LIBAVUTIL_VERSION_INT,.category   = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT,
};
  • 从gdigrab_class的定义可以看出,它指定了一个名称为“options”的数组作为它的选项数组(赋值给AVClass的option变量)

options

  • 下面看一下这个options数组的定义,如下所示。
#define OFFSET(x) offsetof(struct gdigrab, x)
#define DEC AV_OPT_FLAG_DECODING_PARAM
static const AVOption options[] = {{ "draw_mouse", "draw the mouse pointer", OFFSET(draw_mouse), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, DEC },{ "show_region", "draw border around capture area", OFFSET(show_region), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, DEC },{ "framerate", "set video frame rate", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, {.str = "ntsc"}, 0, INT_MAX, DEC },{ "video_size", "set video frame size", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, DEC },{ "offset_x", "capture area x offset", OFFSET(offset_x), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, DEC },{ "offset_y", "capture area y offset", OFFSET(offset_y), AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX, DEC },{ NULL },
};
  • options数组中包含了该Device支持的选项。可以看出GDIGrab支持如下选项:
    • draw_mouse:画出鼠标指针。
    • show_region:划出抓屏区域的边界。
    • framerate:抓屏帧率。
    • video_size:抓屏的大小。
    • offset_x:抓屏起始点x轴坐标。
    • offset_y:抓屏起始点y轴坐标。
  • 从宏定义“#define OFFSET(x) offsetof(struct gdigrab, x)”中可以看出,这些选项都存储在一个名称为“gdigrab”的结构体中。

Gdigrab 上下文结构体

  • Gdigrab上下文结构体中存储了GDIGrab设备用到的各种变量,定义如下所示。
/*** GDI Device Demuxer context*/
struct gdigrab {const AVClass *class;   /**< Class for private options */int        frame_size;  /**< Size in bytes of the frame pixel data */int        header_size; /**< Size in bytes of the DIB header */AVRational time_base;   /**< Time base */int64_t    time_frame;  /**< Current time */int        draw_mouse;  /**< Draw mouse cursor (private option) */int        show_region; /**< Draw border (private option) */AVRational framerate;   /**< Capture framerate (private option) */int        width;       /**< Width of the grab frame (private option) */int        height;      /**< Height of the grab frame (private option) */int        offset_x;    /**< Capture x offset (private option) */int        offset_y;    /**< Capture y offset (private option) */HWND       hwnd;        /**< Handle of the window for the grab */HDC        source_hdc;  /**< Source device context */HDC        dest_hdc;    /**< Destination, source-compatible DC */BITMAPINFO bmi;         /**< Information describing DIB format */HBITMAP    hbmp;        /**< Information on the bitmap captured */void      *buffer;      /**< The buffer containing the bitmap image data */RECT       clip_rect;   /**< The subarea of the screen or window to clip */HWND       region_hwnd; /**< Handle of the region border window */int cursor_error_printed;
};

gdigrab_read_header()

  • gdigrab_read_header()用于初始化gdigrab。
  • 函数的定义如下所示。
/*** Initializes the gdi grab device demuxer (public device demuxer API).** @param s1 Context from avformat core* @return AVERROR_IO error, 0 success*/
static int
gdigrab_read_header(AVFormatContext *s1)
{struct gdigrab *gdigrab = s1->priv_data;HWND hwnd;HDC source_hdc = NULL;HDC dest_hdc   = NULL;BITMAPINFO bmi;HBITMAP hbmp   = NULL;void *buffer   = NULL;const char *filename = s1->url;const char *name     = NULL;AVStream   *st       = NULL;int bpp;int horzres;int vertres;int desktophorzres;int desktopvertres;RECT virtual_rect;RECT clip_rect;BITMAP bmp;int ret;if (!strncmp(filename, "title=", 6)) {wchar_t *name_w = NULL;name = filename + 6;if(utf8towchar(name, &name_w)) {ret = AVERROR(errno);goto error;}if(!name_w) {ret = AVERROR(EINVAL);goto error;}hwnd = FindWindowW(NULL, name_w);av_freep(&name_w);if (!hwnd) {av_log(s1, AV_LOG_ERROR,"Can't find window '%s', aborting.\n", name);ret = AVERROR(EIO);goto error;}if (gdigrab->show_region) {av_log(s1, AV_LOG_WARNING,"Can't show region when grabbing a window.\n");gdigrab->show_region = 0;}} else if (!strcmp(filename, "desktop")) {hwnd = NULL;} else {av_log(s1, AV_LOG_ERROR,"Please use \"desktop\" or \"title=<windowname>\" to specify your target.\n");ret = AVERROR(EIO);goto error;}/* This will get the device context for the selected window, or if* none, the primary screen */source_hdc = GetDC(hwnd);if (!source_hdc) {WIN32_API_ERROR("Couldn't get window device context");ret = AVERROR(EIO);goto error;}bpp = GetDeviceCaps(source_hdc, BITSPIXEL);horzres = GetDeviceCaps(source_hdc, HORZRES);vertres = GetDeviceCaps(source_hdc, VERTRES);desktophorzres = GetDeviceCaps(source_hdc, DESKTOPHORZRES);desktopvertres = GetDeviceCaps(source_hdc, DESKTOPVERTRES);if (hwnd) {GetClientRect(hwnd, &virtual_rect);/* window -- get the right height and width for scaling DPI */virtual_rect.left   = virtual_rect.left   * desktophorzres / horzres;virtual_rect.right  = virtual_rect.right  * desktophorzres / horzres;virtual_rect.top    = virtual_rect.top    * desktopvertres / vertres;virtual_rect.bottom = virtual_rect.bottom * desktopvertres / vertres;} else {/* desktop -- get the right height and width for scaling DPI */virtual_rect.left = GetSystemMetrics(SM_XVIRTUALSCREEN);virtual_rect.top = GetSystemMetrics(SM_YVIRTUALSCREEN);virtual_rect.right = (virtual_rect.left + GetSystemMetrics(SM_CXVIRTUALSCREEN)) * desktophorzres / horzres;virtual_rect.bottom = (virtual_rect.top + GetSystemMetrics(SM_CYVIRTUALSCREEN)) * desktopvertres / vertres;}/* If no width or height set, use full screen/window area */if (!gdigrab->width || !gdigrab->height) {clip_rect.left = virtual_rect.left;clip_rect.top = virtual_rect.top;clip_rect.right = virtual_rect.right;clip_rect.bottom = virtual_rect.bottom;} else {clip_rect.left = gdigrab->offset_x;clip_rect.top = gdigrab->offset_y;clip_rect.right = gdigrab->width + gdigrab->offset_x;clip_rect.bottom = gdigrab->height + gdigrab->offset_y;}if (clip_rect.left < virtual_rect.left ||clip_rect.top < virtual_rect.top ||clip_rect.right > virtual_rect.right ||clip_rect.bottom > virtual_rect.bottom) {av_log(s1, AV_LOG_ERROR,"Capture area (%li,%li),(%li,%li) extends outside window area (%li,%li),(%li,%li)",clip_rect.left, clip_rect.top,clip_rect.right, clip_rect.bottom,virtual_rect.left, virtual_rect.top,virtual_rect.right, virtual_rect.bottom);ret = AVERROR(EIO);goto error;}if (name) {av_log(s1, AV_LOG_INFO,"Found window %s, capturing %lix%lix%i at (%li,%li)\n",name,clip_rect.right - clip_rect.left,clip_rect.bottom - clip_rect.top,bpp, clip_rect.left, clip_rect.top);} else {av_log(s1, AV_LOG_INFO,"Capturing whole desktop as %lix%lix%i at (%li,%li)\n",clip_rect.right - clip_rect.left,clip_rect.bottom - clip_rect.top,bpp, clip_rect.left, clip_rect.top);}if (clip_rect.right - clip_rect.left <= 0 ||clip_rect.bottom - clip_rect.top <= 0 || bpp%8) {av_log(s1, AV_LOG_ERROR, "Invalid properties, aborting\n");ret = AVERROR(EIO);goto error;}dest_hdc = CreateCompatibleDC(source_hdc);if (!dest_hdc) {WIN32_API_ERROR("Screen DC CreateCompatibleDC");ret = AVERROR(EIO);goto error;}/* Create a DIB and select it into the dest_hdc */bmi.bmiHeader.biSize          = sizeof(BITMAPINFOHEADER);bmi.bmiHeader.biWidth         = clip_rect.right - clip_rect.left;bmi.bmiHeader.biHeight        = -(clip_rect.bottom - clip_rect.top);bmi.bmiHeader.biPlanes        = 1;bmi.bmiHeader.biBitCount      = bpp;bmi.bmiHeader.biCompression   = BI_RGB;bmi.bmiHeader.biSizeImage     = 0;bmi.bmiHeader.biXPelsPerMeter = 0;bmi.bmiHeader.biYPelsPerMeter = 0;bmi.bmiHeader.biClrUsed       = 0;bmi.bmiHeader.biClrImportant  = 0;hbmp = CreateDIBSection(dest_hdc, &bmi, DIB_RGB_COLORS,&buffer, NULL, 0);if (!hbmp) {WIN32_API_ERROR("Creating DIB Section");ret = AVERROR(EIO);goto error;}if (!SelectObject(dest_hdc, hbmp)) {WIN32_API_ERROR("SelectObject");ret = AVERROR(EIO);goto error;}/* Get info from the bitmap */GetObject(hbmp, sizeof(BITMAP), &bmp);st = avformat_new_stream(s1, NULL);if (!st) {ret = AVERROR(ENOMEM);goto error;}avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */gdigrab->frame_size  = bmp.bmWidthBytes * bmp.bmHeight * bmp.bmPlanes;gdigrab->header_size = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER) +(bpp <= 8 ? (1 << bpp) : 0) * sizeof(RGBQUAD) /* palette size */;gdigrab->time_base   = av_inv_q(gdigrab->framerate);gdigrab->time_frame  = av_gettime_relative() / av_q2d(gdigrab->time_base);gdigrab->hwnd       = hwnd;gdigrab->source_hdc = source_hdc;gdigrab->dest_hdc   = dest_hdc;gdigrab->hbmp       = hbmp;gdigrab->bmi        = bmi;gdigrab->buffer     = buffer;gdigrab->clip_rect  = clip_rect;gdigrab->cursor_error_printed = 0;if (gdigrab->show_region) {if (gdigrab_region_wnd_init(s1, gdigrab)) {ret = AVERROR(EIO);goto error;}}st->avg_frame_rate = av_inv_q(gdigrab->time_base);st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;st->codecpar->codec_id   = AV_CODEC_ID_BMP;st->codecpar->bit_rate   = (gdigrab->header_size + gdigrab->frame_size) * 1/av_q2d(gdigrab->time_base) * 8;return 0;error:if (source_hdc)ReleaseDC(hwnd, source_hdc);if (dest_hdc)DeleteDC(dest_hdc);if (hbmp)DeleteObject(hbmp);if (source_hdc)DeleteDC(source_hdc);return ret;
}
  • 从源代码可以看出,gdigrab_read_header()的流程大致如下所示:
    • (1)确定窗口的句柄hwnd。如果指定了“title=”的话,调用FindWindow()获取hwnd;如果指定了“desktop”,则设定hwnd为NULL。
    • (2)根据窗口的句柄hwnd确定抓屏的矩形区域。如果抓取指定窗口,则通过GetClientRect()函数;否则就抓取整个屏幕。
    • (3)调用GDI的API完成抓屏的一些初始化工作。包括:
      • a)通过GetDC()获得某个窗口句柄的HDC(在这里是source_hdc)。
      • b)通过CreateCompatibleDC()创建一个与指定设备兼容的HDC(在这里是dest_hdc)
      • c)通过CreateDIBSection()创建HBITMAP
      • d)通过SelectObject()绑定HBITMAP和HDC(指的是dest_hdc)
  • (4)通过avformat_new_stream()创建一个AVStream。
  • (5)将初始化时候的一些参数保存至GDIGrab的上下文结构体。

gdigrab_read_packet()

  • gdigrab_read_packet()用于读取一帧抓屏数据。
  • 该函数的定义如下所示。
/*** Grabs a frame from gdi (public device demuxer API).** @param s1 Context from avformat core* @param pkt Packet holding the grabbed frame* @return frame size in bytes*/
static int gdigrab_read_packet(AVFormatContext *s1, AVPacket *pkt)
{struct gdigrab *gdigrab = s1->priv_data;//读取参数HDC        dest_hdc   = gdigrab->dest_hdc;HDC        source_hdc = gdigrab->source_hdc;RECT       clip_rect  = gdigrab->clip_rect;AVRational time_base  = gdigrab->time_base;int64_t    time_frame = gdigrab->time_frame;BITMAPFILEHEADER bfh;int file_size = gdigrab->header_size + gdigrab->frame_size;int64_t curtime, delay;/* Calculate the time of the next frame */time_frame += INT64_C(1000000);/* Run Window message processing queue */if (gdigrab->show_region)gdigrab_region_wnd_update(s1, gdigrab);/* wait based on the frame rate *///延时for (;;) {curtime = av_gettime();delay = time_frame * av_q2d(time_base) - curtime;if (delay <= 0) {if (delay < INT64_C(-1000000) * av_q2d(time_base)) {time_frame += INT64_C(1000000);}break;}if (s1->flags & AVFMT_FLAG_NONBLOCK) {return AVERROR(EAGAIN);} else {av_usleep(delay);}}//新建一个AVPacketif (av_new_packet(pkt, file_size) < 0)return AVERROR(ENOMEM);pkt->pts = curtime;/* Blit screen grab *///关键:BitBlt()完成抓屏功能if (!BitBlt(dest_hdc, 0, 0,clip_rect.right - clip_rect.left,clip_rect.bottom - clip_rect.top,source_hdc,clip_rect.left, clip_rect.top, SRCCOPY | CAPTUREBLT)) {WIN32_API_ERROR("Failed to capture image");return AVERROR(EIO);}//画鼠标指针?if (gdigrab->draw_mouse)paint_mouse_pointer(s1, gdigrab);/* Copy bits to packet data *///BMP文件头BITMAPFILEHEADERbfh.bfType = 0x4d42; /* "BM" in little-endian */bfh.bfSize = file_size;bfh.bfReserved1 = 0;bfh.bfReserved2 = 0;bfh.bfOffBits = gdigrab->header_size;//往AVPacket中拷贝数据//拷贝BITMAPFILEHEADERmemcpy(pkt->data, &bfh, sizeof(bfh));//拷贝BITMAPINFOHEADERmemcpy(pkt->data + sizeof(bfh), &gdigrab->bmi.bmiHeader, sizeof(gdigrab->bmi.bmiHeader));//不常见if (gdigrab->bmi.bmiHeader.biBitCount <= 8)GetDIBColorTable(dest_hdc, 0, 1 << gdigrab->bmi.bmiHeader.biBitCount,(RGBQUAD *) (pkt->data + sizeof(bfh) + sizeof(gdigrab->bmi.bmiHeader)));//拷贝像素数据memcpy(pkt->data + gdigrab->header_size, gdigrab->buffer, gdigrab->frame_size);gdigrab->time_frame = time_frame;return gdigrab->header_size + gdigrab->frame_size;
}
  • 从源代码可以看出,gdigrab_read_packet()的流程大致如下所示:
  • (1)从GDIGrab上下文结构体读取初始化时候设定的参数。
  • (2)根据帧率参数进行延时。
  • (3)通过av_new_packet()新建一个AVPacket。
  • (4)通过BitBlt()完成抓屏功能。
  • (5)如果需要画鼠标指针的话,调用paint_mouse_pointer(),这里不做分析。
  • (6)按照顺序拷贝以下3项内容至AVPacket的data指向的内存:
    • a)BITMAPFILEHEADER
    • b)BITMAPINFOHEADER
    • c)抓屏的到的像素数据

gdigrab_read_close()

  • gdigrab_read_close()用于关闭gdigrab。
  • 该函数的定义如下所示。
  • 从源代码可以看出,gdigrab_read_close ()完成了各种变量的清理工作。
/*** Closes gdi frame grabber (public device demuxer API).** @param s1 Context from avformat core* @return 0 success, !0 failure*/
static int gdigrab_read_close(AVFormatContext *s1)
{struct gdigrab *s = s1->priv_data;if (s->show_region)gdigrab_region_wnd_destroy(s1, s);if (s->source_hdc)ReleaseDC(s->hwnd, s->source_hdc);if (s->dest_hdc)DeleteDC(s->dest_hdc);if (s->hbmp)DeleteObject(s->hbmp);if (s->source_hdc)DeleteDC(s->source_hdc);return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/445919.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Ubuntu安装GmSSL库适用于ubuntu18和ubuntu20版本

参考链接 编译与安装【GmSSL】GmSSL 与 OpenSSL 共存的安装方法_阿卡基YUAN的博客-CSDN博客_openssl和gmssl在Linux下安装GmSSL_百里杨的博客-CSDN博客_安装gmssl ubuntu18操作 需要超级管理员权限本人将下载的安装包master.zip和安装的位置都设定在/usr/local下创建文件夹/u…

Windows7右键菜单栏添加打开cmd项

背景简介 众所周知&#xff0c;在Linux桌面操作系统中的工作目录窗口中&#xff0c;单击鼠标右键&#xff0c;弹出的菜单栏通常有一项“打开终端”&#xff0c;然后移动鼠标点击该项&#xff0c;就可以打开Shell窗口&#xff0c;在当前工作目录进行命令行操作。 但是&#xf…

在ubuntu环境下执行openssl编译和安装

参考链接 工具系列 | Ubuntu18.04安装Openssl-1.1.1_Tinywan的技术博客_51CTO博客密码学专题 openssl编译和安装_MY CUP OF TEA的博客-CSDN博客_openssl 编译安装 下载 /source/index.html编译 使用命令sudo tar -xvzf openssl-1.1.1q.tar.gz 解压。使用cd openssl-1.1.1q/进…

chrome 使用gpu 加速_一招解决 Chrome / Edge 卡顿缓慢 让浏览器重回流畅顺滑

最近一段时间,我发现电脑上的 Chrome 谷歌浏览器越用越卡了。特别是网页打开比较多,同时还有视频播放时,整个浏览器的响应速度都会变得非常缓慢,视频也会卡顿掉帧。 我用的是 iMac / 32GB 内存 / Intel 四核 i7 4Ghz CPU,硬件性能应该足以让 Chrome 流畅打开几十个网页标签…

CLion运行程序时添加命令行参数 即设置argv输入参数

参考链接 CLion运行程序时添加命令行参数_三丰杂货铺的博客-CSDN博客_clion命令行参数 操作流程 Run -> Edit -> Configuration -> Program arguments那里添内容最快捷的方式是&#xff0c;点击锤子编译图标和运行图标之间的的图标&#xff0c;进行Edit Configurati…

openssl实现双向认证教程(服务端代码+客户端代码+证书生成)

参考链接 openssl实现双向认证教程&#xff08;服务端代码客户端代码证书生成&#xff09;_huang714的博客-CSDN博客_ssl_ctx_load_verify_locations基于openssl实现https双向身份认证及安全通信_tutu-hu的博客-CSDN博客_基于openssl实现 注意事项 openssl版本差异很可能导致程…

基于openssl和国密算法生成CA、服务器和客户端证书

参考链接 国密自签名证书生成_三雷科技的博客-CSDN博客_国密证书生成openssl采用sm2进行自签名的方法_dong_beijing的博客-CSDN博客_openssl sm 前提说明 OpenSSL 1.1.1q 5 Jul 2022 已经实现了国密算法查看是否支持SM2算法openssl ecparam -list_curves | grep -i sm2参考…

基于Gmssl库静态编译,实现服务端和客户端之间的SSL通信

前情提要 将gmssl库采取静态编译的方式&#xff0c;存储在/usr/local/gmssl路径下&#xff0c;核心文件涵盖 include、lib和bin等Ubuntu安装GmSSL库适用于ubuntu18和ubuntu20版本_MY CUP OF TEA的博客-CSDN博客 代码 server #include <stdio.h> #include <stdlib.h&g…

基于SM2证书实现SSL通信

参考链接 ​​​​​基于openssl和国密算法生成CA、服务器和客户端证书_MY CUP OF TEA的博客-CSDN博客基于上述链接&#xff0c;使用国密算法生成CA、服务器和客户端证书&#xff0c;并实现签名认证openssl实现双向认证教程&#xff08;服务端代码客户端代码证书生成&#xff…

使用Clion软件实现基于国密SM2-SM3的SSL安全通信

参考链接 Ubuntu安装GmSSL库适用于ubuntu18和ubuntu20版本_MY CUP OF TEA的博客-CSDN博客CLion运行程序时添加命令行参数 即设置argv输入参数_MY CUP OF TEA的博客-CSDN博客基于SM2证书实现SSL通信_MY CUP OF TEA的博客-CSDN博客基于Gmssl库静态编译&#xff0c;实现服务端和客…

基于GmSSL实现server服务端和client客户端之间SSL通信代码(升级优化公开版)

参考链接 工程搭建介绍 Ubuntu安装GmSSL库适用于ubuntu18和ubuntu20版本_MY CUP OF TEA的博客-CSDN博客CLion运行程序时添加命令行参数 即设置argv输入参数_MY CUP OF TEA的博客-CSDN博客基于SM2证书实现SSL通信_MY CUP OF TEA的博客-CSDN博客基于Gmssl库静态编译&#xff0c…

openssl 密码套件相关内容(OID|密码套件)

参考链接 SSL通信双方如何判断对方采用了国密 - Bigben - 博客园滑动验证页面 OpenSSL TLS1.2密码套件推荐安全的TLS协议 | Hexo OID OID是由ISO/IEC、ITU-T国际标准化组织上世纪80年代联合提出的标识机制&#xff0c;其野心很大&#xff0c;为任何类型的对象&#xff08;包…

Ubuntu配置gmssl和openssl,且均使用动态库,使用时根据需要进行动态切换

前情提要 openssl和gmssl如果想要共存&#xff0c;只能一个是动态库&#xff0c;一个是静态库配置openssl和gmssl无特定的编译顺序要求openssl3.x版本是未来趋势&#xff0c;openssl1.1.x等版本只是适用于基础软件包&#xff0c;后期将会删除配置文件 /etc/ld.so.conf文件只用…

thymeleaf动态选中select_一些LowPoly动态渐变效果实现

这篇文章根大家分享一些LowPoly动态效果的制作方法&#xff0c;由于使用的是uv采样方式效率很高&#xff0c;手机也可以随意使用&#xff0c;我们先来看一些效果的参考 本文将在Unity3D中还原这些效果,如果你学会后当然可以在你喜欢的引擎中实现~如果一篇太长有可能会分多篇&am…

使用Clion和gmssl动态库实现服务器server和客户端client之间的SSL通信

参考链接 Ubuntu配置gmssl和openssl&#xff0c;且均使用动态库&#xff0c;使用时根据需要进行动态切换_MY CUP OF TEA的博客-CSDN博客 编译gmssl动态库并关闭openssl配置&#xff0c;开启gmssl配置基于GmSSL实现server服务端和client客户端之间SSL通信代码&#xff08;升级…

使用Clion和openssl动态库实现服务器server和客户端client之间的SSL通信

参考链接 使用Clion和gmssl动态库实现服务器server和客户端client之间的SSL通信_MY CUP OF TEA的博客-CSDN博客 服务端server CMakeLists.txt文件 cmake_minimum_required(VERSION 3.22)project(ssl_server) set(CMAKE_CXX_STANDARD 11)# 忽略警告 set(CMAKE_CXX_FLAGS &quo…

使用Clion和gmssl动态库实现服务器server和客户端client之间的SSL通信,测试指定密码套件

参考链接 列出gmssl支持的国密算法TLS1.x密码套件_liuqun69的博客-CSDN博客使用Clion和gmssl动态库实现服务器server和客户端client之间的SSL通信_MY CUP OF TEA的博客-CSDN博客 注意事项 GM/T 标准涵盖 2 个协议&#xff1a;- SSL VPN 协议 (GM/T 0024-2014)- IPSec VPN 协议…

样式缓存没更新_差点没认出来:Office 2019/365桌面新图标来啦

微软应该是从昨天晚上开始就向Microsoft Office 正式版通道推送新图标(测试版早就推送了)&#xff0c;主要包括的是桌面文档显示图标。目前微软更新图标的速度有些慢并且还有些混乱&#xff0c;因为这些图标并不是同时更新的而存在分批分次推送情况。如下图多数组件已经可以看到…

10kv线路负载率计算_电工必懂计算公式,你若不会,如何立足于电力行业?

一电力变压器额定视在功率Sn200KVA&#xff0c;空载损耗Po0.4KW&#xff0c;额定电流时的短路损耗PK2.2KW,测得该变压器输出有功功率P2&#xff1d;140KW时&#xff0c;二次则功率因数20.8。求变压器此时的负载率b 和工作效率。解&#xff1a;因P2bSn2100%bP2(Sn2)100%140(2000…

在基于 Ubuntu 的 Linux 发行版上安装 Wireshark

参考链接 Ubuntu 上 Wireshark 的安装与使用 - 知乎https://www.myfreax.com/how-to-add-apt-repository-in-ubuntu/ 前情提要 使用Ubuntu软件中心或命令行apt或apt-get安装软件包时&#xff0c;这些软件包是从一个或多个apt软件存储库中下载的。 APT存储库是一个网络服务器或…