Displaying 2 results from an estimated 2 matches for "oe_opt".
Did you mean:
oeopt
2006 Jul 19
0
Skeleton output support in oggenc
...de a patch to support skeleton output in oggenc. The
feature is disabled by default and can be enabled by using either -k
or --skeleton switch.
You can find the patch attached with the following ticket
http://trac.xiph.org/ticket/1008
MikeS or anyone with detail knowledge of oggenc. I changed the
oe_options and oe_enc_options data structure. Let me know if there's a
problem with that. Also you may try checking if the serialno for
skeleton bitstreams are handled properly if multiple files are given
in the input. I think I handled it properly but just in case :)
I am using a very simple API for...
2001 Sep 30
3
UTF-8 stuff
...coding = strdup(optarg);
- break;
case 'G':
opt->genre = realloc(opt->genre, (++opt->genre_count)*sizeof(char *));
opt->genre[opt->genre_count - 1] = strdup(optarg);
@@ -646,7 +643,7 @@
static void add_tag(vorbis_comment *vc, oe_options *opt,char *name, char *value)
{
char *utf8;
- if(utf8_encode(value, &utf8, opt->encoding) == 0)
+ if(convert_to_utf8(value, &utf8) >= 0)
{
if(name == NULL)
vorbis_comment_add(vc, utf8);
@@ -655,7 +652,7 @@...