projects
/
platform
/
core
/
api
/
mediacodec.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a11793
)
fixed svace issue
27/126527/1
submit/tizen/20170424.103917
author
Sejun Park
<sejun79.park@samsung.com>
Mon, 24 Apr 2017 04:33:01 +0000
(13:33 +0900)
committer
Sejun Park
<sejun79.park@samsung.com>
Mon, 24 Apr 2017 04:33:01 +0000
(13:33 +0900)
Change-Id: Ifa8e4f545798eb8379d9595fe27a274667201736
test/media_codec_test.c
patch
|
blob
|
history
diff --git
a/test/media_codec_test.c
b/test/media_codec_test.c
index c9dad16b23e74a14d3b3b2bb420ff81cc9246f2f..e94e0118bf9b4fdd36831b7535eefe5ed2cca645 100755
(executable)
--- a/
test/media_codec_test.c
+++ b/
test/media_codec_test.c
@@
-655,9
+655,10
@@
void mp3dec_extractor(App *app, unsigned char **data, int *size, bool *have_fram
bitrate = (header >> 12) & 0xF;
hdr_bitrate = mp3types_bitrates[lsf][layer - 1][bitrate] * 1000;
/* The caller has ensured we have a valid header, so bitrate can't be zero here. */
- if (hdr_bitrate == 0)
+ if (hdr_bitrate == 0)
{
*have_frame = FALSE;
return;
+ }
}
/* if it's an invalid samplerate */