list subclass with an audio attribute. Plain lists can't hold attributes, so process_decode uses this when the pipeline output includes audio.
| 454 | |
| 455 | |
| 456 | class AudioFrameList(list): |
| 457 | """list subclass with an audio attribute. Plain lists can't hold attributes, |
| 458 | so process_decode uses this when the pipeline output includes audio.""" |
| 459 | audio = None |
| 460 | |
| 461 | |
| 462 | def attach_audio(results, audio): |