diff options
| author | msheby <msheby@cinecert.com> | 2008-01-15 07:20:07 +0000 |
|---|---|---|
| committer | msheby <> | 2008-01-15 07:20:07 +0000 |
| commit | 615e76314bbdcd77ef13e8248c8f1903c3430895 (patch) | |
| tree | 8b5e648dce6eb4ad9bc658b115d17356e836667e /src/MPEG2_Parser.cpp | |
| parent | 3230100038025a37752a4d355c14368cc4519939 (diff) | |
Rename local variable "PIC" to "pic" so to avoid namespace
clash with gcc preprocessor PIC definition.
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(); } |
