Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-11-05 16:11:18 +0400
committerClément Bœsch <ubitux@gmail.com>2011-11-05 18:07:19 +0400
commit0e5ecd806eadf7dd0ec645b1b69310ee76c0cd1c (patch)
treeaa4774ed8070f10d86a16ec814cd39deda0ad8a1 /libavdevice/dshow.c
parent454f1657288e75a9797381c8a26598674ea9bd68 (diff)
Replace remaining av_new_stream() with avformat_new_stream().
Diffstat (limited to 'libavdevice/dshow.c')
-rw-r--r--libavdevice/dshow.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c
index 6a77f4b43a..ab5f7e97e0 100644
--- a/libavdevice/dshow.c
+++ b/libavdevice/dshow.c
@@ -659,11 +659,12 @@ dshow_add_device(AVFormatContext *avctx, AVFormatParameters *ap,
AVStream *st;
int ret = AVERROR(EIO);
- st = av_new_stream(avctx, devtype);
+ st = avformat_new_stream(avctx, NULL);
if (!st) {
ret = AVERROR(ENOMEM);
goto error;
}
+ st->id = devtype;
ctx->capture_filter[devtype]->stream_index = st->index;