Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
68d9c0be
Commit
68d9c0be
authored
Apr 20, 2020
by
Gyan Doshi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/mpegtsenc: don't print warning for DVB text streams
They can be demuxed by ffmpeg.
parent
2e38c636
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
mpegtsenc.c
libavformat/mpegtsenc.c
+4
-0
No files found.
libavformat/mpegtsenc.c
View file @
68d9c0be
...
@@ -349,6 +349,10 @@ static int get_dvb_stream_type(AVFormatContext *s, AVStream *st)
...
@@ -349,6 +349,10 @@ static int get_dvb_stream_type(AVFormatContext *s, AVStream *st)
case
AV_CODEC_ID_TIMED_ID3
:
case
AV_CODEC_ID_TIMED_ID3
:
stream_type
=
STREAM_TYPE_METADATA
;
stream_type
=
STREAM_TYPE_METADATA
;
break
;
break
;
case
AV_CODEC_ID_DVB_SUBTITLE
:
case
AV_CODEC_ID_DVB_TELETEXT
:
stream_type
=
STREAM_TYPE_PRIVATE_DATA
;
break
;
default:
default:
av_log
(
s
,
AV_LOG_WARNING
,
"Stream %d, codec %s, is muxed as a private data stream "
av_log
(
s
,
AV_LOG_WARNING
,
"Stream %d, codec %s, is muxed as a private data stream "
"and may not be recognized upon reading.
\n
"
,
st
->
index
,
avcodec_get_name
(
st
->
codecpar
->
codec_id
));
"and may not be recognized upon reading.
\n
"
,
st
->
index
,
avcodec_get_name
(
st
->
codecpar
->
codec_id
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment