Blame gst/rtp/fnv1hash.h

Packit Service 366521
/* GStreamer
Packit Service 366521
 * Copyright (C) 2007 Thomas Vander Stichele <thomas at apestaart dot org>
Packit Service 366521
 *
Packit Service 366521
 * This library is free software; you can redistribute it and/or
Packit Service 366521
 * modify it under the terms of the GNU Library General Public
Packit Service 366521
 * License as published by the Free Software Foundation; either
Packit Service 366521
 * version 2 of the License, or (at your option) any later version.
Packit Service 366521
 *
Packit Service 366521
 * This library is distributed in the hope that it will be useful,
Packit Service 366521
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 366521
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 366521
 * Library General Public License for more details.
Packit Service 366521
 *
Packit Service 366521
 * You should have received a copy of the GNU Library General Public
Packit Service 366521
 * License along with this library; if not, write to the
Packit Service 366521
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Packit Service 366521
 * Boston, MA 02110-1301, USA.
Packit Service 366521
 */
Packit Service 366521
Packit Service 366521
#ifndef __GST_FNV1_HASH_H__
Packit Service 366521
#define __GST_FNV1_HASH_H__
Packit Service 366521
Packit Service 366521
#include <gst/gst.h>
Packit Service 366521
#include <gst/rtp/gstrtpbasepayload.h>
Packit Service 366521
#include <gst/base/gstadapter.h>
Packit Service 366521
Packit Service 366521
G_BEGIN_DECLS
Packit Service 366521
Packit Service 366521
guint32 fnv1_hash_32_new (void);
Packit Service 366521
guint32 fnv1_hash_32_update (guint32 hash, const guchar *data, guint length);
Packit Service 366521
guint32 fnv1_hash_32_to_24 (guint32 hash);
Packit Service 366521
Packit Service 366521
G_END_DECLS
Packit Service 366521
Packit Service 366521
#endif /* __GST_FNV1_HASH_H__ */
Packit Service 366521