/usr/share/doc/libmp3splt-dev/TODO is in libmp3splt-dev 0.7.2-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | USER FEATURE REQUESTS :
-----------------------
-
BUGS :
------
- ogg: eos not set on last file if the file to split does not have eos on last packet
FEATURES :
* use 'getline' (GNU extension) instead of 'fgets'
* don't set the same name on the structures as the defined type
* use 'backtrace()' on SIGSEV on GNU/Linux
* use sizeof(* pointer) instead of sizeof(struct pointer_struct)
* use 'substr' to copy a substring :
char *substr(char *dst, const char *src, size_t len)
{
sprintf(dst, "%.*s", len, src);
return dst;
}
* do proxy
* warning before overwriting files
|