Re: [Live-devel] H.264 RTP Marker Bit

2015-04-01 Thread Chris Richardson (WTI)
Hi Ross, Thanks a lot for taking a look at this and making the changes so quickly. Everything is working great now with the addition of the virtual nalUnitEndsAccessUnit method. Thanks, Chris Richardson WTI ___ live-devel mailing list live-devel@l

Re: [Live-devel] H.264 RTP Marker Bit

2015-03-31 Thread Ross Finlayson
OK, I’ve now installed a new version (2015.04.01) of the “LIVE555 Streaming Media” code that adds a virtual function virtual Boolean nalUnitEndsAccessUnit(u_int8_t nal_unit_type); to “H264or5VideoStreamDiscreteFramer”. The default implementation sets this simply based on whether the NAL

Re: [Live-devel] H.264 RTP Marker Bit

2015-03-31 Thread Ross Finlayson
> Fortunately, however, there is a way for you to overcome this (in a subclass > of “H264or5VideoStreamDiscreteFramer”): Simply define your own ‘after > getting’ function that first calls > “H264or5VideoStreamDiscreteFramer::afterGettingFrame1()”, and then sets > “pictureEndMarker()” to the ‘co

Re: [Live-devel] H.264 RTP Marker Bit

2015-03-31 Thread Ross Finlayson
Yes, you’ve stumbled upon a problem with the way that RTP payload formats for video codecs are defined: They mandate that the RTP ‘M’ bit be set for the last RTP packet of a ‘picture’, but often it’s non-trivial for a streaming application (like ours) to figure out exactly when this should be do

[Live-devel] H.264 RTP Marker Bit

2015-03-31 Thread Chris Richardson (WTI)
Hi Ross, I use LIVE555 to stream video from an H.264 encoder over RTSP/RTP, and I have recently updated my system to support sending multiple slices per frame. Internally, I use my own DeviceSource-based class to feed single NALs to an instance of H264VideoStreamDiscreteFramer, which then feeds e

[Live-devel] H.264 RTP Marker Bit

2015-03-31 Thread Chris Richardson (WTI)
Hi Ross, I use LIVE555 to stream video from an H.264 encoder over RTSP/RTP, and I have recently updated my system to support sending multiple slices per frame. Internally, I use my own DeviceSource-based class to feed single NALs to an instance of H264VideoStreamDiscreteFramer, which then feed