]> git.sesse.net Git - mlt/blob - src/modules/decklink/common.h
implement SSE optimized swab function
[mlt] / src / modules / decklink / common.h
1 /*
2  * common.h -- Blackmagic Design DeckLink common functions
3  * Copyright (C) 2012 Dan Dennedy <dan@dennedy.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with consumer library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #ifndef DECKLINK_COMMON_H
21 #define DECKLINK_COMMON_H
22
23 #ifdef WIN32
24 #       include <objbase.h>
25 #       include "DeckLinkAPI_h.h"
26         typedef BSTR DLString;
27 #else
28 #       include "DeckLinkAPI.h"
29 #       ifdef __DARWIN__
30                 typedef CFStringRef DLString;
31 #       else
32                 typedef const char* DLString;
33 #       endif
34 #endif
35
36 #define SAFE_RELEASE(V) if (V) { V->Release(); V = NULL; }
37
38 char* getCString( DLString aDLString );
39 void freeCString( char* aCString );
40 void freeDLString( DLString aDLString );
41 void swab2( const void *from, void *to, int n );
42
43 #endif // DECKLINK_COMMON_H