An HEVC encoder earns its place for exactly one reason: it delivers a target picture quality at a lower bitrate than the codec it replaces. That is the whole value proposition, and it is also where most “switch to HEVC” projects quietly go wrong. The temptation is to treat the change as a free quality upgrade — flip the encoder from H.264 to H.265, keep the existing bitrate ladder, and assume every stream now looks a little better. It rarely plays out that way. HEVC (High Efficiency Video Coding, standardised as ITU-T H.265) is a compression standard; an HEVC encoder is the software or hardware that implements it. The saving it offers is real, but it is a coordinate you have to move to on purpose, not a gift that arrives when you change one line of configuration. Whether you capture the saving depends on three things the naive approach ignores: how complex your content is, which encoder preset you run, and whether the devices watching your streams can actually decode H.265 in hardware. How do HEVC encoders work, and what does it mean in practice? An HEVC encoder does the same job as any block-based video codec — predict each frame from what came before, subtract the prediction, transform and quantise the residual, and entropy-code the result — but with more expressive tools than H.264. The one that matters most is the coding tree unit: where H.264 works in fixed 16×16 macroblocks, HEVC splits a frame into coding tree units up to 64×64 and recursively subdivides them down to 8×8 where detail demands it. Large flat regions get one big block; busy regions get fine ones. That adaptive partitioning is a large part of where the efficiency comes from. On top of that, HEVC adds 35 intra-prediction directions (versus 9 in H.264), better motion-vector prediction, and an in-loop sample-adaptive offset filter that cleans up compression artifacts before the frame is used as a reference. Each tool costs the encoder decisions to make. The encoder’s job is a rate-distortion optimisation: for every block, at every partition size, it estimates the bits a choice would cost against the distortion it would introduce, and picks the cheapest path to the quality target. More tools mean a bigger search space, which is why HEVC encoding is markedly more compute-hungry than H.264 — a point we return to below, because it is the offsetting cost against the bitrate win. In practice, the encoder you actually run is one of a small set of implementations. The dominant software encoder is x265, the open-source HEVC encoder maintained by MulticoreWare, which trades quality for speed through a preset dial. Hardware encoders — NVIDIA’s NVENC, Intel Quick Sync, dedicated ASICs — run far faster at a modest quality penalty. The difference between hardware and software HEVC encoding is one of the first decisions a transcoding pipeline has to settle, and it changes both your per-stream cost and your achievable quality. How much bitrate can HEVC save versus H.264, and what determines it? The headline figure quoted across the industry is a 30–50% bitrate reduction at the same subjective quality (market-direction; not an operational benchmark for your catalogue). That range is not a single number by accident — where you land inside it, or whether you land in it at all, is content-dependent. Three factors dominate the actual saving: Content complexity. High-motion, high-detail material — sports, fast action, film grain — gives HEVC more redundancy to exploit and tends toward the upper end of the range. Simple, static content already compresses well under H.264, so the marginal gain is smaller. Encoder preset. A slow x265 preset spends more compute searching partition and prediction options and squeezes more bits out; a fast preset leaves savings on the table. The bitrate reduction and the encode-time cost move together. Resolution. HEVC’s large coding tree units pay off more at 4K and 8K, where flat regions are physically larger, than at SD. The critical discipline is that a bitrate saving only counts if quality is genuinely held. “The same quality” has to be measured, not assumed — with an objective metric such as VMAF or SSIM, ideally validated against a subjective panel for your content type. An encoder that cuts bitrate 45% while dropping VMAF by ten points has not delivered a 45% saving; it has delivered a quality regression you will pay for in churn. The x265 streaming trade-offs between bitrate and storage cost only make sense once quality is pinned as a constraint rather than a variable. What does HEVC cost in encode time, and how does that offset the saving? Here is where the “free upgrade” framing breaks. HEVC’s larger decision space makes encoding several times more expensive than H.264 at comparable quality — the exact multiple depends heavily on preset, but a slow-preset x265 encode running many times slower than an equivalent x264 encode is a familiar pattern in the transcoding pipelines we have worked on (observed pattern across engagements; the multiple varies with content and hardware, so treat it as a planning heuristic rather than a fixed rate). That compute is not free, and it lands on the wrong side of the ledger from the bitrate win. So the honest measure of an HEVC migration is not bitrate saved — it is cost-per-stream at a held quality-of-experience target, net of the transcoding compute the HEVC ladder adds. Egress and storage per title fall because each stream carries fewer bits; transcoding CPU/GPU-hours rise because each title costs more to encode. Whether the net moves in your favour depends on how many times a title is streamed. A blockbuster watched a million times amortises its encode cost across a million cheaper deliveries; a long-tail title encoded once and watched twice may never repay the extra compute. This is exactly the arithmetic a transcoding sprint profiles when it rebuilds a bitrate ladder — the cost model, not the codec spec sheet, decides which titles are worth re-encoding. How does device decode support cap the saving? You can encode the most efficient HEVC stream in the world and capture none of the benefit if the viewing device cannot decode it in hardware. This is the constraint that quietly limits how much of a catalogue can realistically move to HEVC. Hardware H.265 decoding is widespread on modern devices — recent Apple hardware, most Android phones from the last several years, current smart TVs and set-top boxes — but it is far from universal, and browser support in particular remains patchy compared with H.264. When a device lacks a hardware decoder, one of two things happens: it falls back to software decoding, which drains battery and can stutter on high resolutions, or the player never selects the HEVC rendition and the stream is dead weight in your storage. Software fallback is the worse outcome because it converts your bitrate saving into a stalled-playback complaint. The practical consequence is that device-class decode coverage caps how much of your catalogue can realise the HEVC saving. You cannot answer “should we adopt HEVC?” without first profiling your actual viewer device mix. This is the same portability discipline that runs through our media and telecom broadcast work: the codec that wins on paper is not the codec that wins for a device population that cannot decode it. If a large fraction of your audience is on browsers or older hardware, you either keep H.264 as the compatibility floor or maintain both ladders and pay for the redundancy. How do presets and rate-control modes change what you get? Two encoder dials shape the output as much as the codec choice itself. The preset trades encode speed for compression efficiency: slower presets search more of the decision space and produce smaller files at the same quality, at the price of more compute per title. The rate-control mode decides how bits are distributed over time. The two rate-control families answer different operational needs: Mode What it does Where it fits Trade-off CBR (constant bitrate) Holds a near-fixed bitrate over time Live streaming, fixed-bandwidth broadcast links, capacity planning Wastes bits on easy scenes, starves hard ones; predictable pipe usage VBR / capped VBR Lets bitrate rise for complex scenes and fall for simple ones On-demand catalogues, quality-first delivery Better quality-per-bit; variable file size complicates capacity planning CRF (constant rate factor) Targets a constant quality level, bitrate floats freely VOD encoding where quality is the constraint Best quality-per-bit for a held quality target; no bitrate ceiling unless capped For a VOD catalogue where the goal is a held quality-of-experience at minimum bits, capped-CRF or capped-VBR encoding is almost always the right default — it spends bits where the eye notices and saves them where it does not. CBR earns its place mainly on live paths where a predictable, bounded bitstream matters more than squeezing every bit. Getting this choice wrong is a common way a nominally correct HEVC migration underperforms its own potential. When does HEVC belong in the ladder — and when does H.264 or AV1 win? HEVC is not the answer to every bitrate question. It sits between the near-universal compatibility of H.264 and the higher efficiency of AV1, and the right codec for a given rendition depends on the device population that will play it. Use this as a first-pass rubric, then validate against your measured device mix: Keep H.264 when compatibility is the binding constraint — broad browser reach, older devices, or a compatibility floor rendition every device can play. H.264’s decode support is effectively universal, which is worth real money in avoided fallback stalls. Choose HEVC when you have profiled hardware H.265 decode coverage across a large share of your audience, your titles are streamed enough times to amortise the extra encode compute, and the content is complex enough to realise the upper end of the saving. Consider AV1 when you need efficiency beyond HEVC and can absorb its even higher encode cost, and your device mix has meaningful AV1 hardware decode — increasingly true on recent hardware but still narrower than HEVC. The VVC (x266) codec is a further step along the same efficiency curve, with correspondingly younger decode support. The reasoning generalises: every codec is a point on a curve trading compression efficiency against decode ubiquity and encode cost. The decision is never “which codec is best” in the abstract — it is “which codec is best for this rendition, this device population, and this title’s streaming volume.” How do you measure whether an HEVC re-encode actually improved cost-per-stream? Measure the whole ledger, not the bitrate line. Fix the quality target first — pick a VMAF or SSIM floor and hold it constant across both codecs so quality is a constraint, not a moving variable. Then compare cost-per-stream before and after: egress plus storage per title on the delivery side, and CPU/GPU-hours of transcoding on the encode side. The net figure, weighted by how many times each title is actually streamed, is the only number that tells you whether the migration paid off. A re-encode that saves bits on titles nobody watches is a compute bill with no return. FAQ How do HEVC encoders work, and what does it mean in practice? An HEVC encoder implements the H.265 standard: it predicts each frame from prior frames, transforms and quantises the residual, and entropy-codes the result, using adaptive coding tree units up to 64×64, 35 intra-prediction directions, and an in-loop offset filter. The extra tools give it more ways to compress than H.264 but a bigger decision space, which is why it costs more compute. In practice you run one of a small set of implementations — x265 in software, NVENC or Quick Sync in hardware — and the choice sets both your per-stream cost and your achievable quality. How much bitrate can HEVC save versus H.264 at the same quality, and what determines the actual saving? The industry range is a 30–50% bitrate reduction at held quality (market-direction, not a benchmark for your catalogue). Where you land depends on content complexity — high-motion, high-detail material gains most — the encoder preset, and resolution, since HEVC’s large blocks pay off more at 4K and 8K. The saving only counts if quality is genuinely held, measured with an objective metric like VMAF rather than assumed. What is the encode-time and compute cost of HEVC, and how does it offset the bitrate savings? HEVC encoding is several times more expensive than H.264 at comparable quality, with the multiple varying by preset, content, and hardware. That compute lands opposite the bitrate win, so the honest measure is cost-per-stream at a held quality target, net of the added transcoding compute. Whether the net favours HEVC depends on streaming volume — a title watched a million times amortises its encode cost, a long-tail title may never repay it. How does device-class decode support limit how much of a catalogue can use HEVC? If a device lacks a hardware H.265 decoder it either falls back to battery-draining, stutter-prone software decoding or never selects the HEVC rendition at all. Software fallback turns a bitrate saving into a stalled-playback complaint. Device-class decode coverage therefore caps how much of your catalogue can realise the saving, which is why you profile the actual viewer device mix before adopting HEVC. How do encoder presets and rate-control modes change what an HEVC encoder delivers? The preset trades encode speed for compression efficiency — slower presets produce smaller files at the same quality but cost more compute. Rate control decides bit distribution: CBR holds a near-fixed bitrate for live and fixed-bandwidth links, while VBR and CRF let bitrate float to spend bits where the eye notices. For VOD at a held quality target, capped-CRF or capped-VBR is usually the right default; CBR earns its place mainly on live paths. When does HEVC belong in a bitrate ladder, and when is H.264 or AV1 the better choice? Keep H.264 when compatibility is binding — broad browser reach or a floor rendition every device can play. Choose HEVC when you have profiled hardware decode coverage, enough streaming volume to amortise the encode compute, and content complex enough to realise the saving. Consider AV1 or VVC when you need efficiency beyond HEVC, can absorb higher encode cost, and your device mix has the decode support — the decision is always per rendition, per device population, per title. How do you measure whether an HEVC re-encode actually improved cost-per-stream at a held quality-of-experience? Fix the quality target first — hold a VMAF or SSIM floor constant across both codecs so quality is a constraint, not a variable. Then compare cost-per-stream before and after: egress plus storage per title against transcoding CPU/GPU-hours. Weight the net by how many times each title is actually streamed, since that is the only figure that tells you whether the migration paid off. The codec that wins on a spec sheet and the codec that wins for a profiled device mix are frequently not the same codec — and the gap between them is where a transcoding sprint does its work, rebuilding the bitrate ladder against real viewer hardware rather than a headline efficiency number.