When Support AggregationPacket mode will be added for H.265?
See original GitHub issueHi! We recently wanted to try H265 format for our RTSP camera streaming
But I have found out that it is not fully supported yet.
RtpH265Reader
...
else if (payloadType == RTP_PACKET_TYPE_AP) {
// TODO: Support AggregationPacket mode.
throw new UnsupportedOperationException("need to implement processAggregationPacket");
Do you have plans to add it in nearest future? If yes - when approximately?
Issue Analytics
- State:
- Created a year ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Reported by - IETF TRAC Wikis
One option would be to change to "Marker bit (M): 1 bit Set for the last packet of the picture (i.e. the packet...
Read more >RTP Payload Format for High Efficiency Video Coding (HEVC)
Furthermore, it supports transmission of an HEVC bitstream over a single ... NAL unit packet, aggregation packet, and fragment unit o Transmission of...
Read more >rtph264pay: Support STAP-A bundling (!2) · Merge requests
Add a new property do-aggregate to the H.264 RTP payloader which enables STAP-A aggregation as per RFC-6184. With aggregation enabled, packets are bundled....
Read more >doc: RFC 3984: RTP Payload Format for H.264 Video - hjp
The NAL header type field will be equal to the original NAL unit type; i.e., in the range of 1 to 23, inclusive....
Read more >TS 126 114 - V13.5.0 - ETSI
The cross reference between GSM, UMTS, 3GPP and ETSI identities can be found ... SDP answer from MTSI MGW supporting only one codec...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
OOI = out of interest 😃
Packet aggregation is a mode that RTSP server uses to split up H265 byte stream into RTP packet. It means one RTP packet could carry multiple H265 NAL units. It’s not very widely used afaik. Thus you have to configure the RTSP server (in the camera) not to use this mode.
Thank you for the explanation! Hope we could manage to configure the camera. I’m afraid to write this function myself ))