diff options
Diffstat (limited to 'src/MPEG2_Parser.cpp')
| -rwxr-xr-x | src/MPEG2_Parser.cpp | 6 |
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(); } |
