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