链表基本应用 链表创建 链表插入 链表删除 链表修改 链表查询 链表反转 完整代码 截图 链表创建 typedef struct Node { int data; struct Node *next; }Node; Node *CreateNode() { Node *head=malloc(siz Read More
posted @ 2022-05-31 13:04 xMonody Views(30) Comments(0) Diggs(0) Edit
# opengl数学 $$\begin{Bmatrix} {A_{x}}\\ {A_{y}}\\ {A_{z}}\\ \end{Bmatrix} * \begin{Bmatrix} {B_{x}}\\ {B_{y}}\\ {B_{z}}\\ \end{Bmatrix} =\begin{Bmatrix Read More
posted @ 2022-05-27 09:02 xMonody Views(37) Comments(0) Diggs(0) Edit
基础 标题 #a56爆大奖在线娱乐一级标题 以此类推 支持六种标题 # 一级标题 ## 二级标题 ### 三级标题 #### 四级标题 ##### 五级标题 ###### 六级标题 一级标题 二级标题 三级标题 四级标题 五级标题 六级标题 引用 应用用>a56爆大奖在线娱乐 > 这是应用 分割线用***或者 a56爆大奖在线娱乐 强调 *斜体* Read More
posted @ 2022-05-26 12:05 xMonody Views(39) Comments(0) Diggs(0) Edit
用法 ffmpeg -i hello.mp3 -acodec libfdk_aac hello.aac mp3转aac ffmpeg -i hello.aac -acodec libmp3lame hello.mp3 aac转mp3 ffmpeg -i hello.aac -f s16le -ar Read More
posted @ 2022-05-24 10:47 xMonody Views(236) Comments(0) Diggs(0) Edit
<center>编译ffmpeg 安装Msys2以及依赖 export arch=mingw-w64-x86_64 export arch=mingw-w64-ucrt-x86_64 pacman -S $arch-yasm $arch-name $arch-cmake $arch-make $ar Read More
posted @ 2022-05-21 10:26 xMonody Views(119) Comments(0) Diggs(0) Edit
1 先安装qt 解压ffmpeg包2打开qt创建工程 3 导入头文件和库文件 这里一定要注意gcc版本和库的版本一定要一致 4 添加一下简单的源代码 1 #include <libavcodec/avcodec.h> 2 #include <libavformat/avformat.h> 3 #in Read More
posted @ 2019-05-27 09:45 xMonody Views(568) Comments(0) Diggs(0) Edit