Msign

Results 4 issues of Msign

子模块中的仓库,为啥用的是 `[email protected]:descampsa/yuv2rgb.git` 开头的呢,这样好像会导致其他人拉取子模块的时候出错。

![image](https://user-images.githubusercontent.com/16435001/167427407-57165463-2b75-4426-a130-069fe86f9685.png)

作者可以写一个demo 吗? 我这边,接触音视频不久,现在有一个需求要把H265封装成MP4。 经过自己的摸索写了一个demo,但封装出来的视频大小跟原始H265要小一些。使用VLC 播放的时候,时长只有1秒钟。

在 ````cpp // fill_init 函数 template void vector:: fill_init(size_type n, const value_type& value) { const size_type init_size = mystl::max(static_cast(16), n); init_space(n, init_size); mystl::uninitialized_fill_n(begin_, n, value); `}` ```` 中,为什么要有 const size_type...