]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Don't display output FPS, as it's not clear how accurate it is...
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Sat, 20 Nov 2021 15:11:57 +0000 (15:11 +0000)
committerMike Brady <4265913+mikebrady@users.noreply.github.com>
Sat, 20 Nov 2021 15:11:57 +0000 (15:11 +0000)
player.c

index a8fd3a540ec5ca75a69e8d087f9321897011184b..410106433f35dd10bfa3da4e3c8c35b4e18f025d 100644 (file)
--- a/player.c
+++ b/player.c
@@ -1545,7 +1545,9 @@ int *statistics_print_profile;
 
 // these arrays specify which of the statistics specified by the statistics_item calls will actually
 // be printed -- 1 means print, 0 means skip
-int ap1_synced_statistics_print_profile[] = {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1};
+
+// don't display output fps -- not sure how accurate it is (change item 14 and 17 to 1 to restore)
+int ap1_synced_statistics_print_profile[] = {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0};
 int ap1_nosync_statistics_print_profile[] = {1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0};
 int ap1_nodelay_statistics_print_profile[] = {0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0};
 
@@ -1556,8 +1558,9 @@ int ap2_realtime_nosync_stream_statistics_print_profile[] = {1, 0, 0, 1, 1, 1, 1
 int ap2_realtime_nodelay_stream_statistics_print_profile[] = {0, 0, 0, 1, 1, 1, 1, 1, 0,
                                                               1, 1, 0, 0, 0, 0, 0, 0};
 
+// don't display output fps -- not sure how accurate it is (change item 14 1 to restore)
 int ap2_buffered_synced_stream_statistics_print_profile[] = {1, 1, 1, 1, 0, 0, 0, 0, 1,
-                                                             1, 1, 0, 0, 1, 0, 0, 0};
+                                                             1, 1, 0, 0, 0, 0, 0, 0};
 int ap2_buffered_nosync_stream_statistics_print_profile[] = {1, 0, 0, 1, 0, 0, 0, 0, 1,
                                                              1, 1, 0, 0, 0, 0, 0, 0};
 int ap2_buffered_nodelay_stream_statistics_print_profile[] = {0, 0, 0, 1, 0, 0, 0, 0, 0,