[mythtv-commits] Ticket #9511: [patch] avformat decoder buffer underrun (DVB livetv)

MythTV noreply at mythtv.org
Thu Jan 27 08:35:59 UTC 2011


#9511: [patch] avformat decoder buffer underrun (DVB livetv)
-------------------------------------------------+-------------------------
 Reporter:  Jiri Fojtasek <jiri.fojtasek@…>      |          Owner:  janne
     Type:  Bug Report                           |         Status:  new
 Priority:  critical                             |      Milestone:  unknown
Component:  MythTV - Video Playback              |        Version:  Trunk
 Severity:  high                                 |  Head
 Keywords:                                       |     Resolution:
                                                 |  Ticket locked:  0
-------------------------------------------------+-------------------------

Comment (by Jiri Fojtasek <jiri.fojtasek@…>):

 forgot to mention,

 I created this shell script to fill program data with selected interval to
 speed up debuging:
 {{{
 #!/bin/sh

 STEP=2                  #Duration of program
 CHANID="'9008'"         #Channel ID

 echo "DELETE FROM program WHERE chanid=$CHANID" \
 | mysql --host=localhost --user=mythtv --password=mythtv mythconverg

 DATE=$(date +"%Y-%m-%d %H:")
 COUNTER=0
 while [  $COUNTER -lt $((60 - $STEP)) ]; do
     COUNTER=$(($COUNTER + $STEP))
     DATE1="'${DATE}${COUNTER}'"
     DATE2="'${DATE}$(($COUNTER + $STEP))'"
     NAME="'Test $COUNTER'"
     echo "INSERT INTO program (chanid, starttime, endtime, title,
 subtitle, description, category, category_type, airdate, stars,
 previouslyshown, title_pronounce, stereo, subtitled, hdtv, closecaptioned,
 partnumber, parttotal, seriesid, originalairdate, showtype, colorcode,
 syndicatedepisodenumber, programid, manualid, generic, listingsource,
 first, last, audioprop, subtitletypes, videoprop) VALUES \
     ($CHANID, $DATE1, $DATE2, $NAME, '', '...', '', 'tvshow', 0000, 0, 0,
 '', 0, 0, 0, 0, 0, 0, '', NULL, '', '', '', '', 0, 0, 1, 0, 1, '', '',
 '')" \
     | mysql --host=localhost --user=mythtv --password=mythtv mythconverg
 done
 }}}

-- 
Ticket URL: <http://code.mythtv.org/trac/ticket/9511#comment:9>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center


More information about the mythtv-commits mailing list