Lines Matching +full:480 +full:m
331 static const struct tvnorm f60sqpixel = { 780, 640, 51, 716, 525, 480, 12 };
333 static const struct tvnorm f60ccir601 = { 858, 720, 57, 788, 525, 480, 16 };
336 static const struct tvnorm f60ccir601_lml33 = { 858, 720, 57 + 34, 788, 525, 480, 16 };
340 static const struct tvnorm f60sqpixel_dc10 = { 780, 640, 0, 716, 525, 480, 12 };
347 static const struct tvnorm f60ccir601_lm33r10 = { 858, 720, 56 + 54, 788, 525, 480, 16 };
357 static const struct tvnorm f60ccir601_avs6eyes = { 858, 720, 56, 788, 525, 480, 16 };
1115 struct videocodec_master *m = NULL; in zoran_setup_videocodec() local
1117 m = devm_kmalloc(&zr->pci_dev->dev, sizeof(*m), GFP_KERNEL); in zoran_setup_videocodec()
1118 if (!m) in zoran_setup_videocodec()
1119 return m; in zoran_setup_videocodec()
1126 m->magic = 0L; in zoran_setup_videocodec()
1127 m->type = 0; in zoran_setup_videocodec()
1129 m->flags = CODEC_FLAG_ENCODER | CODEC_FLAG_DECODER; in zoran_setup_videocodec()
1130 strscpy(m->name, ZR_DEVNAME(zr), sizeof(m->name)); in zoran_setup_videocodec()
1131 m->data = zr; in zoran_setup_videocodec()
1135 m->readreg = zr36060_read; in zoran_setup_videocodec()
1136 m->writereg = zr36060_write; in zoran_setup_videocodec()
1137 m->flags |= CODEC_FLAG_JPEG | CODEC_FLAG_VFE; in zoran_setup_videocodec()
1140 m->readreg = zr36050_read; in zoran_setup_videocodec()
1141 m->writereg = zr36050_write; in zoran_setup_videocodec()
1142 m->flags |= CODEC_FLAG_JPEG; in zoran_setup_videocodec()
1145 m->readreg = zr36016_read; in zoran_setup_videocodec()
1146 m->writereg = zr36016_write; in zoran_setup_videocodec()
1147 m->flags |= CODEC_FLAG_VFE; in zoran_setup_videocodec()
1151 return m; in zoran_setup_videocodec()