Path: blob/master/thirdparty/libtheora/encoder_disabled.c
9898 views
/********************************************************************1* *2* THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE. *3* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *4* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *5* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *6* *7* THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2009 *8* by the Xiph.Org Foundation https://www.xiph.org/ *9* *10********************************************************************1112function:1314********************************************************************/15#include "apiwrapper.h"16#include "encint.h"1718const th_quant_info TH_VP31_QUANT_INFO = {};19const th_huff_code TH_VP31_HUFF_CODES[TH_NHUFFMAN_TABLES][TH_NDCT_TOKENS];2021th_enc_ctx *th_encode_alloc(const th_info *_info){22return NULL;23}2425void th_encode_free(th_enc_ctx *_enc){}262728int th_encode_ctl(th_enc_ctx *_enc,int _req,void *_buf,size_t _buf_sz){29return OC_DISABLED;30}3132int th_encode_flushheader(th_enc_ctx *_enc,th_comment *_tc,ogg_packet *_op){33return OC_DISABLED;34}3536int th_encode_ycbcr_in(th_enc_ctx *_enc,th_ycbcr_buffer _img){37return OC_DISABLED;38}3940int th_encode_packetout(th_enc_ctx *_enc,int _last_p,ogg_packet *_op){41return OC_DISABLED;42}43444546int theora_encode_init(theora_state *_te,theora_info *_ci){47return OC_DISABLED;48}4950int theora_encode_YUVin(theora_state *_te,yuv_buffer *_yuv){51return OC_DISABLED;52}5354int theora_encode_packetout(theora_state *_te,int _last_p,ogg_packet *_op){55return OC_DISABLED;56}5758int theora_encode_header(theora_state *_te,ogg_packet *_op){59return OC_DISABLED;60}6162int theora_encode_comment(theora_comment *_tc,ogg_packet *_op){63return OC_DISABLED;64}6566int theora_encode_tables(theora_state *_te,ogg_packet *_op){67return OC_DISABLED;68}697071