summaryrefslogtreecommitdiffstats
path: root/chromium/media/gpu/buffer_validation.h
blob: cf7b6234c29d7e9d8bcbfbeb8b441828665e79a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MEDIA_GPU_BUFFER_VALIDATION_H_
#define MEDIA_GPU_BUFFER_VALIDATION_H_

#include "media/base/video_types.h"
#include "media/gpu/media_gpu_export.h"

namespace gfx {
class Size;
struct GpuMemoryBufferHandle;
}  // namespace gfx

namespace media {
// Gets the file size of |fd| and writes in |size|. Returns false on failure.
MEDIA_GPU_EXPORT bool GetFileSize(const int fd, size_t* size);

// Verifies if GpuMemoryBufferHandle is valid.
MEDIA_GPU_EXPORT bool VerifyGpuMemoryBufferHandle(
    media::VideoPixelFormat pixel_format,
    const gfx::Size& coded_size,
    const gfx::GpuMemoryBufferHandle& gmb_handle);

}  // namespace media
#endif  // MEDIA_GPU_BUFFER_VALIDATION_H_