Advertisement
Guest User

Untitled

a guest
Jan 11th, 2012
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. #
  2. # AMLOGIC streaming device configuration
  3. #
  4.  
  5. menu "AMLOGIC AV Streaming devices"
  6.  
  7. menuconfig AM_DEINTERLACE
  8. bool "AMLOGIC Deinterlace"
  9. default y
  10. select AM_CANVAS
  11. help
  12. Driver for deinterlace.
  13.  
  14. if AM_DEINTERLACE
  15. config AM_DEINTERLACE_SD_ONLY
  16. bool "AMLOGIC Deinterlace SD only"
  17. default n
  18. endif
  19.  
  20. config AM_VIDEO
  21. bool "AMLOGIC Video management"
  22. default y
  23. select AM_CANVAS
  24. select AM_PTSMGR
  25. select AM_TIMESYNC
  26. select AM_DEINTERLACE
  27. help
  28. Driver for video display.
  29.  
  30. config AM_PTSSERVER
  31. bool
  32.  
  33. config AM_VDEC_MPEG12
  34. tristate "AMLOGIC MPEG1/2 Video Decoder"
  35. default y
  36. select AM_VIDEO
  37. select AM_PTSSERVER
  38. help
  39. Driver for mpeg1/2 video decoder.
  40.  
  41. config AM_VDEC_MPEG4
  42. tristate "AMLOGIC MPEG4 Video Decoder"
  43. default y
  44. select AM_VIDEO
  45. select AM_PTSSERVER
  46. help
  47. Driver for mpeg4 video decoder.
  48.  
  49. config AM_VDEC_VC1
  50. tristate "AMLOGIC VC1 Video Decoder"
  51. default y
  52. select AM_VIDEO
  53. select AM_PTSSERVER
  54. help
  55. Driver for vc1 video decoder.
  56.  
  57. config AM_VDEC_H264
  58. tristate "AMLOGIC H264 Video Decoder"
  59. default y
  60. select AM_VIDEO
  61. select AM_PTSSERVER
  62. help
  63. Driver for h264 video decoder.
  64.  
  65. config AM_VDEC_MJPEG
  66. tristate "AMLOGIC Motion JPEG Video Decoder"
  67. default y
  68. select AM_VIDEO
  69. select AM_PTSSERVER
  70. help
  71. Driver for motion jpeg video decoder.
  72.  
  73. config AM_VDEC_REAL
  74. tristate "AMLOGIC Real Video Decoder"
  75. default y
  76. select AM_VIDEO
  77. select AM_PTSSERVER
  78. help
  79. Driver for real video decoder.
  80.  
  81. config AM_JPEGDEC
  82. tristate "AMLOGIC HW jpeg decoder"
  83. default y
  84. select AM_VIDEO
  85. select AM_PTSSERVER
  86. help
  87. Select to enable HW jpeg decoder.
  88.  
  89. config AM_TIMESYNC
  90. bool "AMLOGIC Time sync driver"
  91. default y
  92. help
  93. AV sync and play rate control management.
  94.  
  95. config AM_STREAMING
  96. bool "AMLOGIC AV Streaming support"
  97. default y
  98. select AM_PTSSERVER
  99. help
  100. Driver for the AV streaming ports.
  101.  
  102. config AM_SUBTITLE
  103. bool "AMLOGIC SubTitle support"
  104. default y
  105. help
  106. Internal Sub Title support driver
  107.  
  108. endmenu
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement