Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
a1f42882
Commit
a1f42882
authored
15 years ago
by
Baptiste Coudurier
Browse files
Options
Downloads
Patches
Plain Diff
revert wrongly commited hunk in r21205
Originally committed as revision 21207 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
10061cd6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavformat/mpegtsenc.c
+1
-20
1 addition, 20 deletions
libavformat/mpegtsenc.c
with
1 addition
and
20 deletions
libavformat/mpegtsenc.c
+
1
−
20
View file @
a1f42882
...
...
@@ -196,8 +196,6 @@ static void mpegts_write_pat(AVFormatContext *s)
data
,
q
-
data
);
}
static
void
mpegts_write_pmt
(
AVFormatContext
*
s
,
MpegTSService
*
service
)
{
// MpegTSWrite *ts = s->priv_data;
...
...
@@ -242,10 +240,7 @@ static void mpegts_write_pmt(AVFormatContext *s, MpegTSService *service)
stream_type
=
STREAM_TYPE_AUDIO_AAC
;
break
;
case
CODEC_ID_AC3
:
if
(
!
strcmp
(
s
->
oformat
->
name
,
"dvb"
))
stream_type
=
STREAM_TYPE_PRIVATE_DATA
;
else
stream_type
=
STREAM_TYPE_AUDIO_AC3
;
stream_type
=
STREAM_TYPE_AUDIO_AC3
;
break
;
default:
stream_type
=
STREAM_TYPE_PRIVATE_DATA
;
...
...
@@ -891,17 +886,3 @@ AVOutputFormat mpegts_muxer = {
mpegts_write_packet
,
mpegts_write_end
,
};
AVOutputFormat
dvb_muxer
=
{
"dvb"
,
NULL_IF_CONFIG_SMALL
(
"DVB style MPEG-2 transport stream format"
),
"video/x-mpegts"
,
"dvb"
,
sizeof
(
MpegTSWrite
),
CODEC_ID_MP2
,
CODEC_ID_MPEG2VIDEO
,
mpegts_write_header
,
mpegts_write_packet
,
mpegts_write_end
,
};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment