• Home
  • Raw
  • Download

Lines Matching refs:outfile

12 void show_edid_data(FILE *outfile, unsigned char *edid_data,  in show_edid_data()  argument
19 fprintf(outfile, " 0x%04x: ", item + base); in show_edid_data()
21 fprintf(outfile, "%02x ", edid_data[item++]); in show_edid_data()
25 fprintf(outfile, "\n"); in show_edid_data()
206 int show_test_edid(FILE *outfile, int n) in show_test_edid() argument
210 fprintf(outfile, "Test EDID %d\n", n); in show_test_edid()
211 show_edid(outfile, test_edids[n-1], 1); in show_test_edid()
228 void show_edid_dtd(FILE *outfile, unsigned char *base) in show_edid_dtd() argument
256 fprintf(outfile, in show_edid_dtd()
263 fprintf(outfile, "H: start %d, end %d, total %d\n", in show_edid_dtd()
265 fprintf(outfile, "V: start %d, end %d, total %d\n", in show_edid_dtd()
267 fprintf(outfile, "Size %dx%dmm, Border %dx%d pixels\n", in show_edid_dtd()
280 fprintf(outfile, "%s: %s\n", in show_edid_dtd()
285 fprintf(outfile, "%s\n", monstr); in show_edid_dtd()
289 fprintf(outfile, in show_edid_dtd()
297 fprintf(outfile, in show_edid_dtd()
319 static inline void show_audio_dbc(FILE *outfile, in show_audio_dbc() argument
331 fprintf(outfile, "Audio: %d channels %s: ", in show_audio_dbc()
336 fprintf(outfile, "192k "); in show_audio_dbc()
338 fprintf(outfile, "176k "); in show_audio_dbc()
340 fprintf(outfile, "96k "); in show_audio_dbc()
342 fprintf(outfile, "88k "); in show_audio_dbc()
344 fprintf(outfile, "48k "); in show_audio_dbc()
346 fprintf(outfile, "44k "); in show_audio_dbc()
348 fprintf(outfile, "32k "); in show_audio_dbc()
352 fprintf(outfile, "%s%s%s\n", in show_audio_dbc()
357 fprintf(outfile, "Max %dkHz\n", in show_audio_dbc()
360 fprintf(outfile, "Codec vendor flags 0x%02x\n", in show_audio_dbc()
368 static inline void show_vendor_dbc(FILE *outfile, in show_vendor_dbc() argument
375 fprintf(outfile, "Vendor block for %02x-%02x-%02x", in show_vendor_dbc()
382 fprintf(outfile, in show_vendor_dbc()
395 fprintf(outfile, "Max TMDS Frequency %dMHz\n", in show_vendor_dbc()
399 fprintf(outfile, "Video latency %dms, audio latency %dms\n", in show_vendor_dbc()
404 fprintf(outfile, in show_vendor_dbc()
410 static void show_extended_dbc(FILE *outfile, in show_extended_dbc() argument
422 fprintf(outfile, "Video Capabilities:\n"); in show_extended_dbc()
423 fprintf(outfile, in show_extended_dbc()
433 fprintf(outfile, in show_extended_dbc()
436 fprintf(outfile, " IT modes %s\n", in show_extended_dbc()
438 fprintf(outfile, " CE modes %s\n", in show_extended_dbc()
444 fprintf(outfile, in show_extended_dbc()
452 fprintf(outfile, in show_extended_dbc()
458 void show_cea_timing(FILE *outfile, unsigned char *edid_ext) in show_cea_timing() argument
463 fprintf(outfile, "Found CEA EDID Timing Extension rev 3\n"); in show_cea_timing()
466 fprintf(outfile, "Block is empty (off_dtd = %d)\n", off_dtd); in show_cea_timing()
471 fprintf(outfile, in show_cea_timing()
474 fprintf(outfile, "There is space for %d DTDs in extension\n", n_dtd); in show_cea_timing()
475 fprintf(outfile, in show_cea_timing()
478 fprintf(outfile, "IT formats %sdefault to underscan\n", in show_cea_timing()
480 fprintf(outfile, in show_cea_timing()
496 show_audio_dbc(outfile, edid_ext, dbc); in show_cea_timing()
503 fprintf(outfile, "Video: Code %d %s\n", vtype, in show_cea_timing()
512 show_vendor_dbc(outfile, edid_ext, dbc + 1); in show_cea_timing()
520 fprintf(outfile, "Speakers: %s%s%s%s%s%s%s\n", in show_cea_timing()
532 show_extended_dbc(outfile, edid_ext, dbc); in show_cea_timing()
536 fprintf(outfile, in show_cea_timing()
549 fprintf(outfile, in show_cea_timing()
553 show_edid_dtd(outfile, edid_ext + (off_dtd + DTD_SIZE * i)); in show_cea_timing()
660 void show_edid(FILE *outfile, unsigned char *edid_data, int ext) in show_edid() argument
669 fprintf(outfile, "Block does not contain EDID header\n"); in show_edid()
673 fprintf(outfile, "Manufacturer ID %c%c%c, product ID 0x%x\n", in show_edid()
679 fprintf(outfile, in show_edid()
683 fprintf(outfile, in show_edid()
696 fprintf(outfile, "Features: %s %s %s %s %s %s %s\n", in show_edid()
705 fprintf(outfile, "Established Timing:\n"); in show_edid()
707 fprintf(outfile, "720x400@70\n"); in show_edid()
709 fprintf(outfile, "720x400@88\n"); in show_edid()
711 fprintf(outfile, "640x480@60\n"); in show_edid()
713 fprintf(outfile, "640x480@67\n"); in show_edid()
715 fprintf(outfile, "640x480@72\n"); in show_edid()
717 fprintf(outfile, "640x480@75\n"); in show_edid()
719 fprintf(outfile, "800x600@56\n"); in show_edid()
721 fprintf(outfile, "800x600@60\n"); in show_edid()
723 fprintf(outfile, "800x600@72\n"); in show_edid()
725 fprintf(outfile, "800x600@75\n"); in show_edid()
727 fprintf(outfile, "832x624@75\n"); in show_edid()
729 fprintf(outfile, "1024x768i@87\n"); in show_edid()
731 fprintf(outfile, "1024x768@60\n"); in show_edid()
733 fprintf(outfile, "1024x768@70\n"); in show_edid()
735 fprintf(outfile, "1024x768@75\n"); in show_edid()
737 fprintf(outfile, "1280x1024@75\n"); in show_edid()
739 fprintf(outfile, "1152x870@75\n"); in show_edid()
741 fprintf(outfile, "Standard timing:\n"); in show_edid()
770 fprintf(outfile, "%d: %dx%d@%d\n", in show_edid()
774 fprintf(outfile, "Descriptor blocks:\n"); in show_edid()
776 show_edid_dtd(outfile, in show_edid()
778 fprintf(outfile, in show_edid()
787 show_cea_timing(outfile, edid_ext); in show_edid()
818 fprintf(outfile, in show_edid()