Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
96b2ba68
Commit
96b2ba68
authored
Aug 25, 2014
by
ThomasVolkert
Committed by
Michael Niedermayer
Aug 26, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/rtpdec: support for HEVC/H.265 RTP payload format (draft v6) depacketizing
parent
1f7e6c07
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
413 additions
and
0 deletions
+413
-0
MAINTAINERS
MAINTAINERS
+1
-0
Makefile
libavformat/Makefile
+1
-0
rtpdec.c
libavformat/rtpdec.c
+2
-0
rtpdec_formats.h
libavformat/rtpdec_formats.h
+2
-0
rtpdec_hevc.c
libavformat/rtpdec_hevc.c
+407
-0
No files found.
MAINTAINERS
View file @
96b2ba68
...
...
@@ -460,6 +460,7 @@ Muxers/Demuxers:
rtmp* Kostya Shishkov
rtp.c, rtpenc.c Martin Storsjo
rtpdec_h261.*, rtpenc_h261.* Thomas Volkert
rtpdec_hevc.* Thomas Volkert
rtpdec_asf.* Ronald S. Bultje
rtpenc_mpv.*, rtpenc_aac.* Martin Storsjo
rtsp.c Luca Barbato
...
...
libavformat/Makefile
View file @
96b2ba68
...
...
@@ -37,6 +37,7 @@ OBJS-$(CONFIG_RTPDEC) += rdt.o \
rtpdec_h263.o
\
rtpdec_h263_rfc2190.o
\
rtpdec_h264.o
\
rtpdec_hevc.o
\
rtpdec_ilbc.o
\
rtpdec_jpeg.o
\
rtpdec_latm.o
\
...
...
libavformat/rtpdec.c
View file @
96b2ba68
...
...
@@ -77,6 +77,8 @@ void ff_register_rtp_dynamic_payload_handlers(void)
ff_register_dynamic_payload_handler
(
&
ff_h263_2000_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_h263_rfc2190_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_h264_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_h265_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_hevc_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_ilbc_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_jpeg_dynamic_handler
);
ff_register_dynamic_payload_handler
(
&
ff_mp4a_latm_dynamic_handler
);
...
...
libavformat/rtpdec_formats.h
View file @
96b2ba68
...
...
@@ -50,6 +50,8 @@ extern RTPDynamicProtocolHandler ff_h263_1998_dynamic_handler;
extern
RTPDynamicProtocolHandler
ff_h263_2000_dynamic_handler
;
extern
RTPDynamicProtocolHandler
ff_h263_rfc2190_dynamic_handler
;
extern
RTPDynamicProtocolHandler
ff_h264_dynamic_handler
;
extern
RTPDynamicProtocolHandler
ff_h265_dynamic_handler
;
extern
RTPDynamicProtocolHandler
ff_hevc_dynamic_handler
;
extern
RTPDynamicProtocolHandler
ff_ilbc_dynamic_handler
;
extern
RTPDynamicProtocolHandler
ff_jpeg_dynamic_handler
;
extern
RTPDynamicProtocolHandler
ff_mp4a_latm_dynamic_handler
;
...
...
libavformat/rtpdec_hevc.c
0 → 100644
View file @
96b2ba68
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment