Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mediastreamer2
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
mediastreamer2
Commits
3dc0dc24
Commit
3dc0dc24
authored
Jun 18, 2010
by
Simon Morlat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
integrate H264 decoder to mediastreamer2
parent
0977a420
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
325 additions
and
3 deletions
+325
-3
configure.ac
configure.ac
+1
-1
allfilters.h
include/mediastreamer2/allfilters.h
+2
-1
rfc3984.h
include/mediastreamer2/rfc3984.h
+3
-0
Makefile.am
src/Makefile.am
+2
-1
h264dec.c
src/h264dec.c
+306
-0
rfc3984.c
src/rfc3984.c
+11
-0
No files found.
configure.ac
View file @
3dc0dc24
dnl Process this file with autoconf to produce a configure script.
AC_INIT([mediastreamer],[2.
5.0.1
])
AC_INIT([mediastreamer],[2.
6.0
])
AC_MSG_NOTICE([$PACKAGE_NAME-$PACKAGE_VERSION A mediastreaming library for telephony application.])
AC_MSG_NOTICE([licensed under the terms of the General Public License (GPL)])
...
...
include/mediastreamer2/allfilters.h
View file @
3dc0dc24
...
...
@@ -96,7 +96,8 @@ typedef enum MSFilterId{
MS_AUDIO_MIXER_ID
,
MS_ITC_SINK_ID
,
MS_ITC_SOURCE_ID
,
MS_EXT_DISPLAY_ID
MS_EXT_DISPLAY_ID
,
MS_H264_DEC_ID
}
MSFilterId
;
...
...
include/mediastreamer2/rfc3984.h
View file @
3dc0dc24
...
...
@@ -37,6 +37,9 @@ typedef struct Rfc3984Context{
uint8_t
reserved
;
}
Rfc3984Context
;
Rfc3984Context
*
rfc3984_new
(
void
);
void
rfc3984_destroy
(
Rfc3984Context
*
ctx
);
void
rfc3984_init
(
Rfc3984Context
*
ctx
);
void
rfc3984_set_mode
(
Rfc3984Context
*
ctx
,
int
mode
);
...
...
src/Makefile.am
View file @
3dc0dc24
...
...
@@ -122,7 +122,8 @@ libmediastreamer_la_SOURCES+= videoenc.c \
sizeconv.c
\
nowebcam.c nowebcam.h
\
videoout.c
\
swscale.h ffmpeg-priv.h
swscale.h ffmpeg-priv.h
\
h264dec.c
endif
libmediastreamer_la_SOURCES
+=
rfc2429.h
\
...
...
src/h264dec.c
0 → 100644
View file @
3dc0dc24
/*
mediastreamer2 library - modular sound and video processing and streaming
Copyright (C) 2010 Belledonne Communications SARL
Author: Simon Morlat <simon.morlat@linphone.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "mediastreamer2/msfilter.h"
#include "mediastreamer2/rfc3984.h"
#include "mediastreamer2/msvideo.h"
#include "ffmpeg-priv.h"
#include "ortp/b64.h"
typedef
struct
_DecData
{
mblk_t
*
yuv_msg
;
mblk_t
*
sps
,
*
pps
;
Rfc3984Context
unpacker
;
MSPicture
outbuf
;
struct
ms_SwsContext
*
sws_ctx
;
AVCodecContext
av_context
;
unsigned
int
packet_num
;
uint8_t
*
bitstream
;
int
bitstream_size
;
}
DecData
;
static
void
ffmpeg_init
(){
static
bool_t
done
=
FALSE
;
if
(
!
done
){
avcodec_init
();
avcodec_register_all
();
done
=
TRUE
;
}
}
static
void
dec_open
(
DecData
*
d
){
AVCodec
*
codec
;
int
error
;
codec
=
avcodec_find_decoder
(
CODEC_ID_H264
);
if
(
codec
==
NULL
)
ms_fatal
(
"Could not find H264 decoder in ffmpeg."
);
avcodec_get_context_defaults
(
&
d
->
av_context
);
error
=
avcodec_open
(
&
d
->
av_context
,
codec
);
if
(
error
!=
0
){
ms_fatal
(
"avcodec_open() failed."
);
}
}
static
void
dec_init
(
MSFilter
*
f
){
DecData
*
d
=
(
DecData
*
)
ms_new
(
DecData
,
1
);
ffmpeg_init
();
d
->
yuv_msg
=
NULL
;
d
->
sps
=
NULL
;
d
->
pps
=
NULL
;
d
->
sws_ctx
=
NULL
;
rfc3984_init
(
&
d
->
unpacker
);
d
->
packet_num
=
0
;
dec_open
(
d
);
d
->
outbuf
.
w
=
0
;
d
->
outbuf
.
h
=
0
;
d
->
bitstream_size
=
65536
;
d
->
bitstream
=
ms_malloc0
(
d
->
bitstream_size
);
f
->
data
=
d
;
}
static
void
dec_reinit
(
DecData
*
d
){
avcodec_close
(
&
d
->
av_context
);
dec_open
(
d
);
}
static
void
dec_uninit
(
MSFilter
*
f
){
DecData
*
d
=
(
DecData
*
)
f
->
data
;
rfc3984_uninit
(
&
d
->
unpacker
);
avcodec_close
(
&
d
->
av_context
);
if
(
d
->
yuv_msg
)
freemsg
(
d
->
yuv_msg
);
if
(
d
->
sps
)
freemsg
(
d
->
sps
);
if
(
d
->
pps
)
freemsg
(
d
->
pps
);
ms_free
(
d
->
bitstream
);
ms_free
(
d
);
}
static
mblk_t
*
get_as_yuvmsg
(
MSFilter
*
f
,
DecData
*
s
,
AVFrame
*
orig
){
AVCodecContext
*
ctx
=&
s
->
av_context
;
if
(
s
->
outbuf
.
w
!=
ctx
->
width
||
s
->
outbuf
.
h
!=
ctx
->
height
){
if
(
s
->
sws_ctx
!=
NULL
){
ms_sws_freeContext
(
s
->
sws_ctx
);
s
->
sws_ctx
=
NULL
;
freemsg
(
s
->
yuv_msg
);
s
->
yuv_msg
=
NULL
;
}
ms_message
(
"Getting yuv picture of %ix%i"
,
ctx
->
width
,
ctx
->
height
);
s
->
yuv_msg
=
yuv_buf_alloc
(
&
s
->
outbuf
,
ctx
->
width
,
ctx
->
height
);
s
->
outbuf
.
w
=
ctx
->
width
;
s
->
outbuf
.
h
=
ctx
->
height
;
s
->
sws_ctx
=
ms_sws_getContext
(
ctx
->
width
,
ctx
->
height
,
ctx
->
pix_fmt
,
ctx
->
width
,
ctx
->
height
,
PIX_FMT_YUV420P
,
SWS_FAST_BILINEAR
,
NULL
,
NULL
,
NULL
);
}
if
(
ms_sws_scale
(
s
->
sws_ctx
,
orig
->
data
,
orig
->
linesize
,
0
,
ctx
->
height
,
s
->
outbuf
.
planes
,
s
->
outbuf
.
strides
)
<
0
){
ms_error
(
"%s: error in sws_scale()."
,
f
->
desc
->
name
);
}
return
dupmsg
(
s
->
yuv_msg
);
}
static
void
update_sps
(
DecData
*
d
,
mblk_t
*
sps
){
if
(
d
->
sps
)
freemsg
(
d
->
sps
);
d
->
sps
=
dupb
(
sps
);
}
static
void
update_pps
(
DecData
*
d
,
mblk_t
*
pps
){
if
(
d
->
pps
)
freemsg
(
d
->
pps
);
if
(
pps
)
d
->
pps
=
dupb
(
pps
);
else
d
->
pps
=
NULL
;
}
static
bool_t
check_sps_pps_change
(
DecData
*
d
,
mblk_t
*
sps
,
mblk_t
*
pps
){
bool_t
ret1
=
FALSE
,
ret2
=
FALSE
;
if
(
d
->
sps
){
if
(
sps
){
ret1
=
(
msgdsize
(
sps
)
!=
msgdsize
(
d
->
sps
))
||
(
memcmp
(
d
->
sps
->
b_rptr
,
sps
->
b_rptr
,
msgdsize
(
sps
))
!=
0
);
if
(
ret1
)
{
update_sps
(
d
,
sps
);
ms_message
(
"SPS changed !"
);
update_pps
(
d
,
NULL
);
}
}
}
else
if
(
sps
)
{
ms_message
(
"Receiving first SPS"
);
update_sps
(
d
,
sps
);
}
if
(
d
->
pps
){
if
(
pps
){
ret2
=
(
msgdsize
(
pps
)
!=
msgdsize
(
d
->
pps
))
||
(
memcmp
(
d
->
pps
->
b_rptr
,
pps
->
b_rptr
,
msgdsize
(
pps
))
!=
0
);
if
(
ret2
)
{
ms_message
(
"PPS changed ! %i,%i"
,
msgdsize
(
pps
),
msgdsize
(
d
->
pps
));
update_pps
(
d
,
pps
);
}
}
}
else
if
(
pps
)
{
ms_message
(
"Receiving first PPS"
);
update_pps
(
d
,
pps
);
}
return
ret1
||
ret2
;
}
static
void
enlarge_bitstream
(
DecData
*
d
,
int
new_size
){
d
->
bitstream_size
=
new_size
;
d
->
bitstream
=
ms_realloc
(
d
->
bitstream
,
d
->
bitstream_size
);
}
static
int
nalusToFrame
(
DecData
*
d
,
MSQueue
*
naluq
,
bool_t
*
new_sps_pps
){
mblk_t
*
im
;
uint8_t
*
dst
=
d
->
bitstream
,
*
src
,
*
end
;
int
nal_len
;
bool_t
start_picture
=
TRUE
;
uint8_t
nalu_type
;
*
new_sps_pps
=
FALSE
;
end
=
d
->
bitstream
+
d
->
bitstream_size
;
while
((
im
=
ms_queue_get
(
naluq
))
!=
NULL
){
src
=
im
->
b_rptr
;
nal_len
=
im
->
b_wptr
-
src
;
if
(
dst
+
nal_len
+
100
>
end
){
int
pos
=
dst
-
d
->
bitstream
;
enlarge_bitstream
(
d
,
d
->
bitstream_size
+
nal_len
+
100
);
dst
=
d
->
bitstream
+
pos
;
end
=
d
->
bitstream
+
d
->
bitstream_size
;
}
nalu_type
=
(
*
src
)
&
((
1
<<
5
)
-
1
);
if
(
nalu_type
==
7
)
*
new_sps_pps
=
check_sps_pps_change
(
d
,
im
,
NULL
)
||
*
new_sps_pps
;
if
(
nalu_type
==
8
)
*
new_sps_pps
=
check_sps_pps_change
(
d
,
NULL
,
im
)
||
*
new_sps_pps
;
if
(
start_picture
||
nalu_type
==
7
/*SPS*/
||
nalu_type
==
8
/*PPS*/
){
*
dst
++=
0
;
start_picture
=
FALSE
;
}
/*prepend nal marker*/
*
dst
++=
0
;
*
dst
++=
0
;
*
dst
++=
1
;
*
dst
++=*
src
++
;
while
(
src
<
(
im
->
b_wptr
-
3
)){
if
(
src
[
0
]
==
0
&&
src
[
1
]
==
0
&&
src
[
2
]
<
3
){
*
dst
++=
0
;
*
dst
++=
0
;
*
dst
++=
3
;
src
+=
2
;
}
*
dst
++=*
src
++
;
}
*
dst
++=*
src
++
;
*
dst
++=*
src
++
;
*
dst
++=*
src
++
;
freemsg
(
im
);
}
return
dst
-
d
->
bitstream
;
}
static
void
dec_process
(
MSFilter
*
f
){
DecData
*
d
=
(
DecData
*
)
f
->
data
;
mblk_t
*
im
;
MSQueue
nalus
;
AVFrame
orig
;
ms_queue_init
(
&
nalus
);
while
((
im
=
ms_queue_get
(
f
->
inputs
[
0
]))
!=
NULL
){
/*push the sps/pps given in sprop-parameter-sets if any*/
if
(
d
->
packet_num
==
0
&&
d
->
sps
&&
d
->
pps
){
mblk_set_timestamp_info
(
d
->
sps
,
mblk_get_timestamp_info
(
im
));
mblk_set_timestamp_info
(
d
->
pps
,
mblk_get_timestamp_info
(
im
));
rfc3984_unpack
(
&
d
->
unpacker
,
d
->
sps
,
&
nalus
);
rfc3984_unpack
(
&
d
->
unpacker
,
d
->
pps
,
&
nalus
);
d
->
sps
=
NULL
;
d
->
pps
=
NULL
;
}
rfc3984_unpack
(
&
d
->
unpacker
,
im
,
&
nalus
);
if
(
!
ms_queue_empty
(
&
nalus
)){
int
size
;
uint8_t
*
p
,
*
end
;
bool_t
need_reinit
=
FALSE
;
size
=
nalusToFrame
(
d
,
&
nalus
,
&
need_reinit
);
if
(
need_reinit
)
dec_reinit
(
d
);
p
=
d
->
bitstream
;
end
=
d
->
bitstream
+
size
;
while
(
end
-
p
>
0
)
{
int
len
;
int
got_picture
=
0
;
AVPacket
pkt
;
avcodec_get_frame_defaults
(
&
orig
);
av_init_packet
(
&
pkt
);
pkt
.
data
=
p
;
pkt
.
size
=
end
-
p
;
len
=
avcodec_decode_video2
(
&
d
->
av_context
,
&
orig
,
&
got_picture
,
&
pkt
);
if
(
len
<=
0
)
{
ms_warning
(
"ms_AVdecoder_process: error %i."
,
len
);
break
;
}
if
(
got_picture
)
{
ms_queue_put
(
f
->
outputs
[
0
],
get_as_yuvmsg
(
f
,
d
,
&
orig
));
}
p
+=
len
;
}
}
d
->
packet_num
++
;
}
}
static
int
dec_add_fmtp
(
MSFilter
*
f
,
void
*
arg
){
DecData
*
d
=
(
DecData
*
)
f
->
data
;
const
char
*
fmtp
=
(
const
char
*
)
arg
;
char
value
[
256
];
if
(
fmtp_get_value
(
fmtp
,
"sprop-parameter-sets"
,
value
,
sizeof
(
value
))){
char
*
b64_sps
=
value
;
char
*
b64_pps
=
strchr
(
value
,
','
);
if
(
b64_pps
){
*
b64_pps
=
'\0'
;
++
b64_pps
;
ms_message
(
"Got sprop-parameter-sets : sps=%s , pps=%s"
,
b64_sps
,
b64_pps
);
d
->
sps
=
allocb
(
sizeof
(
value
),
0
);
d
->
sps
->
b_wptr
+=
b64_decode
(
b64_sps
,
strlen
(
b64_sps
),
d
->
sps
->
b_wptr
,
sizeof
(
value
));
d
->
pps
=
allocb
(
sizeof
(
value
),
0
);
d
->
pps
->
b_wptr
+=
b64_decode
(
b64_pps
,
strlen
(
b64_pps
),
d
->
pps
->
b_wptr
,
sizeof
(
value
));
}
}
return
0
;
}
static
MSFilterMethod
h264_dec_methods
[]
=
{
{
MS_FILTER_ADD_FMTP
,
dec_add_fmtp
},
{
0
,
NULL
}
};
MSFilterDesc
h264_dec_desc
=
{
.
id
=
MS_H264_DEC_ID
,
.
name
=
"MSH264Dec"
,
.
text
=
"A H264 decoder based on ffmpeg project."
,
.
category
=
MS_FILTER_DECODER
,
.
enc_fmt
=
"H264"
,
.
ninputs
=
1
,
.
noutputs
=
1
,
.
init
=
dec_init
,
.
process
=
dec_process
,
.
uninit
=
dec_uninit
,
.
methods
=
h264_dec_methods
};
MS_FILTER_DESC_EXPORT
(
h264_dec_desc
)
src/rfc3984.c
View file @
3dc0dc24
...
...
@@ -36,6 +36,17 @@ static inline uint8_t nal_header_get_nri(const uint8_t *h){
return
((
*
h
)
>>
5
)
&
0x3
;
}
Rfc3984Context
*
rfc3984_new
(
void
){
Rfc3984Context
*
ctx
=
ms_new
(
Rfc3984Context
,
1
);
rfc3984_init
(
ctx
);
return
ctx
;
}
void
rfc3984_destroy
(
Rfc3984Context
*
ctx
){
rfc3984_uninit
(
ctx
);
ms_free
(
ctx
);
}
void
rfc3984_init
(
Rfc3984Context
*
ctx
){
ms_queue_init
(
&
ctx
->
q
);
ctx
->
m
=
NULL
;
...
...
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