项目作者: SoonyangZhang

项目描述 :
learn write code from webrtc project
高级语言: C++
项目地址: git://github.com/SoonyangZhang/webrtc-learn.git
创建时间: 2019-08-04T13:51:45Z
项目社区:https://github.com/SoonyangZhang/webrtc-learn

开源协议:

下载


webrtc-learn

learn write code from webrtc project
the webrtc lib ia from
https://sourcey.com/precompiled-webrtc-libraries
version webrtc-22215-ab42706-linux-x64.tar.gz

bmp2jpep https://github.com/ValleyXu/Conversion-Between-JPEG-and-BMP
SYConverter https://github.com/shenyuanluo/SYKit

other tools for possible usage:
https://github.com/IENT/YUView
x264 install

  1. https://www.cnblogs.com/ziyu-trip/p/6783165.html
  2. rror while loading shared libraries: libx264.so.2:
  3. cannot open shared object file: No such file or directory
  4. su
  5. echo "/usr/local/lib" >> /etc/ld.so.conf
  6. ldconfig
  7. https://stackoverflow.com/questions/11838456/undefined-reference-to-x264-encoder-open-125/17174658
  8. apt-get remove x264
  9. LD_LIBRARY_PATH=/path/to/my/compiled/x264/library

ffmpeg

  1. https://blog.csdn.net/a805995924/article/details/39435261
  2. https://gist.github.com/teocci/f7a438013a0197a91446ee86de41faee

ffmepg yuv

  1. ffplay -f rawvideo -pixel_format rgb24 -s 480*480 texture.rgb

YUV和RGB详解: https://segmentfault.com/a/1190000016443536

export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH

ffplay h264 raw:
https://github.com/SoonyangZhang/base/tree/master/video_tool
ffplay -stats -f h264 1280x720.h264

h264 tool:
https://github.com/latelee/H264BSAnalyzer

x264 slice type

  1. * Slice type */
  2. #define X264_TYPE_AUTO 0x0000 /* Let x264 choose the right type */
  3. #define X264_TYPE_IDR 0x0001
  4. #define X264_TYPE_I 0x0002
  5. #define X264_TYPE_P 0x0003
  6. #define X264_TYPE_BREF 0x0004 /* Non-disposable B-frame */
  7. #define X264_TYPE_B 0x0005

slice type
http://gentlelogic.blogspot.com/2011/11/exploring-h264-part-2-h264-bitstream.html
指数哥伦布编码:
https://www.jianshu.com/p/f4f3b0764cec
x264 preset
https://blog.csdn.net/NB_vol_1/article/details/78363559

I found that, The operation to refer frame instead of copy can reduce frame queue delay and reduce frame dropping.

  1. //videocodec.h
  2. //old version
  3. struct FrameTs{
  4. FrameTs(webrtc::VideoFrame *f,uint32_t ts):frame(f),enqueTs(ts){}
  5. webrtc::VideoFrame *frame;
  6. uint32_t enqueTs;
  7. };
  8. //videocodec.cc
  9. webrtc::VideoFrame *copy=new webrtc::VideoFrame(frame);
  10. f=temp.frame;
  11. //improve version
  12. struct FrameTs{
  13. FrameTs(const webrtc::VideoFrame &f,uint32_t ts):frame(f),enqueTs(ts){}
  14. FrameTs(const FrameTs&)=default; //for deque front
  15. webrtc::VideoFrame frame;
  16. uint32_t enqueTs;
  17. };