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
88868d81
Commit
88868d81
authored
Feb 16, 2015
by
Kevin Wheatley
Committed by
Michael Niedermayer
Feb 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/rtpdec_h264: fix compile failure with -DDEBUG
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f9240ec0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
rtpdec_h264.c
libavformat/rtpdec_h264.c
+4
-4
No files found.
libavformat/rtpdec_h264.c
View file @
88868d81
...
...
@@ -177,7 +177,7 @@ static int sdp_parse_fmtp_config_h264(AVFormatContext *s,
return
0
;
}
static
int
h264_handle_packet_stap_a
(
AVFormatContext
*
ctx
,
AVPacket
*
pkt
,
static
int
h264_handle_packet_stap_a
(
AVFormatContext
*
ctx
,
PayloadContext
*
data
,
AVPacket
*
pkt
,
const
uint8_t
*
buf
,
int
len
)
{
int
pass
=
0
;
...
...
@@ -234,7 +234,7 @@ static int h264_handle_packet_stap_a(AVFormatContext *ctx, AVPacket *pkt,
return
0
;
}
static
int
h264_handle_packet_fu_a
(
AVFormatContext
*
ctx
,
AVPacket
*
pkt
,
static
int
h264_handle_packet_fu_a
(
AVFormatContext
*
ctx
,
PayloadContext
*
data
,
AVPacket
*
pkt
,
const
uint8_t
*
buf
,
int
len
)
{
uint8_t
fu_indicator
,
fu_header
,
start_bit
,
nal_type
,
nal
;
...
...
@@ -308,7 +308,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
buf
++
;
len
--
;
// first we are going to figure out the total size
result
=
h264_handle_packet_stap_a
(
ctx
,
pkt
,
buf
,
len
);
result
=
h264_handle_packet_stap_a
(
ctx
,
data
,
pkt
,
buf
,
len
);
break
;
case
25
:
// STAP-B
...
...
@@ -322,7 +322,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
break
;
case
28
:
// FU-A (fragmented nal)
result
=
h264_handle_packet_fu_a
(
ctx
,
pkt
,
buf
,
len
);
result
=
h264_handle_packet_fu_a
(
ctx
,
data
,
pkt
,
buf
,
len
);
break
;
case
30
:
// undefined
...
...
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