Home
last modified time | relevance | path

Searched refs:h264_hdr (Results 1 – 4 of 4) sorted by relevance

/dports/audio/baresip/baresip-0.5.8/modules/avcodec/
H A Ddecode.c283 struct h264_hdr h264_hdr; in decode_h264() local
289 err = h264_hdr_decode(&h264_hdr, src); in decode_h264()
296 h264_is_keyframe(h264_hdr.type) ? "<KEY>" : " ", in decode_h264()
297 h264_hdr.type); in decode_h264()
300 if (h264_hdr.f) { in decode_h264()
305 if (st->frag && h264_hdr.type != H264_NAL_FU_A) { in decode_h264()
313 if (1 <= h264_hdr.type && h264_hdr.type <= 23) { in decode_h264()
315 if (h264_is_keyframe(h264_hdr.type)) in decode_h264()
328 else if (H264_NAL_FU_A == h264_hdr.type) { in decode_h264()
334 h264_hdr.type = fu.type; in decode_h264()
[all …]
/dports/audio/baresip/baresip-0.5.8/src/
H A Dh264.c12 int h264_hdr_encode(const struct h264_hdr *hdr, struct mbuf *mb) in h264_hdr_encode()
22 int h264_hdr_decode(struct h264_hdr *hdr, struct mbuf *mb) in h264_hdr_decode()
/dports/audio/baresip/baresip-0.5.8/include/
H A Dbaresip.h1124 struct h264_hdr { struct
1130 int h264_hdr_encode(const struct h264_hdr *hdr, struct mbuf *mb); argument
1131 int h264_hdr_decode(struct h264_hdr *hdr, struct mbuf *mb);
/dports/audio/baresip/baresip-0.5.8/modules/v4l2_codec/
H A Dv4l2_codec.c327 struct h264_hdr hdr; in read_handler()