mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffserver: use AVStream.codecpar in open_input_stream()
AVStream.codec is deprecated Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
822e3e2ddb
commit
6f0a1710d7
@ -2213,7 +2213,7 @@ static int open_input_stream(HTTPContext *c, const char *info)
|
||||
c->pts_stream_index = 0;
|
||||
for(i=0;i<c->stream->nb_streams;i++) {
|
||||
if (c->pts_stream_index == 0 &&
|
||||
c->stream->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
|
||||
c->stream->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
|
||||
c->pts_stream_index = i;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user