| 1808 | } |
| 1809 | |
| 1810 | static OutputStream *new_attachment_stream(OptionsContext *o, AVFormatContext *oc, int source_index) |
| 1811 | { |
| 1812 | OutputStream *ost = new_output_stream(o, oc, AVMEDIA_TYPE_ATTACHMENT, source_index); |
| 1813 | ost->stream_copy = 1; |
| 1814 | ost->finished = 1; |
| 1815 | return ost; |
| 1816 | } |
| 1817 | |
| 1818 | static OutputStream *new_subtitle_stream(OptionsContext *o, AVFormatContext *oc, int source_index) |
| 1819 | { |
no test coverage detected