You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
236B

  1. /**
  2. * @file oggvorbis.h
  3. * oggvorbis.
  4. */
  5. #ifndef AVCODEC_OGGVORBIS_H
  6. #define AVCODEC_OGGVORBIS_H
  7. #include <vorbis/vorbisenc.h>
  8. #include "avcodec.h"
  9. int oggvorbis_init_encoder(vorbis_info *vi, AVCodecContext *avccontext) ;
  10. #endif