mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-22 10:58:04 +00:00
fix ffserver, it is working for me now again, a more elegant fix is needed though
Originally committed as revision 4637 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
26aa0f8956
commit
f37f8d4c55
7
ffmpeg.c
7
ffmpeg.c
@ -420,8 +420,11 @@ static int read_ffserver_streams(AVFormatContext *s, const char *filename)
|
|||||||
for(i=0;i<ic->nb_streams;i++) {
|
for(i=0;i<ic->nb_streams;i++) {
|
||||||
AVStream *st;
|
AVStream *st;
|
||||||
|
|
||||||
|
// FIXME: a more elegant solution is needed
|
||||||
st = av_mallocz(sizeof(AVStream));
|
st = av_mallocz(sizeof(AVStream));
|
||||||
memcpy(st, ic->streams[i], sizeof(AVStream));
|
memcpy(st, ic->streams[i], sizeof(AVStream));
|
||||||
|
st->codec = avcodec_alloc_context();
|
||||||
|
memcpy(st->codec, ic->streams[i]->codec, sizeof(AVCodecContext));
|
||||||
s->streams[i] = st;
|
s->streams[i] = st;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1742,8 +1745,8 @@ static int av_encode(AVFormatContext **output_files,
|
|||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
ost->img_resample_ctx = img_resample_full_init(
|
ost->img_resample_ctx = img_resample_full_init(
|
||||||
ost->st->codec->width, ost->st->codec->height,
|
codec->width, codec->height,
|
||||||
ist->st->codec->width, ist->st->codec->height,
|
icodec->width, icodec->height,
|
||||||
frame_topBand, frame_bottomBand,
|
frame_topBand, frame_bottomBand,
|
||||||
frame_leftBand, frame_rightBand,
|
frame_leftBand, frame_rightBand,
|
||||||
frame_padtop, frame_padbottom,
|
frame_padtop, frame_padbottom,
|
||||||
|
Loading…
Reference in New Issue
Block a user