diff --git a/libavdevice/lavfi.c b/libavdevice/lavfi.c
index 1ea7ea7..42cfcd9 100644
|
a
|
b
|
|
| 35 | 35 | #include "libavutil/opt.h" |
| 36 | 36 | #include "libavutil/parseutils.h" |
| 37 | 37 | #include "libavutil/pixdesc.h" |
| | 38 | #include "libavutil/avassert.h" |
| 38 | 39 | #include "libavfilter/avfilter.h" |
| 39 | 40 | #include "libavfilter/avfiltergraph.h" |
| 40 | 41 | #include "libavfilter/buffersink.h" |
| … |
… |
av_cold static int lavfi_read_header(AVFormatContext *avctx)
|
| 252 | 253 | AV_OPT_SEARCH_CHILDREN); |
| 253 | 254 | if (ret < 0) |
| 254 | 255 | goto end; |
| | 256 | } else { |
| | 257 | av_assert0(0); |
| 255 | 258 | } |
| 256 | 259 | |
| 257 | 260 | lavfi->sinks[i] = sink; |