mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
flvdec: remove spurious use of stream id
We match streams by codec id now.
This commit is contained in:
parent
aba232cfa9
commit
41f43202cf
@ -69,12 +69,11 @@ static int flv_probe(AVProbeData *p)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static AVStream *create_stream(AVFormatContext *s, int tag, int codec_type)
|
static AVStream *create_stream(AVFormatContext *s, int codec_type)
|
||||||
{
|
{
|
||||||
AVStream *st = avformat_new_stream(s, NULL);
|
AVStream *st = avformat_new_stream(s, NULL);
|
||||||
if (!st)
|
if (!st)
|
||||||
return NULL;
|
return NULL;
|
||||||
st->id = tag;
|
|
||||||
st->codec->codec_type = codec_type;
|
st->codec->codec_type = codec_type;
|
||||||
avpriv_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
|
avpriv_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
|
||||||
return st;
|
return st;
|
||||||
@ -402,7 +401,7 @@ static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vst
|
|||||||
else if (!strcmp(key, "audiodatarate") && acodec && 0 <= (int)(num_val * 1024.0))
|
else if (!strcmp(key, "audiodatarate") && acodec && 0 <= (int)(num_val * 1024.0))
|
||||||
acodec->bit_rate = num_val * 1024.0;
|
acodec->bit_rate = num_val * 1024.0;
|
||||||
else if (!strcmp(key, "datastream")) {
|
else if (!strcmp(key, "datastream")) {
|
||||||
AVStream *st = create_stream(s, 2, AVMEDIA_TYPE_DATA);
|
AVStream *st = create_stream(s, AVMEDIA_TYPE_DATA);
|
||||||
if (!st)
|
if (!st)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
st->codec->codec_id = CODEC_ID_TEXT;
|
st->codec->codec_id = CODEC_ID_TEXT;
|
||||||
@ -507,11 +506,11 @@ static int flv_read_header(AVFormatContext *s)
|
|||||||
s->ctx_flags |= AVFMTCTX_NOHEADER;
|
s->ctx_flags |= AVFMTCTX_NOHEADER;
|
||||||
|
|
||||||
if(flags & FLV_HEADER_FLAG_HASVIDEO){
|
if(flags & FLV_HEADER_FLAG_HASVIDEO){
|
||||||
if(!create_stream(s, 0, AVMEDIA_TYPE_VIDEO))
|
if(!create_stream(s, AVMEDIA_TYPE_VIDEO))
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
}
|
}
|
||||||
if(flags & FLV_HEADER_FLAG_HASAUDIO){
|
if(flags & FLV_HEADER_FLAG_HASAUDIO){
|
||||||
if(!create_stream(s, 1, AVMEDIA_TYPE_AUDIO))
|
if(!create_stream(s, AVMEDIA_TYPE_AUDIO))
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -612,7 +611,7 @@ static int flv_data_packet(AVFormatContext *s, AVPacket *pkt,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (i == s->nb_streams) {
|
if (i == s->nb_streams) {
|
||||||
st = create_stream(s, 2, AVMEDIA_TYPE_DATA);
|
st = create_stream(s, AVMEDIA_TYPE_DATA);
|
||||||
if (!st)
|
if (!st)
|
||||||
goto out;
|
goto out;
|
||||||
st->codec->codec_id = CODEC_ID_TEXT;
|
st->codec->codec_id = CODEC_ID_TEXT;
|
||||||
@ -713,7 +712,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(i == s->nb_streams){
|
if(i == s->nb_streams){
|
||||||
st = create_stream(s, is_audio,
|
st = create_stream(s,
|
||||||
is_audio ? AVMEDIA_TYPE_AUDIO : AVMEDIA_TYPE_VIDEO);
|
is_audio ? AVMEDIA_TYPE_AUDIO : AVMEDIA_TYPE_VIDEO);
|
||||||
s->ctx_flags &= ~AVFMTCTX_NOHEADER;
|
s->ctx_flags &= ~AVFMTCTX_NOHEADER;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user