view oggvorbis.h @ 1875:45a1592dadca libavcodec

* moving some of the commonly used bit reading/writing functions from common.c -> common.h so that they can be inlined. + performace gain ~1% (measured with DV decoding) + code bloat 0.05% Looks like a win-win solution.
author romansh
date Fri, 12 Mar 2004 23:39:38 +0000
parents 1e39f273ecd6
children
line wrap: on
line source

/**
 * @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