1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
/*
* inptstrm.c: Members of input stream classes related to muxing out into
* the output stream.
*
* Copyright (C) 2001 Andrew Stevens <andrew.stevens@philips.com>
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public License
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <config.h>
#include <assert.h>
#include "mjpeg_types.h"
#include "videostrm.hpp"
#include "multiplexor.hpp"
VideoStream::VideoStream(IBitStream &ibs, VideoParams *parms,
Multiplexor &into ) :
ElementaryStream( ibs, into, ElementaryStream::video ),
num_sequence(0),
num_seq_end(0),
num_pictures(0),
num_groups(0),
dtspts_for_all_au( into.dtspts_for_all_vau ),
gop_control_packet( false ),
parms(parms)
{
prev_offset=0;
decoding_order=0;
fields_presented=0;
group_start_pic=0;
group_start_field=0;
temporal_reference=0;
pulldown_32 = 0;
temporal_reference = -1; // Needed to recognise 2nd field of 1st
// frame in a field pic sequence
last_buffered_AU=0;
max_bits_persec = 0;
AU_hdr = SEQUENCE_HEADER; /* GOP or SEQ Header starting AU? */
for( int i =0; i<4; ++i )
num_frames[i] = avg_frames[i] = 0;
FRAME_CHUNK = 6;
}
bool VideoStream::Probe(IBitStream &bs )
{
return bs.GetBits( 32) == 0x1b3;
}
/*********************************
* Signals when video stream has completed mux run-out specified
* in associated mux stream. Run-out is always to complete GOP's.
*********************************/
bool VideoStream::RunOutComplete()
{
return (au_unsent == 0 ||
( muxinto.running_out &&
au->type == IFRAME && RequiredPTS() >= muxinto.runout_PTS));
}
/*********************************
* Signals if it is permissible/possible to Mux out a sector from the Stream.
* The universal constraints that muxing should not be complete and that
* that the reciever buffer should have sufficient it also insists that
* the muxed data won't hang around in the receiver buffer for more than
* one second. This is mainly for the benefit of (S)VCD and DVD applications
* where long delays mess up random access.
*******************************/
bool VideoStream::MuxPossible( clockticks currentSCR )
{
return ( ElementaryStream::MuxPossible(currentSCR) &&
RequiredDTS() < currentSCR + max_STD_buffer_delay );
}
void VideoStream::AUMuxed( bool first_in_sector )
{
//DEBUG
//mjpeg_info( "VidMuxed: %d %lld ", au->dorder, RequiredDTS()/300 );
}
/*********************************
* Work out the timestamps to be set in the header of sectors starting
* new AU's.
*********************************/
uint8_t VideoStream::NewAUTimestamps( int AUtype )
{
uint8_t timestamps;
if( AUtype == BFRAME)
timestamps=TIMESTAMPBITS_PTS;
else
timestamps=TIMESTAMPBITS_PTS_DTS;
if( muxinto.timestamp_iframe_only && AUtype != IFRAME)
timestamps=TIMESTAMPBITS_NO;
return timestamps;
}
/*********************************
* Work out the buffer records to be set in the header of sectors
* starting new AU's.
*********************************/
bool VideoStream::NewAUBuffers( int AUtype )
{
return buffers_in_header &
!(muxinto.video_buffers_iframe_only && AUtype != IFRAME);
}
/********************************
*
* Check if the next sector could potentially include parts of AUs
* following a sequence end marker... in this case a run-out may be needed
*
*******************************/
bool VideoStream::SeqEndRunOut()
{
unsigned int payload = au_unsent;
unsigned int ahead = 0;
AUnit *next_au = au;
if( next_au == 0 )
return false;
for(;;)
{
if( next_au->end_seq || payload >= muxinto.sector_size)
break;
++ahead;
next_au = Lookahead(ahead);
if( next_au == 0 )
break;
payload += next_au->PayloadSize();
}
// We don't need to start run-out if the next sector cannot contain
// next sequence or there is no next sequence (no AU after the one with
// the sequence end marker
return next_au != 0 && next_au->end_seq
&& payload < muxinto.sector_size
&& Lookahead(ahead+1) != 0;
}
/********************************
*
* Check if the next sector could potentially include a seq_end marker
*
*******************************/
const AUnit *VideoStream::NextIFrame()
{
unsigned int ahead = 0;
AUnit *au_ahead = Lookahead(ahead);
while( au_ahead != 0 && au_ahead->type != IFRAME
&& ahead < MAX_GOP_LENGTH )
{
++ahead;
au_ahead = Lookahead(ahead);
}
return au_ahead;
}
/********************************
*
* Calculate how much payload can be muxed next sector without
* including the next IFRAME.
*
*******************************/
unsigned int VideoStream::ExcludeNextIFramePayload()
{
unsigned int payload = au_unsent;
unsigned int ahead = 0;
AUnit *au_ahead;
for(;;)
{
au_ahead = Lookahead(ahead);
if( au_ahead == 0 || payload >= muxinto.sector_size || au_ahead->type == IFRAME )
break;
payload += au_ahead->PayloadSize();
++ahead;
}
assert( eoscan || au_ahead != 0 );
return payload;
}
/******************************************************************
Output_Video
generiert Pack/Sys_Header/Packet Informationen aus dem
Video Stream und speichert den so erhaltenen Sektor ab.
generates Pack/Sys_Header/Packet information from the
video stream and writes out the new sector
******************************************************************/
void VideoStream::OutputSector ( )
{
unsigned int max_packet_payload;
unsigned int actual_payload;
unsigned int old_au_then_new_payload;
clockticks DTS,PTS;
int autype;
max_packet_payload = 0; /* 0 = Fill sector */
/*
I-frame aligning. For the last AU of segment or for formats
with ACCESS-POINT sectors where I-frame (and preceding headers)
are sector aligned.
We need to look ahead to see how much we may put into the current packet
without without touching the next I-frame (which is supposed to be
placed at the start of its own sector).
N.b.runout_PTS is the PTS of the after which the next I frame
marks the start of the next sequence.
*/
if( muxinto.sector_align_iframeAUs || muxinto.running_out )
{
max_packet_payload = ExcludeNextIFramePayload();
}
/* Figure out the threshold payload size below which we can fit more
than one AU into a packet N.b. because fitting more than one in
imposses an overhead of additional header fields so there is a
dead spot where we *have* to stuff the packet rather than start
fitting in an extra AU. Slightly over-conservative in the case
of the last packet... */
old_au_then_new_payload = muxinto.PacketPayload( *this,
buffers_in_header,
true, true);
/* CASE: Packet starts with new access unit */
if (new_au_next_sec )
{
autype = AUType();
// Some types of output format (e.g. DVD) require special
// control sectors before the sector starting a new GOP
// N.b. this implies muxinto.sector_align_iframeAUs
//
if( gop_control_packet && autype == IFRAME )
{
OutputGOPControlSector();
}
//
// If we demand every AU should have its own timestamp
// We can't start two in the same sector...
//
if( dtspts_for_all_au && max_packet_payload == 0 )
max_packet_payload = au_unsent;
PTS = RequiredPTS();
DTS = RequiredDTS();
actual_payload =
muxinto.WritePacket ( max_packet_payload,
*this,
NewAUBuffers(autype),
PTS, DTS,
NewAUTimestamps(autype) );
muxinto.IndexLastPacket(*this, autype );
}
/* CASE: Packet begins with old access unit, no new one */
/* can begin in the very same packet */
else if ( au_unsent >= old_au_then_new_payload ||
(max_packet_payload != 0 && au_unsent >= max_packet_payload) )
{
actual_payload =
muxinto.WritePacket( au_unsent,
*this,
false, 0, 0,
TIMESTAMPBITS_NO );
// No new frame starts so no indexing...
}
/* CASE: Packet begins with old access unit, a new one */
/* could begin in the very same packet */
else /* if ( !new_au_next_sec &&
(au_unsent < old_au_then_new_payload)) */
{
/* Is there a new access unit ? */
if( Lookahead() != 0 )
{
autype = NextAUType();
if( dtspts_for_all_au && max_packet_payload == 0 )
max_packet_payload = au_unsent + Lookahead()->length;
PTS = NextRequiredPTS();
DTS = NextRequiredDTS();
actual_payload =
muxinto.WritePacket ( max_packet_payload,
*this,
NewAUBuffers(autype),
PTS, DTS,
NewAUTimestamps(autype) );
muxinto.IndexLastPacket(*this, autype );
}
else
{
actual_payload = muxinto.WritePacket ( au_unsent,
*this, false, 0, 0,
TIMESTAMPBITS_NO);
}
}
++nsec;
buffers_in_header = always_buffers_in_header;
}
/***********************************************
OutputControlSector - Write control sectors prefixing a GOP
For "normal" video streams this doesn't happen and so represents
a bug and triggers an abort.
In DVD's these sectors carry a system header and what is
presumably indexing and/or sub-title information in
private_stream_2 packets. I have no idea what to put in here so we
simply pad the sector out.
***********************************************/
void VideoStream::OutputGOPControlSector()
{
abort();
}
/******************************************************************
* OutputGOPControlSector
* DVD System headers are carried in peculiar sectors carrying 2
* PrivateStream2 packets. We're sticking 0's in the packets
* as we have no idea what's supposed to be in there.
******************************************************************/
void DVDVideoStream::OutputGOPControlSector()
{
muxinto.OutputDVDPriv2 ();
}
/*
* Local variables:
* c-file-style: "stroustrup"
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/
|