~ubuntu-branches/debian/sid/vorbis-tools/sid

« back to all changes in this revision

Viewing changes to vcut/vcut.h

  • Committer: Bazaar Package Importer
  • Author(s): Jesus Climent
  • Date: 2005-04-10 09:22:24 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050410092224-xtukpa3qghghhjje
Tags: 1.0.1-1.3
* Authorized NMU.
* Modified alsa to mention alsa09 (although the device might be nowadays
  alsa, back, since alsa1.0 has been already released). (Closes: #258286)
* Modified the manpage/help message for vorbiscomment to make it a bit more
  userfiendly: Closes: #252531.
* Added oggdec to the long description field, so that it triggers apt-cache
  searches: Closes: #274894.
* Typos in manpages: Closes: #302150.
* Escaped dashes in manpage: Closes: #264365.
* Quiet option is actually with -Q, not -q (Closes: #211289) Reported
  upstream but patched for Debian.
* Change input.wav with inputfile, since we accept flac-formated files:
  Closes: #262509.
* Translation bits:
  * Updated translation hu.po: Closes: #272037.
  * French translation correction: Encodage -> Codage (Closes: #248431).
  * debian/rules: remove .gmo's to avoid clash with uploaded tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
        vorbis_info *vi;
19
19
        int prevW;
20
20
        ogg_int64_t initialgranpos;
 
21
        int time;
21
22
        ogg_int64_t cutpoint;
22
23
        unsigned int serial;
23
24
        vcut_packet **headers; /* 3 */
28
29
 
29
30
int vcut_process(vcut_state *state);
30
31
void vcut_set_files(vcut_state *s, FILE *in, FILE *out1, FILE *out2);
31
 
void vcut_set_cutpoint(vcut_state *s, ogg_int64_t cutpoint);
 
32
void vcut_set_cutpoint(vcut_state *s, ogg_int64_t cutpoint, int time);
32
33
vcut_state *vcut_new(void);
33
34
void vcut_free(vcut_state *state);
34
35