上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页
摘要: 1. vscale int ff_init_vscale(SwsContext *c, SwsFilterDescriptor *desc, SwsSlice *src, SwsSlice *dst) { VScalerContext *lumCtx = NULL; VScalerContext * 阅读全文
posted @ 2021-03-10 19:29 洛笔达 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 具体流程 ffmpeg/libswscale/swscale.c : 466 ff_rotate_slice(hout_slice, lastPosY, lastCPosY); if (posY < lastLumSrcY + 1) { //luminance Scale for (i = lumS 阅读全文
posted @ 2021-03-08 17:13 洛笔达 阅读(176) 评论(0) 推荐(0) 编辑
摘要: PAL vs. NTSC[edit] PAL usually has 576 visible lines compared with 480 lines with NTSC, meaning that PAL has a 20% higher resolution, in fact it even 阅读全文
posted @ 2021-02-23 21:32 洛笔达 阅读(165) 评论(0) 推荐(0) 编辑
摘要: #include "env.h" #include "helper_cuda.h" #include <device_functions.h> #include "combo_device_tools.h" typedef enum COMBO_DT_TYPE{ COMBO_DT_8C, COMBO 阅读全文
posted @ 2021-02-02 20:15 洛笔达 阅读(124) 评论(0) 推荐(0) 编辑
摘要: typedef struct uchar4{ uchar x,y,z,w;}uchar4; inline uchar4 make_uchar4(uchar x, uchar y, uchar z, uchar w){ uchar4 val; val.x = x; val.y = y; val.z = 阅读全文
posted @ 2021-01-13 17:39 洛笔达 阅读(437) 评论(0) 推荐(0) 编辑
摘要: // BT.709 YUV to RGB reference// R = (Y - 16) * 1.164 - V * -1.793// G = (Y - 16) * 1.164 - U * 0.213 - V * 0.533// B = (Y - 16) * 1.164 - U * -2.112/ 阅读全文
posted @ 2021-01-12 15:48 洛笔达 阅读(815) 评论(0) 推荐(0) 编辑
摘要: 黑 白 红 青 蓝 黄 Y 00 FF 4C B3 1D E2 U 80 80 55 AB FF 00 V 80 80 FF 00 6B 95 J420 Y~[0, 255] U~ [0,255] V~[0,255] 阅读全文
posted @ 2021-01-12 12:30 洛笔达 阅读(519) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/376036/algorithm-to-mix-sound 阅读全文
posted @ 2020-12-24 20:40 洛笔达 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 1. 时钟周期, CPU时钟的最基本单位, 等于主频的导数 2. 指令周期, 完成一个指令的时间, 即 取指 + 译码 + 执行的总时间 3. 机器周期 一条指令的被划分为若干阶段, 完成其中一个阶段的时间, 例如, 取指 、 译码 、或者 执行 都可以叫做一个机器周期 4. 总线周期 完成一次内存 阅读全文
posted @ 2020-12-22 12:14 洛笔达 阅读(1660) 评论(0) 推荐(0) 编辑
摘要: template<class T> inline float amplitudeToDB( T ampval ) { if( ampval >0 ) return 20 * log10(ampval); else return -20 * log10(-ampval); } float dBToAm 阅读全文
posted @ 2020-12-17 15:19 洛笔达 阅读(731) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页