DEFINE.H
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:3k
源码类别:

VC书籍

开发平台:

Visual C++

  1. #define STRSIZE 128
  2. // define Video flag to tell whether the value has been changed or not
  3. #define PICTURE_WIDTH 0x00000001
  4. #define PICTURE_HEIGTH 0x00000002
  5. #define FRAME_RATE 0x00000004
  6. #define BIT_RATE 0x00000008
  7. #define I_INTERVAL 0x00000010
  8. #define P_INTERVAL 0x00000020
  9. #define VIDEO_INPUT 0x00000040
  10. #define VIDEO_MODE 0x00000080
  11. #define VIDEO_BRIGHTNESS 0x00000100
  12. #define VIDEO_HUE 0x00000200
  13. #define VIDEO_CONTRAST 0x00000400
  14. #define VIDEO_SATURATION 0x00000800
  15. #define VIDEO_ALGORITHM 0x00001000
  16. #define VIDEO_SIZE 0x00002000
  17. #define PICWIDTH_DEFAULT 352
  18. #define PICHEIGTH_DEFAULT 240
  19. #define FRAMERATE_DEFAULT VF_FLAG_VID_2997
  20. #define BITRATE_DEFAULT 1152000
  21. #define IINTERVAL_DEFAULT 15
  22. #define PINTERVAL_DEFAULT 3
  23. #define XOFFSET_DEFAULT 0
  24. #define YOFFSET_DEFAULT 0
  25. #define BRIGHTNESS_DEFAULT 50
  26. #define BRIGHTNESS_MIN 0
  27. #define BRIGHTNESS_MAX 100
  28. #define CONTRAST_DEFAULT 100
  29. #define CONTRAST_MIN 0
  30. #define CONTRAST_MAX 200
  31. #define HUE_DEFAULT 90
  32. #define HUE_MIN 0
  33. #define HUE_MAX 180
  34. #define SATURATION_DEFAULT 100
  35. #define SATURATION_MIN 0
  36. #define SATURATION_MAX 200
  37. #define LAYER_DEFAULT VF_FLAG_AUD_LAYER2
  38. #define CHANNEL_DEFAULT VF_FLAG_AUD_2CHANNEL
  39. #define ENCALGO_DEFAULT VF_FLAG_AUD_MPEG
  40. #define DECALGO_DEFAULT VF_FLAG_AUD_NONE
  41. #define MODE_DEFAULT VF_FLAG_AUD_STEREO
  42. #define VIDEO_ALGORITHM_DEFAULT VF_FLAG_VID_MPEG
  43. #define SIZE_SIF 1
  44. #define SIZE_QSIF 2
  45. #define SIZE_CIF 3
  46. #define SIZE_QCIF 4
  47. #define MPEG_VIDEO_SIZE_DEFAULT SIZE_SIF
  48. #define H261_VIDEO_SIZE_DEFAULT SIZE_CIF
  49. #define TIMESLIDER_MIN 1
  50. #define TIMESLIDER_MAX 10000
  51. #define FRAME_RATE_12012 12012
  52. #define FRAME_RATE_14400 14400
  53. #define FRAME_RATE_15000 15000
  54. #define FRAME_RATE_15015 15015
  55. #define FRAME_RATE_2997 "29.970"
  56. #define FRAME_RATE_25 "25.000"
  57. #define FRAME_RATE_24 "24.000"
  58. #define FRAME_RATE_2394 "23.940"
  59. // define Audio flag to tell whether the value has been changed or not
  60. #define AUDIO_SAMPLERATE 0x00000001
  61. #define AUDIO_BITRATE 0x00000002
  62. #define AUDIO_VOLUME 0x00000004
  63. #define AUDIO_INPUTMODE 0x00000008
  64. #define AUDIO_GAIN 0x00000010
  65. #define AUDIO_ENCALGO 0x00000020
  66. #define AUDIO_DECALGO 0x00000040
  67. #define AUDIO_LAYER 0x00000080
  68. #define AUDIO_CHANNEL 0x00000100
  69. #define VOLUME_MIN 0
  70. #define VOLUME_MAX 100
  71. #define VOLUME_DEFAULT 100
  72. #define SAMPLE_RATE_DEFAULT 0 // 44100
  73. #define BIT_RATE_DEFAULT  11      // 192000
  74. #define BIT_RATE_DEFAULT_MONO 10 // 192000
  75. #define BIT_RATE_DEFAULT_STEREO 7 // 224000
  76. #define GAIN_MIN 0
  77. #define GAIN_MAX 100
  78. #define GAIN_DEFAULT 0
  79. #define VF_SYSTEM_PKTON 1
  80. #define VF_SYSTEM_PKTOFF 0
  81. // define SYSTEM flag to tell whether the value has been changed or not
  82. //#define SYSTEM_STREAMTYPE 0x00000001
  83. #define BITSTREAM_DEFAULT VF_FLAG_MPGSYS
  84. #define LIVEVIEW_MODE 0
  85. #define PLAY_MODE 1
  86. #define PLAY_PAUSE_MODE 2
  87. #define RECORD_MODE 3
  88. //define mute state
  89. #define AUDIO_MUTE 1
  90. #define AUDIO_UNMUTE 2
  91. #define AUDIO_AUTOMUTE 3