mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
983e3246b7
Originally committed as revision 1634 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 lines
236 B
C
16 lines
236 B
C
/**
|
|
* @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
|