/usr/include/schroedinger-1.0/schroedinger/schroengine.h is in libschroedinger-dev 1.0.11-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | #ifndef _SCHRO_ENGINE_H_
#define _SCHRO_ENGINE_H_
#include <schroedinger/schroencoder.h>
SCHRO_BEGIN_DECLS
#ifdef SCHRO_ENABLE_UNSTABLE_API
typedef enum {
SCHRO_QUANTISER_ENGINE_SIMPLE,
SCHRO_QUANTISER_ENGINE_RDO_BIT_ALLOCATION,
SCHRO_QUANTISER_ENGINE_CBR,
SCHRO_QUANTISER_ENGINE_LOSSLESS,
SCHRO_QUANTISER_ENGINE_LOWDELAY,
SCHRO_QUANTISER_ENGINE_RDO_LAMBDA,
SCHRO_QUANTISER_ENGINE_CONSTANT_ERROR
} SchroQuantiserEngineEnum;
int schro_encoder_engine_intra_only (SchroEncoder *encoder);
int schro_encoder_engine_backref (SchroEncoder *encoder);
int schro_encoder_engine_test_intra (SchroEncoder *encoder);
int schro_encoder_engine_lossless (SchroEncoder *encoder);
int schro_encoder_engine_backtest (SchroEncoder *encoder);
int schro_encoder_engine_lowdelay (SchroEncoder *encoder);
int schro_encoder_handle_quants (SchroEncoder *encoder, int i);
void schro_encoder_init_frame (SchroEncoderFrame *frame);
void schro_encoder_handle_gop_backref (SchroEncoder *encoder, int i);
int schro_encoder_setup_frame_backref (SchroEncoderFrame *frame);
void schro_encoder_handle_gop_intra_only (SchroEncoder *encoder, int i);
int schro_encoder_setup_frame_intra_only (SchroEncoderFrame *frame);
void schro_encoder_handle_gop_tworef (SchroEncoder *encoder, int i);
int schro_encoder_setup_frame_tworef (SchroEncoderFrame *frame);
void schro_encoder_handle_gop_lowdelay (SchroEncoder *encoder, int i);
int schro_encoder_setup_frame_lowdelay (SchroEncoderFrame *frame);
void schro_encoder_handle_gop_lossless (SchroEncoder *encoder, int i);
int schro_encoder_setup_frame_lossless (SchroEncoderFrame *frame);
void schro_frame_set_wavelet_params (SchroEncoderFrame* frame);
void init_params (SchroEncoderFrame* frame);
#endif
SCHRO_END_DECLS
#endif
|