mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-02-02 02:22:13 -05:00
This change removes the unused CMSampleBuffer utility functions that were still left from the previous implementation. Since we construct the CMSampleBuffer directly from an IOSurface, we do not need any custom construction logic anymore, since that is now performed by the OBS plugin.
13 lines
273 B
C
13 lines
273 B
C
//
|
|
// CMSampleBufferUtils.h
|
|
// dal-plugin
|
|
//
|
|
// Created by John Boiles on 5/8/20.
|
|
//
|
|
|
|
#include <CoreMediaIO/CMIOSampleBuffer.h>
|
|
|
|
CMSampleTimingInfo CMSampleTimingInfoForTimestamp(uint64_t timestampNanos,
|
|
uint32_t fpsNumerator,
|
|
uint32_t fpsDenominator);
|