<!--
{
  "availability" : [
    "iOS: 8.0.0 -",
    "iPadOS: 8.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: 10.9.0 -",
    "tvOS: 10.2.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "VideoToolbox",
  "identifier" : "/documentation/VideoToolbox/kVTDecompressionPropertyKey_OutputPoolRequestedMinimumBufferCount",
  "metadataVersion" : "0.1.0",
  "role" : "Global Variable",
  "symbol" : {
    "kind" : "Global Variable",
    "modules" : [
      "Video Toolbox"
    ],
    "preciseIdentifier" : "c:@kVTDecompressionPropertyKey_OutputPoolRequestedMinimumBufferCount"
  },
  "title" : "kVTDecompressionPropertyKey_OutputPoolRequestedMinimumBufferCount"
}
-->

# kVTDecompressionPropertyKey_OutputPoolRequestedMinimumBufferCount

The requested minimum buffer count that a decompression session should use for its output pixel buffer pool, without releasing buffers while the number in use is below this level.

```
let kVTDecompressionPropertyKey_OutputPoolRequestedMinimumBufferCount: CFString
```

## Discussion

This property effectively requests that the <doc://com.apple.documentation/documentation/CoreVideo/kCVPixelBufferPoolMinimumBufferCountKey> key be used for the creation of the output <doc://com.apple.documentation/documentation/CoreVideo/CVPixelBufferPool-77o>.

For general playback cases, standard <doc://com.apple.documentation/documentation/CoreVideo/CVPixelBufferPool-77o> age-out behavior is sufficient, and this property isn’t necessary.  Use this property only in unusual playback scenarios where a peak pool level is known, and the potential memory overhead is an acceptable tradeoff to avoid possible buffer reallocation. Setting this property to `NULL` or passing in the value `0` clears this setting and removes the minimum buffer count.

Setting this property while a decompression session is in use results in the creation of a new <doc://com.apple.documentation/documentation/CoreVideo/CVPixelBufferPool-77o>. Setting this property causes new buffers to be allocated, and existing buffers to be deallocated when they are released.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)