diff options
author | Gilles-Arnaud Bleu-Laine <gilles@ti.com> | 2011-09-15 21:30:13 -0500 |
---|---|---|
committer | Andreas Huber <andih@google.com> | 2011-09-30 10:46:12 -0700 |
commit | 9a6ed36ba55a206934937cfafca7e797e8c6ea00 (patch) | |
tree | 5a4edaf522cfaa16037f4298d842602bafe9df32 /include | |
parent | 1402bb19012d4fc7595da2586bec9e6f428b36fb (diff) | |
download | frameworks_base-9a6ed36ba55a206934937cfafca7e797e8c6ea00.zip frameworks_base-9a6ed36ba55a206934937cfafca7e797e8c6ea00.tar.gz frameworks_base-9a6ed36ba55a206934937cfafca7e797e8c6ea00.tar.bz2 |
Gracefuly return on detecting wrong AAC format from corrupted files
Return BAD_VALUE error upon detection of wrongly formatted files.
The client should abort the initialization upon error detection.
The current CHECK() interrupts the configurecodec() preventing a graceful
exit.
Change-Id: Ic79313fa76a63284897df5d91635de87d06f3100
Signed-off-by: Gilles-Arnaud Bleu-Laine <gilles@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/media/stagefright/OMXCodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/stagefright/OMXCodec.h b/include/media/stagefright/OMXCodec.h index 8baf5ec..21b8c74 100644 --- a/include/media/stagefright/OMXCodec.h +++ b/include/media/stagefright/OMXCodec.h @@ -228,7 +228,7 @@ private: void setComponentRole(); void setAMRFormat(bool isWAMR, int32_t bitRate); - void setAACFormat(int32_t numChannels, int32_t sampleRate, int32_t bitRate); + status_t setAACFormat(int32_t numChannels, int32_t sampleRate, int32_t bitRate); void setG711Format(int32_t numChannels); status_t setVideoPortFormatType( |