repo.or.cz
/
vlc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* Buffer choice optimizations - vout4 should eat even less CPU now.
[vlc.git]
/
todo.pl
blob
b1df4aad1815d0cbb8c92795954734e92ed1079c
1
#! /usr/bin/perl
2
3
$buffer
=
""
;
4
$description
=
""
;
5
6
open
FILE
,
"TODO"
;
7
8
while
(<
FILE
>) {
9
$buffer
.=
$_
;
10
if
(
/^Status:/
) {
11
if
(
/Todo/
) {
12
print
$buffer
;
13
}
else
{
14
print
"
\n
"
.
$description
;
15
print
$_
;
16
}
17
$buffer
=
""
;
18
$description
=
""
;
19
}
elsif
(
/^Description/
) {
20
$description
=
$_
;
21
}
22
}
23
24
close
FILE
;
25