summaryrefslogtreecommitdiff
path: root/src/MPEG2_Parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/MPEG2_Parser.cpp')
-rwxr-xr-xsrc/MPEG2_Parser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/MPEG2_Parser.cpp b/src/MPEG2_Parser.cpp
index 7b0a57b..8b5592e 100755
--- a/src/MPEG2_Parser.cpp
+++ b/src/MPEG2_Parser.cpp
@@ -306,9 +306,9 @@ public:
return RESULT_FALSE;
}
- Accessor::Picture PIC(b);
- m_TemporalRef = PIC.TemporalRef();
- m_FrameType = PIC.FrameType();
+ Accessor::Picture pic(b);
+ m_TemporalRef = pic.TemporalRef();
+ m_FrameType = pic.FrameType();
m_FrameSize += s;
return m_State.Goto_PIC();
}