encore.h
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #ifdef __cplusplus
  2. extern "C" {
  3. #endif 
  4. typedef struct _ENC_PARAM_ {
  5. int x_dim;
  6. int y_dim;
  7. float framerate;
  8. long bitrate;
  9. long rc_period; 
  10. long rc_reaction_period; 
  11. long rc_reaction_ratio; 
  12. long max_key_interval; 
  13. int max_quantizer; 
  14. int min_quantizer; 
  15. int search_range; 
  16. } ENC_PARAM;
  17. typedef struct _ENC_FRAME_ {
  18. void *image;
  19. void *bitstream;
  20. long length;
  21. } ENC_FRAME;
  22. typedef struct _ENC_RESULT_ {
  23. int isKeyFrame; 
  24. } ENC_RESULT;
  25. int encore(
  26. unsigned long handle,
  27. unsigned long enc_opt,
  28. void *param1,
  29. void *param2);
  30. #define ENC_OPT_WRITE 1024
  31. #define ENC_OPT_INIT 32768
  32. #define ENC_OPT_RELEASE 65536
  33. #define ENC_OK 0
  34. #define ENC_MEMORY 1
  35. #define ENC_BAD_FORMAT 2
  36. #ifdef __cplusplus
  37. }
  38. #endif