Lines Matching defs:width
255 int w = s->width;
264 const int vop_ref[4][2] = { { 0, 0 }, { s->width, 0 },
265 { 0, s->height }, { s->width, s->height } };
2291 int width, height, aspect_ratio_info;
2332 width = get_bits(gb, 14); /* video_object_layer_width */
2338 if (width && height) {
2339 if (s->width && s->height &&
2340 (s->width != width || s->height != height))
2342 s->width = width;
2377 int width, height, vo_ver_id, aspect_ratio_info;
2480 check_marker(s->avctx, gb, "before width");
2481 width = get_bits(gb, 13);
2485 if (width && height && /* they should be non zero but who knows */
2486 !(s->width && s->codec_tag == AV_RL32("MP4S"))) {
2487 if (s->width && s->height &&
2488 (s->width != width || s->height != height))
2490 s->width = width;
3052 skip_bits(gb, 13); /* width */
3053 check_marker(s->avctx, gb, "after width");
3201 s->h_edge_pos = s->width;