summaryrefslogtreecommitdiff
path: root/libavdevice/dshow_enummediatypes.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-01-21 19:45:48 -0300
committerJames Almer <jamrial@gmail.com>2021-01-25 19:31:11 -0300
commit911ba8417e8881a7380842e69e11ca05fdc46575 (patch)
tree897149bd274fc39272318d766e0d7dc948b5cc06 /libavdevice/dshow_enummediatypes.c
parent56709ca8aaffed529b62b2afa4288325d64dae57 (diff)
downloadffmpeg-911ba8417e8881a7380842e69e11ca05fdc46575.tar.gz
avdevice/dshow: Add namespace prefix to the remaining global symbols
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavdevice/dshow_enummediatypes.c')
-rw-r--r--libavdevice/dshow_enummediatypes.c51
1 files changed, 23 insertions, 28 deletions
diff --git a/libavdevice/dshow_enummediatypes.c b/libavdevice/dshow_enummediatypes.c
index 3a66a4de14..82944507f6 100644
--- a/libavdevice/dshow_enummediatypes.c
+++ b/libavdevice/dshow_enummediatypes.c
@@ -21,17 +21,16 @@
#include "dshow_capture.h"
-DECLARE_QUERYINTERFACE(libAVEnumMediaTypes,
+DECLARE_QUERYINTERFACE(enummediatypes, DShowEnumMediaTypes,
{ {&IID_IUnknown,0}, {&IID_IEnumMediaTypes,0} })
-DECLARE_ADDREF(libAVEnumMediaTypes)
-DECLARE_RELEASE(libAVEnumMediaTypes)
+DECLARE_ADDREF(enummediatypes, DShowEnumMediaTypes)
+DECLARE_RELEASE(enummediatypes, DShowEnumMediaTypes)
-long WINAPI
-libAVEnumMediaTypes_Next(libAVEnumMediaTypes *this, unsigned long n,
+long ff_dshow_enummediatypes_Next(DShowEnumMediaTypes *this, unsigned long n,
AM_MEDIA_TYPE **types, unsigned long *fetched)
{
int count = 0;
- dshowdebug("libAVEnumMediaTypes_Next(%p)\n", this);
+ dshowdebug("ff_dshow_enummediatypes_Next(%p)\n", this);
if (!types)
return E_POINTER;
if (!this->pos && n == 1) {
@@ -51,29 +50,26 @@ libAVEnumMediaTypes_Next(libAVEnumMediaTypes *this, unsigned long n,
return S_FALSE;
return S_OK;
}
-long WINAPI
-libAVEnumMediaTypes_Skip(libAVEnumMediaTypes *this, unsigned long n)
+long ff_dshow_enummediatypes_Skip(DShowEnumMediaTypes *this, unsigned long n)
{
- dshowdebug("libAVEnumMediaTypes_Skip(%p)\n", this);
+ dshowdebug("ff_dshow_enummediatypes_Skip(%p)\n", this);
if (n) /* Any skip will always fall outside of the only valid type. */
return S_FALSE;
return S_OK;
}
-long WINAPI
-libAVEnumMediaTypes_Reset(libAVEnumMediaTypes *this)
+long ff_dshow_enummediatypes_Reset(DShowEnumMediaTypes *this)
{
- dshowdebug("libAVEnumMediaTypes_Reset(%p)\n", this);
+ dshowdebug("ff_dshow_enummediatypes_Reset(%p)\n", this);
this->pos = 0;
return S_OK;
}
-long WINAPI
-libAVEnumMediaTypes_Clone(libAVEnumMediaTypes *this, libAVEnumMediaTypes **enums)
+long ff_dshow_enummediatypes_Clone(DShowEnumMediaTypes *this, DShowEnumMediaTypes **enums)
{
- libAVEnumMediaTypes *new;
- dshowdebug("libAVEnumMediaTypes_Clone(%p)\n", this);
+ DShowEnumMediaTypes *new;
+ dshowdebug("ff_dshow_enummediatypes_Clone(%p)\n", this);
if (!enums)
return E_POINTER;
- new = libAVEnumMediaTypes_Create(&this->type);
+ new = ff_dshow_enummediatypes_Create(&this->type);
if (!new)
return E_OUTOFMEMORY;
new->pos = this->pos;
@@ -81,17 +77,16 @@ libAVEnumMediaTypes_Clone(libAVEnumMediaTypes *this, libAVEnumMediaTypes **enums
return S_OK;
}
-static int
-libAVEnumMediaTypes_Setup(libAVEnumMediaTypes *this, const AM_MEDIA_TYPE *type)
+static int ff_dshow_enummediatypes_Setup(DShowEnumMediaTypes *this, const AM_MEDIA_TYPE *type)
{
IEnumMediaTypesVtbl *vtbl = this->vtbl;
- SETVTBL(vtbl, libAVEnumMediaTypes, QueryInterface);
- SETVTBL(vtbl, libAVEnumMediaTypes, AddRef);
- SETVTBL(vtbl, libAVEnumMediaTypes, Release);
- SETVTBL(vtbl, libAVEnumMediaTypes, Next);
- SETVTBL(vtbl, libAVEnumMediaTypes, Skip);
- SETVTBL(vtbl, libAVEnumMediaTypes, Reset);
- SETVTBL(vtbl, libAVEnumMediaTypes, Clone);
+ SETVTBL(vtbl, enummediatypes, QueryInterface);
+ SETVTBL(vtbl, enummediatypes, AddRef);
+ SETVTBL(vtbl, enummediatypes, Release);
+ SETVTBL(vtbl, enummediatypes, Next);
+ SETVTBL(vtbl, enummediatypes, Skip);
+ SETVTBL(vtbl, enummediatypes, Reset);
+ SETVTBL(vtbl, enummediatypes, Clone);
if (!type) {
this->type.majortype = GUID_NULL;
@@ -101,5 +96,5 @@ libAVEnumMediaTypes_Setup(libAVEnumMediaTypes *this, const AM_MEDIA_TYPE *type)
return 1;
}
-DECLARE_CREATE(libAVEnumMediaTypes, libAVEnumMediaTypes_Setup(this, type), const AM_MEDIA_TYPE *type)
-DECLARE_DESTROY(libAVEnumMediaTypes, nothing)
+DECLARE_CREATE(enummediatypes, DShowEnumMediaTypes, ff_dshow_enummediatypes_Setup(this, type), const AM_MEDIA_TYPE *type)
+DECLARE_DESTROY(enummediatypes, DShowEnumMediaTypes, nothing)