Blame src/examples/dump-comments.c

Packit a38265
/*
Packit a38265
   Copyright (C) 2003 Commonwealth Scientific and Industrial Research
Packit a38265
   Organisation (CSIRO) Australia
Packit a38265
Packit a38265
   Redistribution and use in source and binary forms, with or without
Packit a38265
   modification, are permitted provided that the following conditions
Packit a38265
   are met:
Packit a38265
Packit a38265
   - Redistributions of source code must retain the above copyright
Packit a38265
   notice, this list of conditions and the following disclaimer.
Packit a38265
Packit a38265
   - Redistributions in binary form must reproduce the above copyright
Packit a38265
   notice, this list of conditions and the following disclaimer in the
Packit a38265
   documentation and/or other materials provided with the distribution.
Packit a38265
Packit a38265
   - Neither the name of CSIRO Australia nor the names of its
Packit a38265
   contributors may be used to endorse or promote products derived from
Packit a38265
   this software without specific prior written permission.
Packit a38265
Packit a38265
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit a38265
   ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit a38265
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
Packit a38265
   PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE ORGANISATION OR
Packit a38265
   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
Packit a38265
   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
Packit a38265
   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
Packit a38265
   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
Packit a38265
   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
Packit a38265
   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Packit a38265
   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit a38265
*/
Packit a38265
Packit a38265
#include "config.h"
Packit a38265
Packit a38265
#include <stdio.h>
Packit a38265
#include <stdlib.h>
Packit a38265
#include <string.h>
Packit a38265
Packit a38265
#include "oggz/oggz.h"
Packit a38265
Packit a38265
static char * infilename;
Packit a38265
static int previous_b_o_s = 0;
Packit a38265
Packit a38265
static void
Packit a38265
read_comments (OGGZ * oggz, long serialno)
Packit a38265
{
Packit a38265
  const OggzComment * comment;
Packit a38265
  const char * vendor;
Packit a38265
  const char * content_type;
Packit a38265
Packit a38265
  content_type = oggz_stream_get_content_type (oggz, serialno);
Packit a38265
Packit a38265
  printf ("%s: serial %010lu\n\n", content_type, serialno);
Packit a38265
Packit a38265
  vendor = oggz_comment_get_vendor (oggz, serialno);
Packit a38265
  if (vendor) printf ("  Vendor: %s\r\n", vendor);
Packit a38265
Packit a38265
  for (comment = oggz_comment_first (oggz, serialno); comment;
Packit a38265
       comment = oggz_comment_next (oggz, serialno, comment)) {
Packit a38265
    if (comment->value) {
Packit a38265
      printf ("  %s: %s\r\n", comment->name, comment->value);
Packit a38265
    } else {
Packit a38265
      printf ("  %s\r\n", comment->name);
Packit a38265
    }
Packit a38265
  }
Packit a38265
Packit a38265
  puts ("\r\n");
Packit a38265
}
Packit a38265
Packit a38265
static int
Packit a38265
read_packet (OGGZ * oggz, oggz_packet * zp, long serialno, void * user_data)
Packit a38265
{
Packit a38265
  if (previous_b_o_s) {
Packit a38265
    read_comments (oggz, serialno);
Packit a38265
  }
Packit a38265
Packit a38265
  previous_b_o_s = zp->op.b_o_s;
Packit a38265
Packit a38265
  return 0;
Packit a38265
}
Packit a38265
Packit a38265
int
Packit a38265
main (int argc, char ** argv)
Packit a38265
{
Packit a38265
  OGGZ * oggz;
Packit a38265
Packit a38265
  if (argc < 2) {
Packit a38265
    printf ("usage: %s infilename\n", argv[0]);
Packit a38265
    printf ("*** Oggz example program. ***\n");
Packit a38265
    printf ("Read comments from an Ogg file.\n");
Packit a38265
    exit (1);
Packit a38265
  }
Packit a38265
Packit a38265
  infilename = argv[1];
Packit a38265
Packit a38265
  if ((oggz = oggz_open ((char *) infilename, OGGZ_READ)) == NULL) {
Packit a38265
    printf ("unable to open file %s\n", infilename);
Packit a38265
    exit (1);
Packit a38265
  }
Packit a38265
Packit a38265
  oggz_set_read_callback (oggz, -1 /* read all streams */, read_packet, NULL);
Packit a38265
Packit a38265
  oggz_run (oggz);
Packit a38265
Packit a38265
  oggz_close (oggz);
Packit a38265
Packit a38265
  exit (0);
Packit a38265
}
Packit a38265