File tree Expand file tree Collapse file tree 2 files changed +1
-20
lines changed
src/AvTranscoder/transcoder Expand file tree Collapse file tree 2 files changed +1
-20
lines changed Original file line number Diff line number Diff line change @@ -283,11 +283,7 @@ bool StreamTranscoder::processFrame()
283
283
284
284
if ( ! _inputEssence )
285
285
{
286
- if ( _subStreamIndex < 0 )
287
- {
288
- return processRewrap ();
289
- }
290
- return processRewrap ( _subStreamIndex );
286
+ return processRewrap ();
291
287
}
292
288
293
289
if ( _subStreamIndex < 0 )
@@ -311,20 +307,6 @@ bool StreamTranscoder::processRewrap()
311
307
return true ;
312
308
}
313
309
314
- bool StreamTranscoder::processRewrap ( const int subStreamIndex )
315
- {
316
- assert ( _inputStream != NULL );
317
- assert ( _outputStream != NULL );
318
-
319
- CodedData data;
320
-
321
- if ( ! _inputStream->readNextPacket ( data ) )
322
- return false ;
323
- _outputStream->wrap ( data );
324
-
325
- return true ;
326
- }
327
-
328
310
bool StreamTranscoder::processTranscode ()
329
311
{
330
312
assert ( _inputEssence != NULL );
Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ class AvExport StreamTranscoder
71
71
72
72
private:
73
73
bool processRewrap ();
74
- bool processRewrap ( const int subStreamIndex );
75
74
bool processTranscode ();
76
75
bool processTranscode ( const int subStreamIndex );
77
76
You can’t perform that action at this time.
0 commit comments