Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
8efa6ab4
Commit
8efa6ab4
authored
May 26, 2016
by
François Cartegnie
🤞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
packetizer: h264: weaken avcC check because of quicktime
parent
b6cce8c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/packetizer/h264_nal.c
modules/packetizer/h264_nal.c
+1
-1
No files found.
modules/packetizer/h264_nal.c
View file @
8efa6ab4
...
...
@@ -40,7 +40,7 @@ bool h264_isavcC( const uint8_t *p_buf, size_t i_buf )
p_buf
[
0
]
==
0x01
&&
(
p_buf
[
4
]
&
0xFC
)
==
0xFC
&&
(
p_buf
[
4
]
&
0x03
)
!=
0x02
&&
(
p_buf
[
5
]
&
0x
E0
)
==
0x
E
0
);
(
p_buf
[
5
]
&
0x
1F
)
>
0x
0
0
);
/* Broken quicktime streams using reserved bits */
}
static
size_t
get_avcC_to_AnnexB_NAL_size
(
const
uint8_t
*
p_buf
,
size_t
i_buf
)
...
...
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