summaryrefslogtreecommitdiff
path: root/streaminfo.cpp
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2010-03-27 18:22:01 +0100
committerJochen Dolze <vdr@dolze.de>2010-03-27 18:22:01 +0100
commitbf0339d02b66db18a54ce4862370f2ba2fa5034f (patch)
tree934d215a12a0f111fc0a88bc3ee98ce5b2e852d2 /streaminfo.cpp
parent5ffec495064060e5e21a255c5358d2f2cabc8056 (diff)
downloadvdr-plugin-markad-bf0339d02b66db18a54ce4862370f2ba2fa5034f.tar.gz
vdr-plugin-markad-bf0339d02b66db18a54ce4862370f2ba2fa5034f.tar.bz2
Changed structures in global.h
Diffstat (limited to 'streaminfo.cpp')
-rw-r--r--streaminfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/streaminfo.cpp b/streaminfo.cpp
index 10321c9..fb2bc9c 100644
--- a/streaminfo.cpp
+++ b/streaminfo.cpp
@@ -101,9 +101,9 @@ unsigned AcMod:
bool cMarkAdStreamInfo::FindVideoInfos(MarkAdContext *maContext, uchar *pkt, int len)
{
if ((!maContext) || (!pkt) || (!len)) return false;
- if (!maContext->General.VPid.Type) return false;
+ if (!maContext->Info.VPid.Type) return false;
- switch (maContext->General.VPid.Type)
+ switch (maContext->Info.VPid.Type)
{
case MARKAD_PIDTYPE_VIDEO_H264:
return FindH264VideoInfos(maContext, pkt, len);