Skip to content

Commit

Permalink
Squash a compiler warning in mythtranscode.
Browse files Browse the repository at this point in the history
The mpeg2 fixup code really needs to be converted to Qt4.
  • Loading branch information
Mark Kendall authored and Beirdo committed Jan 2, 2011
1 parent 789958f commit f1450ba
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions mythtv/programs/mythtranscode/mpeg2fix.cpp
Expand Up @@ -76,20 +76,6 @@ static void my_av_print(void *ptr, int level, const char* fmt, va_list vl)
}
}

static void DEBUGpts(Q3PtrList<MPEG2frame> *vFrame)
{
int pos = vFrame->at();
for (vFrame->first(); vFrame->current(); vFrame->next())
{
int type = vFrame->current()->mpeg2_pic.flags & PIC_MASK_CODING_TYPE;
VERBOSE(MPF_IMPORTANT, QString("%1 %2 #%3 %4")
.arg(vFrame->at() == pos ? "->" : " ").arg(type)
.arg(vFrame->current()->mpeg2_pic.temporal_reference)
.arg(vFrame->current()->pkt.pts));
}
vFrame->at(pos);
}

static QString PtsTime(int64_t pts)
{
bool is_neg = false;
Expand Down

0 comments on commit f1450ba

Please sign in to comment.