summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2005-10-13 15:31:20 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2005-10-13 15:31:20 +0000
commite882eed904b89f9e0f638f08d6c9b9c859ced8ae (patch)
treef0b3faed4c82032b400841b5ea22b6181c1ea220 /ext
parent82d5fdb7248092f4bc3af1bd94b5cd0de4ac88d5 (diff)
downloadgst-plugins-bad-e882eed904b89f9e0f638f08d6c9b9c859ced8ae.tar.gz
gst-plugins-bad-e882eed904b89f9e0f638f08d6c9b9c859ced8ae.tar.bz2
gst-plugins-bad-e882eed904b89f9e0f638f08d6c9b9c859ced8ae.zip
ex/: and more typos fixed
Original commit message from CVS: * examples/stats/mp2ogg.c: * ext/tarkin/tarkin.c: (tarkin_analysis_framein), (tarkin_synthesis_packetin): and more typos fixed
Diffstat (limited to 'ext')
-rw-r--r--ext/tarkin/tarkin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/tarkin/tarkin.c b/ext/tarkin/tarkin.c
index 70bfefc0..f1047e9e 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);