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
566de8cd
Commit
566de8cd
authored
Oct 25, 2012
by
Janne Grunau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avserver: replace av_read_packet with av_read_frame
parent
39c4afd9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
avserver.c
avserver.c
+3
-1
No files found.
avserver.c
View file @
566de8cd
...
...
@@ -3562,6 +3562,8 @@ static void extract_mpeg4_header(AVFormatContext *infile)
AVStream
*
st
;
const
uint8_t
*
p
;
infile
->
flags
|=
AVFMT_FLAG_NOFILLIN
|
AVFMT_FLAG_NOPARSE
;
mpeg4_count
=
0
;
for
(
i
=
0
;
i
<
infile
->
nb_streams
;
i
++
)
{
st
=
infile
->
streams
[
i
];
...
...
@@ -3575,7 +3577,7 @@ static void extract_mpeg4_header(AVFormatContext *infile)
printf
(
"MPEG4 without extra data: trying to find header in %s
\n
"
,
infile
->
filename
);
while
(
mpeg4_count
>
0
)
{
if
(
av_read_
packet
(
infile
,
&
pkt
)
<
0
)
if
(
av_read_
frame
(
infile
,
&
pkt
)
<
0
)
break
;
st
=
infile
->
streams
[
pkt
.
stream_index
];
if
(
st
->
codec
->
codec_id
==
AV_CODEC_ID_MPEG4
&&
...
...
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