summaryrefslogtreecommitdiffstats
path: root/media/libmedia/CharacterEncodingDetector.h
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2014-08-29 16:00:28 -0700
committerMarco Nelissen <marcone@google.com>2014-09-02 11:54:44 -0700
commit34581f44cde67960fbac3ba1f191a2c063ea5145 (patch)
tree9c89d859f2c9cd1c622355a767e3a7c57c658e8a /media/libmedia/CharacterEncodingDetector.h
parent9dd4a2ddd7caf8cbe50d8a76e0ec3e0274d2bce6 (diff)
downloadframeworks_av-34581f44cde67960fbac3ba1f191a2c063ea5145.zip
frameworks_av-34581f44cde67960fbac3ba1f191a2c063ea5145.tar.gz
frameworks_av-34581f44cde67960fbac3ba1f191a2c063ea5145.tar.bz2
Use CharacterEncodingDetector in metadataretriever
instead of media scanner. This way the java MediaMetadataRetriever API will give the same result as the media scanner. Also apply some tweaks to the encoding detector to improve handling of ISO-8859-1 tags. Bug: 16302581, 17205395 Change-Id: I1682a7a6a8bf04cffaa455044ba72dd7fd152d49
Diffstat (limited to 'media/libmedia/CharacterEncodingDetector.h')
-rw-r--r--media/libmedia/CharacterEncodingDetector.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/media/libmedia/CharacterEncodingDetector.h b/media/libmedia/CharacterEncodingDetector.h
deleted file mode 100644
index 7b5ed86..0000000
--- a/media/libmedia/CharacterEncodingDetector.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * Copyright (C) 2013 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef _CHARACTER_ENCODING_DETECTOR_H
-#define _CHARACTER_ENCODING_DETECTOR_H
-
-#include <media/mediascanner.h>
-
-#include "StringArray.h"
-
-#include "unicode/ucnv.h"
-#include "unicode/ucsdet.h"
-#include "unicode/ustring.h"
-
-namespace android {
-
-class CharacterEncodingDetector {
-
- public:
- CharacterEncodingDetector();
- ~CharacterEncodingDetector();
-
- void addTag(const char *name, const char *value);
- size_t size();
-
- void detectAndConvert();
- status_t getTag(int index, const char **name, const char**value);
-
- private:
- const UCharsetMatch *getPreferred(
- const char *input, size_t len,
- const UCharsetMatch** ucma, size_t matches,
- bool *goodmatch);
-
- bool isFrequent(const uint16_t *values, uint32_t c);
-
- // cached name and value strings, for native encoding support.
- // TODO: replace these with byte blob arrays that don't require the data to be
- // singlenullbyte-terminated
- StringArray mNames;
- StringArray mValues;
-
- UConverter* mUtf8Conv;
-};
-
-
-
-}; // namespace android
-
-#endif