blob: fd431dc64ca9019dac423b5ed858be5f8adc20d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* @file oggvorbis.h
* oggvorbis.
*/
#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
|