[13436:1036:0326/010056:ERROR:h264_decoder_impl.cc(320)] avcodec_decode_video2 error: -1094995529[13436:1036:0326/010056:WARNING:generic_decoder.cc(158)] Failed to decode frame with timestamp 3287187385, error code: -1[13436:1036:0326/010056:ERROR:h264_decoder_impl.cc(320)] avcodec_decode_video2 error: -1094995529[13436:1036:0326/010056:WARNING:generic_decoder.cc(158)] Failed to decode frame with timestamp 3287188645, error code: -1[13436:1036:0326/010056:ERROR:h264_decoder_impl.cc(320)] avcodec_decode_video2 error: -1094995529[13436:1036:0326/010056:WARNING:generic_decoder.cc(158)] Failed to decode frame with timestamp 3287191615, error code: -1[13436:1036:0326/010056:ERROR:h264_decoder_impl.cc(320)] avcodec_decode_video2 error: -1094995529[13436:1036:0326/010056:WARNING:generic_decoder.cc(158)] Failed to decode frame with timestamp 3287194945, error code: -1
--
---
You received this message because you are subscribed to the Google Groups "discuss-webrtc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to discuss-webrt...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/discuss-webrtc/eea95e1a-4f64-452b-b782-47bed25676bd%40googlegroups.com.
--
---
You received this message because you are subscribed to the Google Groups "discuss-webrtc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to discuss-webrt...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/discuss-webrtc/f6915b0f-569b-4d56-bf98-d2d4c6bde2ec%40googlegroups.com.
quick checks: are you converting it to annex b bitstream before doing the rtp packetization? Are you using single NAL mode or fragmentation?
Best regards
Sergio
--
--
---
You received this message because you are subscribed to the Google Groups "discuss-webrtc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to discuss-webrt...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/discuss-webrtc/f7c25541-2907-4679-be30-a0ca2afcbfc8%40googlegroups.com.
static FrameType EVideoFrameType_to_FrameType(EVideoFrameType type) {
switch (type) {
case videoFrameTypeInvalid:
return kEmptyFrame;
case videoFrameTypeIDR:
return kVideoFrameKey;
case videoFrameTypeSkip:
case videoFrameTypeI:
case videoFrameTypeP:
case videoFrameTypeIPMixed:
return kVideoFrameDelta;
default:
LOG(LS_WARNING) << "Unknown EVideoFrameType: " << type;
return kVideoFrameDelta;
}
}
--
---
You received this message because you are subscribed to the Google Groups "discuss-webrtc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to discuss-webrt...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/discuss-webrtc/c9b8bbbd-b925-4d9a-a20e-8aeb3dfce995%40googlegroups.com.