projects
/
libam7xxx.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
e691b17
)
Refresh contrib/performance/0001-Instrument-code-with-fps-meter.patch
author
Antonio Ospite <ao2@ao2.it>
Tue, 17 Nov 2015 15:30:35 +0000
(16:30 +0100)
committer
Antonio Ospite <ao2@ao2.it>
Tue, 17 Nov 2015 15:30:35 +0000
(16:30 +0100)
contrib/performance/0001-Instrument-code-with-fps-meter.patch
patch
|
blob
|
history
diff --git
a/contrib/performance/0001-Instrument-code-with-fps-meter.patch
b/contrib/performance/0001-Instrument-code-with-fps-meter.patch
index
5c133ee
..
ef81acb
100644
(file)
--- a/
contrib/performance/0001-Instrument-code-with-fps-meter.patch
+++ b/
contrib/performance/0001-Instrument-code-with-fps-meter.patch
@@
-1,6
+1,6
@@
-From
dc6b216ffea1e80fd3f43d6144eb679a193f5666
Mon Sep 17 00:00:00 2001
-From: Antonio Ospite <
ospite@studenti.unina
.it>
-Date:
Sun, 28 Jul 2013 01:06:41 +02
00
+From
ab3f910957638300224f1f114df6e73115ec86b7
Mon Sep 17 00:00:00 2001
+From: Antonio Ospite <
ao2@ao2
.it>
+Date:
Tue, 17 Nov 2015 16:28:03 +01
00
Subject: [PATCH] Instrument code with fps-meter
X-Face: z*RaLf`X<@C75u6Ig9}{oW$H;1_\2t5)({*|jhM<pyWR#k60!#=#>/Vb;]yA5<GWI5`6u&+
;6b'@y|8w"wB;4/e!7wYYrcqdJFY,~%Gk_4]cq$Ei/7<j&N3ah(m`ku?pX.&+~:_/wC~dwn^)MizBG
Subject: [PATCH] Instrument code with fps-meter
X-Face: z*RaLf`X<@C75u6Ig9}{oW$H;1_\2t5)({*|jhM<pyWR#k60!#=#>/Vb;]yA5<GWI5`6u&+
;6b'@y|8w"wB;4/e!7wYYrcqdJFY,~%Gk_4]cq$Ei/7<j&N3ah(m`ku?pX.&+~:_/wC~dwn^)MizBG
@@
-10,22
+10,22
@@
Instrument code with fps-meter:
http://git.ao2.it/experiments/fps-meter.git/
---
examples/CMakeLists.txt | 2 +-
http://git.ao2.it/experiments/fps-meter.git/
---
examples/CMakeLists.txt | 2 +-
- examples/am7xxx-play.c |
4
++++
- 2 files changed,
5
insertions(+), 1 deletion(-)
+ examples/am7xxx-play.c |
5 +
++++
+ 2 files changed,
6
insertions(+), 1 deletion(-)
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
-index c
77a812..23af8a9
100644
+index c
563f5f..4bdbdec
100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -1,5 +1,5 @@
include(CheckSymbolExists)
-add_definitions("-D_POSIX_C_SOURCE=2") # for getopt()
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -1,5 +1,5 @@
include(CheckSymbolExists)
-add_definitions("-D_POSIX_C_SOURCE=2") # for getopt()
-+add_definitions("-D_POSIX_C_SOURCE=200112L") # for
getopt
()
++add_definitions("-D_POSIX_C_SOURCE=200112L") # for
clock_gettime
()
add_definitions("-D_POSIX_SOURCE") # for sigaction
add_definitions("-D_BSD_SOURCE") # for strdup
diff --git a/examples/am7xxx-play.c b/examples/am7xxx-play.c
add_definitions("-D_POSIX_SOURCE") # for sigaction
add_definitions("-D_BSD_SOURCE") # for strdup
diff --git a/examples/am7xxx-play.c b/examples/am7xxx-play.c
-index
3230e67..17228bf
100644
+index
6b0d206..271677b
100644
--- a/examples/am7xxx-play.c
+++ b/examples/am7xxx-play.c
@@ -34,6 +34,7 @@
--- a/examples/am7xxx-play.c
+++ b/examples/am7xxx-play.c
@@ -34,6 +34,7 @@
@@
-36,7
+36,7
@@
index 3230e67..17228bf 100644
/* On some systems ENOTSUP is not defined, fallback to its value on
* linux which is equal to EOPNOTSUPP which is 95
/* On some systems ENOTSUP is not defined, fallback to its value on
* linux which is equal to EOPNOTSUPP which is 95
-@@ -29
2,6 +293
,7 @@ static int am7xxx_play(const char *input_format_string,
+@@ -29
3,6 +294
,7 @@ static int am7xxx_play(const char *input_format_string,
int got_picture;
int got_packet;
int ret;
int got_picture;
int got_packet;
int ret;
@@
-44,15
+44,16
@@
index 3230e67..17228bf 100644
ret = video_input_init(&input_ctx, input_format_string, input_path, input_options);
if (ret < 0) {
ret = video_input_init(&input_ctx, input_format_string, input_path, input_options);
if (ret < 0) {
-@@ -35
4,6 +356,7
@@ static int am7xxx_play(const char *input_format_string,
+@@ -35
8,6 +360,8
@@ static int am7xxx_play(const char *input_format_string,
goto cleanup_out_buf;
}
+ fps_meter_init(&stats);
goto cleanup_out_buf;
}
+ fps_meter_init(&stats);
++
+ got_packet = 0;
while (run) {
/* read packet */
while (run) {
/* read packet */
- ret = av_read_frame(input_ctx.format_ctx, &in_packet);
-@@ -438,6 +441,7 @@ static int am7xxx_play(const char *input_format_string,
+@@ -447,6 +451,7 @@ static int am7xxx_play(const char *input_format_string,
run = 0;
goto end_while;
}
run = 0;
goto end_while;
}
@@
-61,5
+62,5
@@
index 3230e67..17228bf 100644
end_while:
if (!output_ctx.raw_output && got_packet)
--
end_while:
if (!output_ctx.raw_output && got_packet)
--
-
1.8.3
.2
+
2.6
.2