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
817235b1
Commit
817235b1
authored
Apr 26, 2019
by
Matthieu Bouron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/mediacodec_wrapper: remove unused local variables in ff_AMediaCodec_getCodecNameByType()
parent
3f232d71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
10 deletions
+0
-10
mediacodec_wrapper.c
libavcodec/mediacodec_wrapper.c
+0
-10
No files found.
libavcodec/mediacodec_wrapper.c
View file @
817235b1
...
@@ -392,8 +392,6 @@ char *ff_AMediaCodecList_getCodecNameByType(const char *mime, int profile, int e
...
@@ -392,8 +392,6 @@ char *ff_AMediaCodecList_getCodecNameByType(const char *mime, int profile, int e
struct
JNIAMediaCodecListFields
jfields
=
{
0
};
struct
JNIAMediaCodecListFields
jfields
=
{
0
};
struct
JNIAMediaFormatFields
mediaformat_jfields
=
{
0
};
struct
JNIAMediaFormatFields
mediaformat_jfields
=
{
0
};
jobject
format
=
NULL
;
jobject
codec
=
NULL
;
jobject
codec_name
=
NULL
;
jobject
codec_name
=
NULL
;
jobject
info
=
NULL
;
jobject
info
=
NULL
;
...
@@ -571,14 +569,6 @@ done_with_info:
...
@@ -571,14 +569,6 @@ done_with_info:
}
}
done:
done:
if
(
format
)
{
(
*
env
)
->
DeleteLocalRef
(
env
,
format
);
}
if
(
codec
)
{
(
*
env
)
->
DeleteLocalRef
(
env
,
codec
);
}
if
(
codec_name
)
{
if
(
codec_name
)
{
(
*
env
)
->
DeleteLocalRef
(
env
,
codec_name
);
(
*
env
)
->
DeleteLocalRef
(
env
,
codec_name
);
}
}
...
...
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