diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | examples/stats/mp2ogg.c | 2 | ||||
-rw-r--r-- | ext/tarkin/tarkin.c | 6 |
3 files changed, 11 insertions, 4 deletions
@@ -1,3 +1,10 @@ +2005-10-13 Stefan Kost <ensonic@users.sf.net> + + * examples/stats/mp2ogg.c: + * ext/tarkin/tarkin.c: (tarkin_analysis_framein), + (tarkin_synthesis_packetin): + and more typos fixed + 2005-10-13 Tim-Philipp Müller <tim at centricular dot net> * ext/faac/gstfaac.c: (gst_faac_class_init), (gst_faac_init), diff --git a/examples/stats/mp2ogg.c b/examples/stats/mp2ogg.c index d39323cab..fc56d5b5b 100644 --- a/examples/stats/mp2ogg.c +++ b/examples/stats/mp2ogg.c @@ -20,7 +20,7 @@ #include <gst/gst.h> /* This example app demonstartes the use of pad query and convert to - * get usefull statistics about a plugin. In this case we monitor the + * get useful statistics about a plugin. In this case we monitor the * compression status of mpeg audio to ogg vorbis transcoding. */ diff --git a/ext/tarkin/tarkin.c b/ext/tarkin/tarkin.c index 70bfefc0b..f1047e9e4 100644 --- a/ext/tarkin/tarkin.c +++ b/ext/tarkin/tarkin.c @@ -252,7 +252,7 @@ tarkin_analysis_framein (TarkinStream * s, uint8_t * frame, _stream_flush (s); #ifdef DBG_OGG - printf ("dbg_ogg: framein at pos %d/%d, n° %d,%d on layer %d\n", + printf ("dbg_ogg: framein at pos %d/%d, n? %d,%d on layer %d\n", date->numerator, date->denominator, layer->frameno, s->current_frame, layer_id); #endif @@ -301,7 +301,7 @@ tarkin_synthesis_packetin (TarkinStream * s, ogg_packet * op) TarkinPacket *packet; #ifdef DBG_OGG - printf ("dbg_ogg: Reading packet n° %lld, granulepos %lld, len %ld, %s%s\n", + printf ("dbg_ogg: Reading packet n? %lld, granulepos %lld, len %ld, %s%s\n", op->packetno, op->granulepos, op->bytes, op->b_o_s ? "b_o_s" : "", op->e_o_s ? "e_o_s" : ""); #endif @@ -329,7 +329,7 @@ tarkin_synthesis_packetin (TarkinStream * s, ogg_packet * op) for (junk = 1 << 31; junk & 1 << 31;) /* and many future data */ while ((junk = oggpack_read (&opb, 32)) & 1 << 30); /* That is, feature data comes in 30 bit chunks. We also have - * 31 potentially usefull bits in last chunk. */ + * 31 potentially useful bits in last chunk. */ } nread = (opb.ptr - opb.buffer); |