mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-13 02:41:37 +00:00
mpegts: check that codec is not open in mpegts_find_stream_type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8897b5aa4c
commit
03290ffb57
@ -598,6 +598,11 @@ static const StreamType DESC_types[] = {
|
||||
static void mpegts_find_stream_type(AVStream *st,
|
||||
uint32_t stream_type, const StreamType *types)
|
||||
{
|
||||
if (avcodec_is_open(st->codec)) {
|
||||
av_log(NULL, AV_LOG_DEBUG, "cannot set stream info, codec is open\n");
|
||||
return;
|
||||
}
|
||||
|
||||
for (; types->stream_type; types++) {
|
||||
if (stream_type == types->stream_type) {
|
||||
st->codec->codec_type = types->codec_type;
|
||||
|
Loading…
Reference in New Issue
Block a user