1 // Copyright 2021 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CAST_STANDALONE_SENDER_STREAMING_ENCODER_UTIL_H_ 6 #define CAST_STANDALONE_SENDER_STREAMING_ENCODER_UTIL_H_ 7 8 #include <stdint.h> 9 10 namespace openscreen { 11 namespace cast { 12 void CopyPlane(const uint8_t* src, 13 int src_stride, 14 int num_rows, 15 uint8_t* dst, 16 int dst_stride); 17 } // namespace cast 18 } // namespace openscreen 19 20 #endif // CAST_STANDALONE_SENDER_STREAMING_ENCODER_UTIL_H_ 21