Add Russian translation provided by Валерий Крувялис <valkru@mail.ru>
[xiph-mirror.git] / theora-old / lib / encoder_disabled.c
blob39f7425b7560558d6eca0a955a23e7d9ce5c20db
1 /********************************************************************
2 * *
3 * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE. *
4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
7 * *
8 * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2003 *
9 * by the Xiph.Org Foundation http://www.xiph.org/ *
10 * *
11 ********************************************************************
13 function:
14 last mod: $Id$
16 ********************************************************************/
18 #ifdef HAVE_CONFIG_H
19 # include "config.h"
20 #endif
22 #include "toplevel_lookup.h"
23 #include "toplevel.h"
25 int theora_encode_init(theora_state *th, theora_info *c){
26 return OC_DISABLED;
29 int theora_encode_YUVin(theora_state *t, yuv_buffer *yuv){
30 return OC_DISABLED;
33 int theora_encode_packetout( theora_state *t, int last_p, ogg_packet *op){
34 return OC_DISABLED;
37 int theora_encode_header(theora_state *t, ogg_packet *op){
38 return OC_DISABLED;
41 int theora_encode_comment(theora_comment *tc, ogg_packet *op){
42 return OC_DISABLED;
45 int theora_encode_tables(theora_state *t, ogg_packet *op){
46 return OC_DISABLED;
49 void theora_encoder_clear (CP_INSTANCE * cpi)