Home
last modified time | relevance | path

Searched refs:horiz_size_ext (Results 1 – 9 of 9) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmpegvideo_parser.c45 int horiz_size_ext, vert_size_ext, bit_rate_ext; in mpegvideo_extract_headers() local
89 horiz_size_ext = ((buf[1] & 1) << 1) | (buf[2] >> 7); in mpegvideo_extract_headers()
104 pc->width = (pc->width & 0xFFF) | (horiz_size_ext << 12); in mpegvideo_extract_headers()
Dmpeg12dec.c1390 int horiz_size_ext, vert_size_ext; in mpeg_decode_sequence_extension() local
1405 horiz_size_ext = get_bits(&s->gb, 2); in mpeg_decode_sequence_extension()
1407 s->width |= (horiz_size_ext << 12); in mpeg_decode_sequence_extension()
/third_party/gstreamer/gstplugins_bad/tests/check/libs/
Dmpegvideoparser.c131 assert_equals_int (seqext.horiz_size_ext, 0); in GST_START_TEST()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/
Dgstmpegvideoparser.h277 guint8 horiz_size_ext, vert_size_ext; member
Dgstmpegvideoparser.c429 seqext->horiz_size_ext = gst_bit_reader_get_bits_uint8_unchecked (&br, 2); in gst_mpeg_video_packet_parse_sequence_extension()
587 seqhdr->width |= (seqext->horiz_size_ext << 12); in gst_mpeg_video_finalise_mpeg2_sequence_header()
/third_party/gstreamer/gstplugins_bad/sys/va/
Dgstvampeg2dec.c239 width = (width & 0x0fff) | ((guint32) seq_ext->horiz_size_ext << 12); in gst_va_mpeg2_dec_new_sequence()
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11mpeg2dec.cpp356 width = (width & 0x0fff) | ((guint32) seq_ext->horiz_size_ext << 12); in gst_d3d11_mpeg2_dec_new_sequence()
/third_party/gstreamer/gstplugins_bad/sys/v4l2codecs/
Dgstv4l2codecmpeg2dec.c386 width = (width & 0x0fff) | ((guint32) seq_ext->horiz_size_ext << 12); in gst_v4l2_codec_mpeg2_dec_new_sequence()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecs/
Dgstmpeg2decoder.c568 width = (priv->width & 0x0fff) | ((guint32) seq_ext.horiz_size_ext << 12); in gst_mpeg2_decoder_handle_sequence_ext()