Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 1.25 KB

File metadata and controls

23 lines (12 loc) · 1.25 KB

simplest_mediadata_process

this folder contains the code for practical demos of video and audio data processing, which I learned and implemented based on the introductory series articles on leixiaohua. Here is his homepage on CSDN.

Folder Structure

  • attach: subfolder for attachment files, which include demo data files such as audio and video.

  • output: subfolder for output files corresponding to the demo data.

  • main.cpp: the main entry file.

  • pixel.cpp and pixel.h: handle rgb and yuv pixel data. refer

  • pcm.cpp and pcm.h: handle pcm audio sample data. refer

  • h264.cpp and h264.h: h264 video stream parsing. refer

  • aac.cpp and aac.h: aac audio stream parsing. refer

  • flv.cpp and flv.h: flv format parsing. refer

  • udp.cpp and udp.h: udp-rtp protocol parsing. refer