mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-24 17:12:34 +02:00
enable stream copy with ffserver, to be able to chain
Originally committed as revision 13753 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ce072b2d30
commit
837d248df6
6
ffmpeg.c
6
ffmpeg.c
@ -443,6 +443,12 @@ static int read_ffserver_streams(AVFormatContext *s, const char *filename)
|
|||||||
st->codec = avcodec_alloc_context();
|
st->codec = avcodec_alloc_context();
|
||||||
memcpy(st->codec, ic->streams[i]->codec, sizeof(AVCodecContext));
|
memcpy(st->codec, ic->streams[i]->codec, sizeof(AVCodecContext));
|
||||||
s->streams[i] = st;
|
s->streams[i] = st;
|
||||||
|
|
||||||
|
if (st->codec->codec_type == CODEC_TYPE_AUDIO && audio_stream_copy)
|
||||||
|
st->stream_copy = 1;
|
||||||
|
else if (st->codec->codec_type == CODEC_TYPE_VIDEO && video_stream_copy)
|
||||||
|
st->stream_copy = 1;
|
||||||
|
|
||||||
if(st->codec->flags & CODEC_FLAG_BITEXACT)
|
if(st->codec->flags & CODEC_FLAG_BITEXACT)
|
||||||
nopts = 1;
|
nopts = 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user