mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
Add a Vorbis payload parser. Implemented by Colin McQuillan as a GSoC
qualification task, see "RTP/Vorbis payload implementation (GSoC qual task)" thread on mailinglist. Originally committed as revision 18509 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
d648c720af
commit
e6327fba98
6 changed files with 275 additions and 3 deletions
|
|
@ -32,6 +32,7 @@
|
|||
#include "rtpdec.h"
|
||||
#include "rtp_asf.h"
|
||||
#include "rtp_h264.h"
|
||||
#include "rtp_vorbis.h"
|
||||
|
||||
//#define DEBUG
|
||||
|
||||
|
|
@ -61,6 +62,7 @@ void av_register_rtp_dynamic_payload_handlers(void)
|
|||
ff_register_dynamic_payload_handler(&mp4v_es_handler);
|
||||
ff_register_dynamic_payload_handler(&mpeg4_generic_handler);
|
||||
ff_register_dynamic_payload_handler(&ff_h264_dynamic_handler);
|
||||
ff_register_dynamic_payload_handler(&ff_vorbis_dynamic_handler);
|
||||
|
||||
ff_register_dynamic_payload_handler(&ff_ms_rtp_asf_pfv_handler);
|
||||
ff_register_dynamic_payload_handler(&ff_ms_rtp_asf_pfa_handler);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue