chaining_example.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /********************************************************************
  2. * *
  3. * THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE. *
  4. * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
  5. * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE. *
  6. * PLEASE READ THESE TERMS DISTRIBUTING. *
  7. * *
  8. * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-2000 *
  9. * by Monty <monty@xiph.org> and The XIPHOPHORUS Company *
  10. * http://www.xiph.org/ *
  11. * *
  12. ********************************************************************
  13. function: illustrate simple use of chained bitstream and vorbisfile.a
  14. last mod: $Id: chaining_example.c,v 1.5 2000/06/14 10:13:35 xiphmont Exp $
  15. ********************************************************************/
  16. #include "vorbis/codec.h"
  17. #include "vorbis/vorbisfile.h"
  18. #include "../lib/misc.h"
  19. int main(){
  20. OggVorbis_File ov;
  21. int i;
  22. /* open the file/pipe on stdin */
  23. if(ov_open(stdin,&ov,NULL,-1)==-1){
  24. printf("Could not open input as an OggVorbis file.\n\n");
  25. exit(1);
  26. }
  27. /* print details about each logical bitstream in the input */
  28. if(ov_seekable(&ov)){
  29. printf("Input bitstream contained %ld logical bitstream section(s).\n",
  30. ov_streams(&ov));
  31. printf("Total bitstream playing time: %ld seconds\n\n",
  32. (long)ov_time_total(&ov,-1));
  33. }else{
  34. printf("Standard input was not seekable.\n"
  35. "First logical bitstream information:\n\n");
  36. }
  37. for(i=0;i<ov_streams(&ov);i++){
  38. vorbis_info *vi=ov_info(&ov,i);
  39. printf("\tlogical bitstream section %d information:\n",i+1);
  40. printf("\t\t%ldHz %d channels bitrate %ldkbps serial number=%ld\n",
  41. vi->rate,vi->channels,ov_bitrate(&ov,i)/1000,
  42. ov_serialnumber(&ov,i));
  43. printf("\t\tcompressed length: %ld bytes ",(long)(ov_raw_total(&ov,i)));
  44. printf(" play time: %lds\n",(long)ov_time_total(&ov,i));
  45. }
  46. ov_clear(&ov);
  47. return 0;
  48. }