Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
579fd87b
Commit
579fd87b
authored
Jun 17, 2012
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtpenc: Support packetizing iLBC
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
89c39605
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
1 deletion
+51
-1
rtpenc.c
libavformat/rtpenc.c
+44
-0
sdp.c
libavformat/sdp.c
+6
-0
version.h
libavformat/version.h
+1
-1
No files found.
libavformat/rtpenc.c
View file @
579fd87b
...
...
@@ -74,6 +74,7 @@ static int is_supported(enum CodecID id)
case
CODEC_ID_VP8
:
case
CODEC_ID_ADPCM_G722
:
case
CODEC_ID_ADPCM_G726
:
case
CODEC_ID_ILBC
:
return
1
;
default:
return
0
;
...
...
@@ -187,6 +188,16 @@ static int rtp_write_header(AVFormatContext *s1)
* 8000, even if the sample rate is 16000. See RFC 3551. */
avpriv_set_pts_info
(
st
,
32
,
1
,
8000
);
break
;
case
CODEC_ID_ILBC
:
if
(
st
->
codec
->
block_align
!=
38
&&
st
->
codec
->
block_align
!=
50
)
{
av_log
(
s1
,
AV_LOG_ERROR
,
"Incorrect iLBC block size specified
\n
"
);
goto
fail
;
}
if
(
!
s
->
max_frames_per_packet
)
s
->
max_frames_per_packet
=
1
;
s
->
max_frames_per_packet
=
FFMIN
(
s
->
max_frames_per_packet
,
s
->
max_payload_size
/
st
->
codec
->
block_align
);
goto
defaultcase
;
case
CODEC_ID_AMR_NB
:
case
CODEC_ID_AMR_WB
:
if
(
!
s
->
max_frames_per_packet
)
...
...
@@ -395,6 +406,36 @@ static void rtp_send_mpegts_raw(AVFormatContext *s1,
}
}
static
int
rtp_send_ilbc
(
AVFormatContext
*
s1
,
const
uint8_t
*
buf
,
int
size
)
{
RTPMuxContext
*
s
=
s1
->
priv_data
;
AVStream
*
st
=
s1
->
streams
[
0
];
int
frame_duration
=
av_get_audio_frame_duration
(
st
->
codec
,
0
);
int
frame_size
=
st
->
codec
->
block_align
;
int
frames
=
size
/
frame_size
;
while
(
frames
>
0
)
{
int
n
=
FFMIN
(
s
->
max_frames_per_packet
-
s
->
num_frames
,
frames
);
if
(
!
s
->
num_frames
)
{
s
->
buf_ptr
=
s
->
buf
;
s
->
timestamp
=
s
->
cur_timestamp
;
}
memcpy
(
s
->
buf_ptr
,
buf
,
n
*
frame_size
);
frames
-=
n
;
s
->
num_frames
+=
n
;
s
->
buf_ptr
+=
n
*
frame_size
;
buf
+=
n
*
frame_size
;
s
->
cur_timestamp
+=
n
*
frame_duration
;
if
(
s
->
num_frames
==
s
->
max_frames_per_packet
)
{
ff_rtp_send_data
(
s1
,
s
->
buf
,
s
->
buf_ptr
-
s
->
buf
,
1
);
s
->
num_frames
=
0
;
}
}
return
0
;
}
static
int
rtp_write_packet
(
AVFormatContext
*
s1
,
AVPacket
*
pkt
)
{
RTPMuxContext
*
s
=
s1
->
priv_data
;
...
...
@@ -483,6 +524,9 @@ static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt)
case
CODEC_ID_VP8
:
ff_rtp_send_vp8
(
s1
,
pkt
->
data
,
size
);
break
;
case
CODEC_ID_ILBC
:
rtp_send_ilbc
(
s1
,
pkt
->
data
,
size
);
break
;
default:
/* better than nothing : send the codec raw data */
rtp_send_raw
(
s1
,
pkt
->
data
,
size
);
...
...
libavformat/sdp.c
View file @
579fd87b
...
...
@@ -549,6 +549,12 @@ static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c,
c
->
sample_rate
);
break
;
}
case
CODEC_ID_ILBC
:
av_strlcatf
(
buff
,
size
,
"a=rtpmap:%d iLBC/%d
\r\n
"
"a=fmtp:%d mode=%d
\r\n
"
,
payload_type
,
c
->
sample_rate
,
payload_type
,
c
->
block_align
==
38
?
20
:
30
);
break
;
default:
/* Nothing special to do here... */
break
;
...
...
libavformat/version.h
View file @
579fd87b
...
...
@@ -31,7 +31,7 @@
#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR 5
#define LIBAVFORMAT_VERSION_MICRO
1
#define LIBAVFORMAT_VERSION_MICRO
2
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
LIBAVFORMAT_VERSION_MINOR, \
...
...
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