摘要: 目录FFmpegFFmpeg structAVFrameContextavformat_alloc_contextavformat_alloc_output_context2avformat_open_inputavformat_close_inputavformat_find_stream_inf 阅读全文
posted @ 2024-06-30 17:25 alvinlyb 阅读(14) 评论(0) 推荐(0) 编辑
摘要: struct termios struct termios { unsigned short c_iflag; /* 输入模式标志*/ unsigned short c_oflag; /* 输出模式标志*/ unsigned short c_cflag; /* 控制模式标志*/ unsigned s 阅读全文
posted @ 2024-06-30 17:25 alvinlyb 阅读(2) 评论(0) 推荐(0) 编辑
摘要: include 阅读全文
posted @ 2024-06-30 17:25 alvinlyb 阅读(0) 评论(0) 推荐(0) 编辑
摘要: time_point 阅读全文
posted @ 2024-06-30 17:23 alvinlyb 阅读(1) 评论(0) 推荐(0) 编辑
摘要: std::function std::function是一个函数包装器模板,最早在c++11中支持。 该函数包装器模板能包装任何类型的可调用元素(callable element),例如普通函数和函数对象。包装器对象可以进行拷贝,并且包装器类型仅仅只依赖于其调用特征(call signature), 阅读全文
posted @ 2024-06-30 17:23 alvinlyb 阅读(2) 评论(0) 推荐(0) 编辑
摘要: short int uint ushort uchar 阅读全文
posted @ 2024-06-30 17:23 alvinlyb 阅读(0) 评论(0) 推荐(0) 编辑
摘要: c++11智能指针的应用 shared_ptr 共享的智能指针 make_shared weak_ptr 弱引用的智能指针,它不共享指针,不能操作资源,是用来监视shared_ptr的。 class item { private: std::string _name; float _price; p 阅读全文
posted @ 2024-06-30 17:23 alvinlyb 阅读(2) 评论(0) 推荐(0) 编辑
摘要: //MyClass.h #pragma once #ifndef MYCLASS_H #define MYCLASS_H #include <iostream> #include <memory> class NeptuneScene; class NeptuneElem; class Neptun 阅读全文
posted @ 2024-06-30 17:23 alvinlyb 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 目录iostreamstringstreamfilesystemfstreamifstreamofstreamgetlineseekg/seekpbadfaileofgoodgcount iostream 标准文件输入输出流 #include <iostream> stringstream 进行字符 阅读全文
posted @ 2024-06-30 17:23 alvinlyb 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 目录字符串strchrstrstrstrcmpstrncmpstrcatstrncatstrtokstrcpystrncpyputsfputs内存操作memsetmemcpymalloccallocreallocfree文件操作fstat输入输出操作sprintf_sfprintfprintfpri 阅读全文
posted @ 2024-06-30 17:23 alvinlyb 阅读(1) 评论(0) 推荐(0) 编辑