Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.WithCustomProto
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.WithCustomProto
Commits
4dac37e9
Commit
4dac37e9
authored
May 06, 2022
by
NzSN
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into WASM
parents
3ac59c2c
14e8b4f7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
5 deletions
+30
-5
CMakeLists.txt
CMakeLists.txt
+2
-0
movMemProto.cc
src/proto/movMemProto.cc
+1
-0
utils.cc
src/utils.cc
+26
-4
ioctxTestCases.cc
tests/ioctxTestCases.cc
+1
-1
No files found.
CMakeLists.txt
View file @
4dac37e9
...
...
@@ -19,6 +19,8 @@ option(DEBUG "Only enable during development" OFF)
include_directories
(
${
INCLUDE
}
)
if
(
DEBUG
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-fsanitize=address"
)
message
(
"Fetching googletest..."
)
# Google Test
include
(
FetchContent
)
...
...
src/proto/movMemProto.cc
View file @
4dac37e9
...
...
@@ -88,6 +88,7 @@ void MovMemProto::close_internal() {
while
(
!
s
.
empty
())
{
auto
mem
=
s
.
front
();
mem
.
data
=
nullptr
;
s
.
pop
();
}
}
...
...
src/utils.cc
View file @
4dac37e9
...
...
@@ -3,18 +3,34 @@
namespace
Utils
{
static
void
close_input_file
(
AVFormatContext
**
ctx_ptr
)
{
int
i
;
AVFormatContext
*
fmt_ctx
=
*
ctx_ptr
;
/* close decoder for each stream */
for
(
i
=
0
;
i
<
fmt_ctx
->
nb_streams
;
i
++
)
{
AVStream
*
stream
=
fmt_ctx
->
streams
[
i
];
avcodec_close
(
stream
->
codec
);
}
avformat_close_input
(
ctx_ptr
);
}
static
AVFormatContext
*
AVFormatInputContextConstructor
(
std
::
string
path
,
AVIOContext
*
customIO
)
{
const
char
*
filename
=
path
.
c_str
();
AVFormatContext
*
ctx
=
nullptr
;
if
(
customIO
!=
nullptr
)
{
ctx
=
avformat_alloc_context
();
ctx
->
pb
=
customIO
;
filename
=
nullptr
;
}
printf
(
"Open format
\n
"
);
if
(
avformat_open_input
(
&
ctx
,
path
.
c_str
()
,
nullptr
,
nullptr
)
<
0
)
{
if
(
avformat_open_input
(
&
ctx
,
filename
,
nullptr
,
nullptr
)
<
0
)
{
return
nullptr
;
}
...
...
@@ -22,7 +38,7 @@ static AVFormatContext* AVFormatInputContextConstructor(
printf
(
"Find stream
\n
"
);
if
(
avformat_find_stream_info
(
ctx
,
nullptr
)
<
0
)
{
avformat_close_input
(
&
ctx
);
close_input_file
(
&
ctx
);
return
nullptr
;
}
printf
(
"Done
\n
"
);
...
...
@@ -31,7 +47,9 @@ static AVFormatContext* AVFormatInputContextConstructor(
}
static
void
AVFormatInputContextDestructor
(
AVFormatContext
*
ctx
)
{
avformat_close_input
(
&
ctx
);
if
(
ctx
!=
nullptr
)
{
avformat_close_input
(
&
ctx
);
}
}
AVFormatContextShared
makeInAVFormat
(
std
::
string
path
,
AVIOContext
*
customIO
)
{
...
...
@@ -62,7 +80,11 @@ static AVFormatContext* AVFormatOutputContextConstructor(
}
static
void
AVFormatOutputContextDestructor
(
AVFormatContext
*
ctx
)
{
avformat_close_input
(
&
ctx
);
if
(
ctx
!=
nullptr
)
{
if
(
ctx
->
pb
&&
strnlen
(
ctx
->
filename
,
1024
)
>
0
)
avio_close
(
ctx
->
pb
);
avformat_free_context
(
ctx
);
}
}
AVFormatContextShared
makeOutAVFormat
(
...
...
tests/ioctxTestCases.cc
View file @
4dac37e9
...
...
@@ -235,7 +235,7 @@ TEST_F(IOCTX_With_MovMem_Proto_Fixture, Initialize) {
t1
.
detach
();
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
milliseconds
(
1
00
));
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
milliseconds
(
5
00
));
inCtxMM
=
new
IOCtx
::
InCtx
(
""
,
mmProto
);
AVStream
*
s
=
inCtxMM
->
getStream
([](
AVStream
*
s
)
{
...
...
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