diff options
author | Jochen Dolze <vdr@dolze.de> | 2013-01-02 16:00:48 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2013-01-02 16:00:48 +0100 |
commit | f68a8728b20301de5e92e3f58759b7ab664155aa (patch) | |
tree | 68bf31919ac726527aad3c81524b203ecb48c4a8 /command/demux.cpp | |
parent | 00937c990fe7e7fc0f3418d44f8e89b433ff9738 (diff) | |
download | vdr-plugin-markad-f68a8728b20301de5e92e3f58759b7ab664155aa.tar.gz vdr-plugin-markad-f68a8728b20301de5e92e3f58759b7ab664155aa.tar.bz2 |
Fixed bug with --astopoffs (option doesnt worked)
Added more debug output while waiting for new data
Diffstat (limited to 'command/demux.cpp')
-rw-r--r-- | command/demux.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/command/demux.cpp b/command/demux.cpp index 991a82f..5a039fc 100644 --- a/command/demux.cpp +++ b/command/demux.cpp @@ -1352,7 +1352,7 @@ int cDemux::Process(uchar *Data, int Count, AvPacket *pkt) { if (h264) { - ts2pkt_vpid=new cTS2Pkt(vpid,"TS2H264",524288,true); + ts2pkt_vpid=new cTS2Pkt(vpid,"TS2H264",589824,true); } else { @@ -1370,7 +1370,7 @@ int cDemux::Process(uchar *Data, int Count, AvPacket *pkt) ts2pkt_vpid->Resize(3*tpkt.Length,"TS2PES"); if (h264) { - pes2videoes=new cPES2ES(PACKET_H264,"PES2H264ES",524288); + pes2videoes=new cPES2ES(PACKET_H264,"PES2H264ES",589824); } else { |