Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/drivers/gpu/drm/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  drm_eld.c   Sprache: C

 
// SPDX-License-Identifier: MIT
/*
 * Copyright © 2023 Intel Corporation
 */


#include <linux/export.h>

#include <drm/drm_edid.h>
#include <drm/drm_eld.h>

#include "drm_crtc_internal.h"

/**
 * drm_eld_sad_get - get SAD from ELD to struct cea_sad
 * @eld: ELD buffer
 * @sad_index: SAD index
 * @cta_sad: destination struct cea_sad
 *
 * @return: 0 on success, or negative on errors
 */

int drm_eld_sad_get(const u8 *eld, int sad_index, struct cea_sad *cta_sad)
{
 const u8 *sad;

 if (sad_index >= drm_eld_sad_count(eld))
  return -EINVAL;

 sad = eld + DRM_ELD_CEA_SAD(drm_eld_mnl(eld), sad_index);

 drm_edid_cta_sad_set(cta_sad, sad);

 return 0;
}
EXPORT_SYMBOL(drm_eld_sad_get);

/**
 * drm_eld_sad_set - set SAD to ELD from struct cea_sad
 * @eld: ELD buffer
 * @sad_index: SAD index
 * @cta_sad: source struct cea_sad
 *
 * @return: 0 on success, or negative on errors
 */

int drm_eld_sad_set(u8 *eld, int sad_index, const struct cea_sad *cta_sad)
{
 u8 *sad;

 if (sad_index >= drm_eld_sad_count(eld))
  return -EINVAL;

 sad = eld + DRM_ELD_CEA_SAD(drm_eld_mnl(eld), sad_index);

 drm_edid_cta_sad_get(cta_sad, sad);

 return 0;
}
EXPORT_SYMBOL(drm_eld_sad_set);

Messung V0.5
C=97 H=98 G=97

¤ Dauer der Verarbeitung: 0.2 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.