Changeset 1059
- Timestamp:
- 2005-03-07 15:35:28 (4 years ago)
- Files:
-
- liboggz/trunk/doc/oggzrip.1 (modified) (2 diffs)
- liboggz/trunk/doc/oggzrip.1.sgml (modified) (1 diff)
- liboggz/trunk/src/tools/oggzrip.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
liboggz/trunk/doc/oggzrip.1
r840 r1059 83 83 .IP "-s \fBserialno\fR, --serialno \fBserialno\fR" 10 84 84 Output streams with given serialno. 85 .IP "-i \fB streamid\fR, --streamid \fBstreamid\fR" 1086 Filter by stream -ID, IDsare assigned to85 .IP "-i \fBindex\fR, --stream-index \fBindex\fR" 10 86 Filter by stream index. These are assigned to 87 87 streams in the order of their BOS pages, 88 88 starting at 0. … … 105 105 \fBoggzdump\fP\fB(1)\fP, 106 106 \fBoggzdiff\fP\fB(1)\fP 107 .\" created by instant / docbook-to-man, Sat 05 Feb 2005, 15:44107 .\" created by instant / docbook-to-man, Tue 08 Mar 2005, 10:40 liboggz/trunk/doc/oggzrip.1.sgml
r840 r1059 119 119 </varlistentry> 120 120 <varlistentry> 121 <term>-i <parameter> streamid</parameter>, --streamid <parameter>streamid</parameter></term>122 <listitem><para>Filter by stream -ID, IDsare assigned to121 <term>-i <parameter>index</parameter>, --stream-index <parameter>index</parameter></term> 122 <listitem><para>Filter by stream index. These are assigned to 123 123 streams in the order of their BOS pages, 124 124 starting at 0. liboggz/trunk/src/tools/oggzrip.c
r840 r1059 110 110 printf (" -s serialno, --serialno serialno\n"); 111 111 printf (" Output streams with given serialno.\n"); 112 printf (" -i streamid, --streamid streamid\n");113 printf (" Filter by stream -ID, IDsare assigned to\n");112 printf (" -i index, --stream-index index\n"); 113 printf (" Filter by stream index. These are assigned to\n"); 114 114 printf (" streams in the order of their BOS pages,\n"); 115 115 printf (" starting at 0.\n"); … … 339 339 {"verbose", no_argument, 0, 'V'}, 340 340 {"serialno", required_argument, 0, 's'}, 341 {"stream id", required_argument, 0, 'i'},341 {"stream-index", required_argument, 0, 'i'}, 342 342 {"content-type", required_argument, 0, 'c'}, 343 343 {0,0,0,0} … … 377 377 378 378 break; 379 case 'i': /* stream id*/379 case 'i': /* stream index */ 380 380 if (ordata->num_streamids >= MAX_FILTER) { 381 fprintf (stderr, "ERROR: too many stream ids on command line\n");381 fprintf (stderr, "ERROR: too many stream indexes on command line\n"); 382 382 goto exit_err; 383 383 }