Lines Matching defs:width
1043 * width, height */
1415 int display_width = track->par->width;
1509 if (track->par->width == 720) { /* SD */
1550 if (track->par->width == 1280 && track->par->height == 720) {
1558 } else if (track->par->width == 1440 && track->par->height == 1080) {
1567 } else if (track->par->width == 1920 && track->par->height == 1080) {
1578 if (track->par->width == 1280 && track->par->height == 720) {
1586 } else if (track->par->width == 1920 && track->par->height == 1080) {
1612 if (track->par->width == 960 && track->par->height == 720) {
1620 } else if (track->par->width == 1440 && track->par->height == 1080) {
1631 if (track->par->width == 1280 && track->par->height == 720) {
1639 } else if (track->par->width == 1920 && track->par->height == 1080) {
1649 } else if ( track->par->width == 4096 && track->par->height == 2160
1650 || track->par->width == 3840 && track->par->height == 2160
1651 || track->par->width == 2048 && track->par->height == 1080) {
2001 avio_wb32(pb, track->par->width); /* apertureWidth_N */
2168 int xdcam_res = (track->par->width == 1280 && track->par->height == 720)
2169 || (track->par->width == 1440 && track->par->height == 1080)
2170 || (track->par->width == 1920 && track->par->height == 1080);
2184 } else if(track->par->width == 1440) {
2375 avio_wb16(pb, track->par->width); /* Video width */
2450 * is signalled via the normal width/height fields. */
3203 avio_wb32(pb, s->streams[stream_index]->codecpar->width); /* image_width */
3531 /* Track width and height, for visual only */
3536 track_width_1616 = track->par->width * 0x10000ULL;
3539 track->par->width * 0x10000LL,
3544 track_width_1616 = track->par->width * 0x10000ULL;
3547 av_log(mov->fc, AV_LOG_WARNING, "track width is too large\n");
3565 int32_t width = av_rescale(track->par->sample_aspect_ratio.num, track->par->width,
3576 avio_wb32(pb, width << 16);
3582 avio_wb32(pb, width << 16);
3588 avio_wb32(pb, track->par->width << 16);
5098 param_write_int(pb, "MaxWidth", track->par->width);
5100 param_write_int(pb, "DisplayWidth", track->par->width);
5932 avio_wb16(pb, video_par->width);
6973 int expected_stride = ((trk->par->width * bpc + 15) >> 4)*2;
7296 int i, width = 720, height = 480;
7319 sscanf(cur + 5, "%dx%d", &width, &height);
7337 st->codecpar->width = width;
7593 if (st->codecpar->width != 720 || (st->codecpar->height != 608 && st->codecpar->height != 512)) {
7608 if (st->codecpar->width > 65535 || st->codecpar->height > 65535) {
7609 av_log(s, AV_LOG_ERROR, "Resolution %dx%d too large for mov/mp4\n", st->codecpar->width, st->codecpar->height);