Searched refs:ufep (Results 1 – 4 of 4) sorted by relevance
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtph263pdepay.c | 246 guint8 ufep; in gst_rtp_h263p_depay_decorate_output_buffer() local 297 ufep = 0; in gst_rtp_h263p_depay_decorate_output_buffer() 298 if (!gst_bit_reader_get_bits_uint8 (&bits, &ufep, 3) || ufep > 1) { in gst_rtp_h263p_depay_decorate_output_buffer() 300 ufep); in gst_rtp_h263p_depay_decorate_output_buffer() 305 if (ufep == 1 && !gst_bit_reader_skip (&bits, 18)) { in gst_rtp_h263p_depay_decorate_output_buffer()
|
/third_party/gstreamer/gstplugins_bad/gst/videoparsers/ |
D | h263parse.c | 189 guint8 ufep; in gst_h263_parse_get_params() local 196 if (!gst_bit_reader_get_bits_uint8 (&br, &ufep, 3)) in gst_h263_parse_get_params() 198 GST_DEBUG (" UFEP 0x%x", ufep); in gst_h263_parse_get_params() 200 if (ufep == 1) { in gst_h263_parse_get_params() 273 if (ufep == 1) { in gst_h263_parse_get_params()
|
/third_party/ffmpeg/libavcodec/ |
D | ituh263dec.c | 1077 int ufep; in ff_h263_decode_picture_header() local 1081 ufep = get_bits(&s->gb, 3); /* Update Full Extended PTYPE */ in ff_h263_decode_picture_header() 1084 if (ufep == 1) { in ff_h263_decode_picture_header() 1115 } else if (ufep != 0) { in ff_h263_decode_picture_header() 1116 av_log(s->avctx, AV_LOG_ERROR, "Bad UFEP type (%d)\n", ufep); in ff_h263_decode_picture_header() 1136 if (ufep) { in ff_h263_decode_picture_header() 1193 if (ufep) { in ff_h263_decode_picture_header() 1208 if (ufep == 1) { in ff_h263_decode_picture_header()
|
D | ituh263enc.c | 157 int ufep=1; in ff_h263_encode_picture_header() local 162 put_bits(&s->pb,3,ufep); /* Update Full Extended PTYPE */ in ff_h263_encode_picture_header() 207 if(ufep){ in ff_h263_encode_picture_header()
|