1
0
mirror of http://mpg123.de/trunk/.git synced 2025-07-31 13:24:22 +03:00

Manual bookmarking, as a start. Conplay does not yet really work with this.

git-svn-id: svn://scm.orgis.org/mpg123/trunk@3237 35dc7657-300d-0410-a2e5-dc2837fedb53
This commit is contained in:
thor
2012-08-28 06:26:35 +00:00
parent 10fb151a96
commit 52f055ba2f
5 changed files with 19 additions and 1 deletions

View File

@ -86,6 +86,12 @@ while(<MPG123>)
$entry = $1;
$frame = $2;
}
if(/^\[BOOKMARK\]\s+track\s+(\d+)\s+frame\s+(\d+)/)
{
print STDERR "\nGot bookmark at track $1, frame $2; not yet doing anything with that, besides storing.\n";
$entry = $1;
$frame = $2;
}
}
close(MPG123);