blob: 1f9d76634a955035d8f67376d30ff5fbecadbe71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/************************************************************************************
This source file is part of the Theora Video Playback Library
For latest info, see http://libtheoraplayer.googlecode.com
*************************************************************************************
Copyright (c) 2008-2014 Kresimir Spes (kspes@cateia.com)
This program is free software; you can redistribute it and/or modify it under
the terms of the BSD license: http://opensource.org/licenses/BSD-3-Clause
*************************************************************************************/
#ifndef _YUV_UTIL_h
#define _YUV_UTIL_h
#include "TheoraPixelTransform.h"
struct TheoraPixelTransform* incOut(struct TheoraPixelTransform* t, int n);
void _decodeAlpha(struct TheoraPixelTransform* t, int stride);
#endif
|