Blame doc/oggz-diff.1

Packit a38265
.TH "oggz-diff" "1" 
Packit a38265
.SH "NAME" 
Packit a38265
oggz-diff \(em Hexdump the packets of two Ogg files and output differences 
Packit a38265
 
Packit a38265
.SH "SYNOPSIS" 
Packit a38265
.PP 
Packit a38265
\fBoggz-diff\fR [options]  [OGGZDUMP_OPTIONS]  [DIFF_OPTIONS] file1.ogg file2.ogg  
Packit a38265
.PP 
Packit a38265
\fB\fBoptions:\fR\fR [\-\-verbose ]  [\-v  | \-\-version ]  [\-h  | \-\-help ]  
Packit a38265
.PP 
Packit a38265
\fB\fBOGGZDUMP_OPTIONS:\fR\fR [\-b  | \-\-binary ]  [\-x  | \-\-hexadecimal ]  [\-c content-type  | \-\-content-type content-type ]  [\-s serialno  | \-\-serialno serialno ]  [\-O  | \-\-hide-offset ]  [\-S  | \-\-hide-serialno ]  [\-G  | \-\-hide-granulepos ]  [\-P  | \-\-hide-packetno ]  
Packit a38265
.PP 
Packit a38265
\fB\fBDIFF_OPTIONS:\fR\fR [\-q  | \-\-brief ]  [\-C NUM  | \-\-context[=NUM] ]  [\-u  | \-U NUM  | \-\-unified[=NUM] ]  [\-e  | \-\-ed ]  [\-\-normal ]  [\-\-rcs ]  [\-y  | \-\-side-by-side ]  [\-l  | \-\-paginate ]  
Packit a38265
.SH "Description" 
Packit a38265
.PP 
Packit a38265
\fBoggz-diff\fR is a \fBsh\fR script which 
Packit a38265
uses \fBoggz-dump\fR to generate hexadecimal packet dumps 
Packit a38265
of each input file, then outputs the difference between these dumps 
Packit a38265
using \fBdiff\fR. 
Packit a38265
 
Packit a38265
.SH "Options" 
Packit a38265
.PP 
Packit a38265
\fBoggz-diff\fR forwards a subset of options 
Packit a38265
accepted by \fBoggz-dump\fR and \fBdiff\fR. 
Packit a38265
See 
Packit a38265
\fBoggz-dump\fP\fB(1)\fP and 
Packit a38265
\fBdiff\fP\fB(1)\fP for more detail. 
Packit a38265
 
Packit a38265
.SS "oggz-dump format options" 
Packit a38265
.IP "\-b, \-\-binary" 10 
Packit a38265
Generate a binary dump of each packet 
Packit a38265
 
Packit a38265
.IP "\-x, \-\-hexadeciaml" 10 
Packit a38265
Generate a hexadecimal dump of each packet 
Packit a38265
 
Packit a38265
.SS "oggz-dump filtering options" 
Packit a38265
.IP "\-c \fBcontent-type\fR, \-\-content-type \fBcontent-type\fR" 10 
Packit a38265
Dump only the logical bitstreams for a specific 
Packit a38265
\fBcontent-type\fR.
Packit a38265
Run \fBoggz-known-codecs\fP\fB(1)\fP for a full list
Packit a38265
of codecs known by the installed version of oggz.
Packit a38265
 
Packit a38265
.IP "\-s \fBserialno\fR, \-\-serialno \fBserialno\fR" 10 
Packit a38265
Dump only the logical bitstream with specified 
Packit a38265
\fBserialno\fR. 
Packit a38265
 
Packit a38265
.IP "\-O, \-\-hide-offset" 10 
Packit a38265
Hide the byte offset field of the preamble for 
Packit a38265
each packet dumped. This is particularly useful when comparing 
Packit a38265
Ogg bitstreams that differ only in page structure. 
Packit a38265
 
Packit a38265
.IP "\-S, \-\-hide-serialno" 10 
Packit a38265
Hide the serialno field of the preamble for 
Packit a38265
each packet dumped. This is particularly useful when comparing 
Packit a38265
Ogg bitstreams that differ only in serialno assignment. 
Packit a38265
 
Packit a38265
.IP "\-G, \-\-hide-granulepos" 10 
Packit a38265
Hide the granulepos field of the preamble for 
Packit a38265
each packet dumped. 
Packit a38265
 
Packit a38265
.IP "\-P, \-\-hide-packetno" 10 
Packit a38265
Hide the packetno field of the preamble for 
Packit a38265
each packet dumped. 
Packit a38265
 
Packit a38265
.SS "diff options" 
Packit a38265
.PP 
Packit a38265
The \-w (\-\-ignore-all-space) option to \fBdiff\fR 	is always implied. 
Packit a38265
 
Packit a38265
.IP "\-q, \-\-brief" 10 
Packit a38265
Output only whether files differ. 
Packit a38265
 
Packit a38265
.IP "\-C \fBNUM\fR, \-\-context[=\fBNUM\fR]" 10 
Packit a38265
Output NUM lines of copied context. 
Packit a38265
 
Packit a38265
.IP "\-u, \-U \fBNUM\fR, \-\-unified[=\fBNUM\fR]" 10 
Packit a38265
Output NUM (default 3) lines of unified context. 
Packit a38265
 
Packit a38265
.IP "\-e, \-\-ed" 10 
Packit a38265
Output an ed script. 
Packit a38265
 
Packit a38265
.IP "\-\-normal" 10 
Packit a38265
Output a normal diff. 
Packit a38265
 
Packit a38265
.IP "\-\-rcs" 10 
Packit a38265
Output an RCS format diff. 
Packit a38265
 
Packit a38265
.IP "\-y, \-\-side-by-side" 10 
Packit a38265
Output in two columns. 
Packit a38265
 
Packit a38265
.IP "\-l, \-\-paginate" 10 
Packit a38265
Pass the output through \fBpr\fR to 
Packit a38265
paginate it. 
Packit a38265
 
Packit a38265
.SS "Miscellaneous options" 
Packit a38265
.IP "\-\-verbose" 10 
Packit a38265
Display verbose messages. 
Packit a38265
.IP "\-v, \-\-version" 10 
Packit a38265
Display version information and exit. 
Packit a38265
.IP "\-h, \-\-help" 10 
Packit a38265
Display usage information and exit. 
Packit a38265
.SH "AUTHOR" 
Packit a38265
.PP 
Packit a38265
Conrad Parker       
Packit a38265
.SH "COPYRIGHT" 
Packit a38265
.PP 
Packit a38265
Copyright \(co 2003 CSIRO Australia 
Packit a38265
 
Packit a38265
.SH "SEE ALSO" 
Packit a38265
.PP 
Packit a38265
\fBoggz-dump\fP\fB(1)\fP, 
Packit a38265
\fBdiff\fP\fB(1)\fP, 
Packit a38265
\fBpatch\fP\fB(1)\fP      
Packit a38265
.\" created by instant / docbook-to-man, Mon 23 Feb 2009, 12:35