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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Luma Media Server
ffmpeg
Commits
4e9e6fa9
Commit
4e9e6fa9
authored
10 years ago
by
Luca Barbato
Browse files
Options
Downloads
Patches
Plain Diff
mpeg: Write H264 streams at offset 2
It hints that the content is H264 according to HD-DVD.
parent
a4d3c200
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavformat/mpeg.h
+1
-0
1 addition, 0 deletions
libavformat/mpeg.h
libavformat/mpegenc.c
+9
-4
9 additions, 4 deletions
libavformat/mpegenc.c
with
10 additions
and
4 deletions
libavformat/mpeg.h
+
1
−
0
View file @
4e9e6fa9
...
...
@@ -40,6 +40,7 @@
#define AUDIO_ID 0xc0
#define VIDEO_ID 0xe0
#define H264_ID 0xe2
#define AC3_ID 0x80
#define DTS_ID 0x8a
#define LPCM_ID 0xa0
...
...
This diff is collapsed.
Click to expand it.
libavformat/mpegenc.c
+
9
−
4
View file @
4e9e6fa9
...
...
@@ -301,7 +301,7 @@ static int get_system_header_size(AVFormatContext *ctx)
static
av_cold
int
mpeg_mux_init
(
AVFormatContext
*
ctx
)
{
MpegMuxContext
*
s
=
ctx
->
priv_data
;
int
bitrate
,
i
,
mpa_id
,
mpv_id
,
mps_id
,
ac3_id
,
dts_id
,
lpcm_id
,
j
;
int
bitrate
,
i
,
mpa_id
,
mpv_id
,
h264_id
,
mps_id
,
ac3_id
,
dts_id
,
lpcm_id
,
j
;
AVStream
*
st
;
StreamInfo
*
stream
;
int
audio_bitrate
;
...
...
@@ -337,6 +337,7 @@ static av_cold int mpeg_mux_init(AVFormatContext *ctx)
ac3_id
=
AC3_ID
;
dts_id
=
DTS_ID
;
mpv_id
=
VIDEO_ID
;
h264_id
=
H264_ID
;
mps_id
=
SUB_ID
;
lpcm_id
=
LPCM_ID
;
...
...
@@ -379,7 +380,10 @@ static av_cold int mpeg_mux_init(AVFormatContext *ctx)
s
->
audio_bound
++
;
break
;
case
AVMEDIA_TYPE_VIDEO
:
stream
->
id
=
mpv_id
++
;
if
(
st
->
codec
->
codec_id
==
AV_CODEC_ID_H264
)
stream
->
id
=
h264_id
++
;
else
stream
->
id
=
mpv_id
++
;
if
(
st
->
codec
->
rc_buffer_size
)
stream
->
max_buffer_size
=
6
*
1024
+
st
->
codec
->
rc_buffer_size
/
8
;
else
{
...
...
@@ -409,7 +413,8 @@ static av_cold int mpeg_mux_init(AVFormatContext *ctx)
st
=
ctx
->
streams
[
i
];
stream
=
(
StreamInfo
*
)
st
->
priv_data
;
if
(
st
->
codec
->
rc_max_rate
||
stream
->
id
==
VIDEO_ID
)
if
(
st
->
codec
->
rc_max_rate
||
st
->
codec
->
codec_type
==
AVMEDIA_TYPE_VIDEO
)
codec_rate
=
st
->
codec
->
rc_max_rate
;
else
codec_rate
=
st
->
codec
->
bit_rate
;
...
...
@@ -421,7 +426,7 @@ static av_cold int mpeg_mux_init(AVFormatContext *ctx)
if
((
stream
->
id
&
0xe0
)
==
AUDIO_ID
)
audio_bitrate
+=
codec_rate
;
else
if
(
st
ream
->
id
==
VIDEO_ID
)
else
if
(
st
->
codec
->
codec_type
==
AVMEDIA_TYPE_VIDEO
)
video_bitrate
+=
codec_rate
;
}
...
...
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