OSDN Git Service

android-x86/external-opencore.git
15 years agoRe-apply part of perforce CL 131021, which was lost with a recent integrate from...
Marco Nelissen [Wed, 20 May 2009 16:02:18 +0000 (09:02 -0700)]
Re-apply part of perforce CL 131021, which was lost with a recent integrate from 

15 years agoRe-apply perforce CL 134361-p9, which was lost with a recent integrate from master.
Marco Nelissen [Wed, 20 May 2009 14:56:05 +0000 (07:56 -0700)]
Re-apply perforce CL 134361-p9, which was lost with a recent integrate from 

15 years agoMerge change 1964 into donut
Android (Google) Code Review [Tue, 19 May 2009 17:41:39 +0000 (10:41 -0700)]
Merge change 1964 into donut

* changes:
  RIO-6460: any pause/resume in the last audio frame will cause AMIO stuck.

15 years agoRIO-6460: any pause/resume in the last audio frame will cause AMIO stuck.
Jianhong Jiang [Tue, 19 May 2009 16:54:18 +0000 (09:54 -0700)]
RIO-6460: any pause/resume in the last audio frame will cause AMIO stuck.

15 years agoEnable AGC and noise suppression for MediaRecorder
Dave Sparks [Sat, 16 May 2009 00:27:57 +0000 (17:27 -0700)]
Enable AGC and noise suppression for MediaRecorder
Bug 1725543

15 years agoImprove audio quality of recordings by increasing AMR bitrate.
Dave Sparks [Thu, 14 May 2009 15:51:30 +0000 (08:51 -0700)]
Improve audio quality of recordings by increasing AMR bitrate.

15 years agoMerge change 1512 into donut
Android (Google) Code Review [Wed, 13 May 2009 16:59:39 +0000 (09:59 -0700)]
Merge change 1512 into donut

* changes:
  fix a tiny class design flaw in pvmf_omx_videodec_node.h change the access modifier to private for those methods that do not need to be visible outside of the class

15 years agofix a tiny class design flaw in pvmf_omx_videodec_node.h
James Dong [Wed, 13 May 2009 02:07:28 +0000 (19:07 -0700)]
fix a tiny class design flaw in pvmf_omx_videodec_node.h
change the access modifier to private for those methods that do not need to be visible outside of the class

15 years agoMerge change 1423 into donut
Android (Google) Code Review [Tue, 12 May 2009 21:34:50 +0000 (14:34 -0700)]
Merge change 1423 into donut

* changes:
  Fix OMX enc node memory leak. See also: https://android-git.corp.google.com/g/1396

15 years agoFix OMX enc node memory leak.
Jianhong Jiang [Tue, 12 May 2009 01:23:11 +0000 (18:23 -0700)]
Fix OMX enc node memory leak.
See also:
https://android-git.corp.google.com/g/1396

15 years agoMerge change 1415 into donut
Android (Google) Code Review [Tue, 12 May 2009 18:27:28 +0000 (11:27 -0700)]
Merge change 1415 into donut

* changes:
  NJ-1410 : Fix for large time taken to start playback after seek on youtube contents

15 years agoNJ-1410 : Fix for large time taken to start playback after seek on youtube contents
Sahil Sachdeva [Mon, 11 May 2009 23:55:51 +0000 (16:55 -0700)]
NJ-1410 : Fix for large time taken to start playback after seek on youtube contents

15 years agoMerge change 1421 into donut
Android (Google) Code Review [Tue, 12 May 2009 01:27:39 +0000 (18:27 -0700)]
Merge change 1421 into donut

* changes:
  Don't ignore exceptions in MediaScanner. The MediaScanner skips a directory when an error occurs while scanning the directory. This is reasonable if a file can't be read or something or a directory is not accessible. However, if a Java exception occurs, calling into Java again with a pending exception will cause the VM to be aborted. This change aborts processing and passes the Java exception back up to Jave for processing instead of continuing.

15 years agoDon't ignore exceptions in MediaScanner.
Dave Sparks [Tue, 12 May 2009 01:06:36 +0000 (18:06 -0700)]
Don't ignore exceptions in MediaScanner.
The MediaScanner skips a directory when an error occurs while scanning
the directory. This is reasonable if a file can't be read or something
or a directory is not accessible. However, if a Java exception occurs,
calling into Java again with a pending exception will cause the VM to be
aborted. This change aborts processing and passes the Java exception
back up to Jave for processing instead of continuing.

15 years agoMerge change 1295 into donut
Android (Google) Code Review [Mon, 11 May 2009 22:34:05 +0000 (15:34 -0700)]
Merge change 1295 into donut

* changes:
  RIO-6419, NJ-1416 Mp3 Progress Bar Hang Fix

15 years agoMerge change 1301 into donut
Android (Google) Code Review [Mon, 11 May 2009 17:15:32 +0000 (10:15 -0700)]
Merge change 1301 into donut

* changes:
  oscl tls registry race condition bug fix

15 years agooscl tls registry race condition bug fix
James Dong [Fri, 8 May 2009 23:56:37 +0000 (16:56 -0700)]
oscl tls registry race condition bug fix

If the tls registry is removed in a thread while another thread is accessing an item in the registry, this causes crashes

- the registry was not protected at all, and now protected with a lock
- there is no need for an individual lock on the key; and thus it is removed
- called unlock before return for getInstance() and registerInstance()

15 years agoMerge change 1162 into donut
Android (Google) Code Review [Mon, 11 May 2009 16:58:00 +0000 (09:58 -0700)]
Merge change 1162 into donut

* changes:
  OC2 oscl registry race condition The idea is to only initialize the singleton table for once and only once and keep it around forever. As a result, the lock for locking the whole singleton table is not needed and thus removed in this change. This approach works only if the client program follows the protocol for using the singleton: it must call initialize() first and then call the rest methods in this class.

15 years agoRIO-6419, NJ-1416 Mp3 Progress Bar Hang Fix
Sahil Sachdeva [Fri, 8 May 2009 21:50:40 +0000 (14:50 -0700)]
RIO-6419, NJ-1416 Mp3 Progress Bar Hang Fix

15 years agoOC2 oscl registry race condition
James Dong [Thu, 7 May 2009 18:33:37 +0000 (11:33 -0700)]
OC2 oscl registry race condition
The idea is to only initialize the singleton table for once and only once and keep it around forever.
As a result, the lock for locking the whole singleton table is not needed and thus removed in this change.
This approach works only if the client program follows the protocol for using the singleton:
it must call initialize() first and then call the rest methods in this class.

- changed the pointer to a singletontable to be a static object so that it is initialized statically
- removed an extra lock on the whole singletontable, since we don't need it
- moved initialize and cleanup to the header file for optimization. actually, these two methods can be removed. I put the removal of
  these two methods as a FIXME.

15 years agoFix the 2way build.
Jianhong Jiang [Fri, 8 May 2009 18:24:13 +0000 (11:24 -0700)]
Fix the 2way build.

15 years agoWe were logging media scanner failures, but not which file failed, which is not very...
Marco Nelissen [Mon, 4 May 2009 20:35:49 +0000 (13:35 -0700)]
We were logging media scanner failures, but not which file failed, which is not very useful.

15 years agoIncorporate all the changes in external/opencore in git master branch
James Dong [Fri, 1 May 2009 07:23:18 +0000 (00:23 -0700)]
Incorporate all the changes in external/opencore in git master branch
- add two patches for fixing thumbnail extraction and authoring compatibility
- remove 2way engine from system image
Not done yet (pending one fix from PV)

15 years agoBug fix(1807910): a crash in media recorder due to the use of locked camera
James Dong [Fri, 24 Apr 2009 22:51:59 +0000 (15:51 -0700)]
Bug fix(1807910): a crash in media recorder due to the use of locked camera
Sorry for the repeatedly review request because I messed up the git repo.

- change the signature of SetCamera() method to return a status code so that
  we can check the status of SetCamera() in authordriver.cpp
- change camera MIO (android_camera_input.cpp) to use create factory method
  for constructing a Camera client from a camera remote so that the status
  of the construction can be verified before we allow recording to proceed.
- change some LOGD statements to remove compiler warnings due to the use
  of %p for ssize_t variable "offset".
- change the call flow in authordriver.cpp to avoid code duplication
- fixed a bug in the previous change of the call flow

15 years agomerge cupcake into donut
Jean-Baptiste Queru [Thu, 23 Apr 2009 00:56:53 +0000 (17:56 -0700)]
merge cupcake into donut

15 years agoAI 144029: Don't send write complete until frame is no longer displayed
Dave Sparks [Wed, 1 Apr 2009 18:10:21 +0000 (11:10 -0700)]
AI 144029: Don't send write complete until frame is no longer displayed
  We seem to be overwriting video frames while they are being displayed.
  This change holds back an acknowledgement for the frame currently
  displayed until the next one is received. The final frame is released
  when EOS, stop, reset, flush, or cancel command is received.
  BUG=1749950

Automated import of CL 144029

15 years agoAI 144031: am: CL 144029 Don't send write complete until frame is no longer displayed
Dave Sparks [Wed, 1 Apr 2009 18:09:25 +0000 (11:09 -0700)]
AI 144031: am: CL 144029 Don't send write complete until frame is no longer displayed
  We seem to be overwriting video frames while they are being displayed.
  This change holds back an acknowledgement for the frame currently
  displayed until the next one is received. The final frame is released
  when EOS, stop, reset, flush, or cancel command is received.
  Original author: davidsparks
  Merged from: //branches/cupcake/...

Automated import of CL 144031

15 years agoAutomated import from //branches/donutburger/...@142712,142712
James Dong [Wed, 25 Mar 2009 23:38:59 +0000 (16:38 -0700)]
Automated import from //branches/donutburger/...@142712,142712

15 years agoAutomated import from //branches/cupcake/...@142601,142601
James Dong [Wed, 25 Mar 2009 22:09:11 +0000 (15:09 -0700)]
Automated import from //branches/cupcake/...@142601,142601

15 years agoAutomated import from //branches/donutburger/...@142513,142513
Dave Sparks [Wed, 25 Mar 2009 06:05:41 +0000 (23:05 -0700)]
Automated import from //branches/donutburger/...@142513,142513

15 years agoAutomated import from //branches/cupcake/...@142512,142512
Dave Sparks [Wed, 25 Mar 2009 06:05:19 +0000 (23:05 -0700)]
Automated import from //branches/cupcake/...@142512,142512

15 years agoAutomated import from //branches/donutburger/...@142071,142071
Andreas Huber [Wed, 25 Mar 2009 04:24:45 +0000 (21:24 -0700)]
Automated import from //branches/donutburger/...@142071,142071

15 years agoAutomated import from //branches/donutburger/...@141819,141819
Niko Catania [Wed, 25 Mar 2009 03:57:28 +0000 (20:57 -0700)]
Automated import from //branches/donutburger/...@141819,141819

15 years agoAutomated import from //branches/donutburger/...@140956,140956
James Dong [Wed, 25 Mar 2009 02:02:50 +0000 (19:02 -0700)]
Automated import from //branches/donutburger/...@140956,140956

15 years agoAutomated import from //branches/cupcake/...@142067,142067
Andreas Huber [Wed, 25 Mar 2009 01:57:22 +0000 (18:57 -0700)]
Automated import from //branches/cupcake/...@142067,142067

15 years agoAutomated import from //branches/cupcake/...@141816,141816
Niko Catania [Wed, 25 Mar 2009 01:26:16 +0000 (18:26 -0700)]
Automated import from //branches/cupcake/...@141816,141816

15 years agoAutomated import from //branches/donutburger/...@140524,140524
Niko Catania [Wed, 25 Mar 2009 00:50:54 +0000 (17:50 -0700)]
Automated import from //branches/donutburger/...@140524,140524

15 years agoauto import from //branches/cupcake_rel/...@141571
The Android Open Source Project [Fri, 20 Mar 2009 06:08:53 +0000 (23:08 -0700)]
auto import from //branches/cupcake_rel/...@141571

15 years agoauto import from //branches/cupcake_rel/...@140373
The Android Open Source Project [Thu, 19 Mar 2009 00:39:44 +0000 (17:39 -0700)]
auto import from //branches/cupcake_rel/...@140373

15 years agoauto import from //branches/cupcake_rel/...@138607
The Android Open Source Project [Fri, 13 Mar 2009 20:04:21 +0000 (13:04 -0700)]
auto import from //branches/cupcake_rel/...@138607

15 years agoauto import from //branches/cupcake/...@137873
The Android Open Source Project [Wed, 11 Mar 2009 19:11:55 +0000 (12:11 -0700)]
auto import from //branches/cupcake/...@137873

15 years agoauto import from //branches/cupcake/...@137197
The Android Open Source Project [Mon, 9 Mar 2009 18:52:12 +0000 (11:52 -0700)]
auto import from //branches/cupcake/...@137197

15 years agoauto import from //depot/cupcake/@136654
The Android Open Source Project [Fri, 6 Mar 2009 01:04:47 +0000 (17:04 -0800)]
auto import from //depot/cupcake/@136654

15 years agoauto import from //depot/cupcake/@136594
The Android Open Source Project [Thu, 5 Mar 2009 22:34:31 +0000 (14:34 -0800)]
auto import from //depot/cupcake/@136594

15 years agoauto import from //depot/cupcake/@135843
The Android Open Source Project [Wed, 4 Mar 2009 03:30:11 +0000 (19:30 -0800)]
auto import from //depot/cupcake/@135843

15 years agoauto import from //depot/cupcake/@135843
The Android Open Source Project [Wed, 4 Mar 2009 02:28:32 +0000 (18:28 -0800)]
auto import from //depot/cupcake/@135843

15 years agoauto import from //depot/cupcake/@132589
The Android Open Source Project [Tue, 3 Mar 2009 22:04:13 +0000 (14:04 -0800)]
auto import from //depot/cupcake/@132589

15 years agoauto import from //depot/cupcake/@137055
The Android Open Source Project [Tue, 3 Mar 2009 06:54:28 +0000 (22:54 -0800)]
auto import from //depot/cupcake/@137055

15 years agoauto import from //branches/cupcake/...@132276
The Android Open Source Project [Thu, 19 Feb 2009 18:57:30 +0000 (10:57 -0800)]
auto import from //branches/cupcake/...@132276

15 years agoauto import from //branches/cupcake/...@131421
The Android Open Source Project [Fri, 13 Feb 2009 20:57:49 +0000 (12:57 -0800)]
auto import from //branches/cupcake/...@131421

15 years agoauto import from //branches/cupcake/...@130745
The Android Open Source Project [Tue, 10 Feb 2009 23:43:59 +0000 (15:43 -0800)]
auto import from //branches/cupcake/...@130745

15 years agoauto import from //branches/cupcake/...@127101
The Android Open Source Project [Tue, 20 Jan 2009 22:03:57 +0000 (14:03 -0800)]
auto import from //branches/cupcake/...@127101

15 years agoauto import from //branches/cupcake/...@126645
The Android Open Source Project [Fri, 16 Jan 2009 00:12:08 +0000 (16:12 -0800)]
auto import from //branches/cupcake/...@126645

15 years agoauto import from //branches/cupcake/...@125939
The Android Open Source Project [Sat, 10 Jan 2009 01:51:21 +0000 (17:51 -0800)]
auto import from //branches/cupcake/...@125939

15 years agoCode drop from //branches/cupcake/...@124589
The Android Open Source Project [Thu, 18 Dec 2008 02:04:45 +0000 (18:04 -0800)]
Code drop from //branches/cupcake/...@124589

15 years agoInitial Contribution
The Android Open Source Project [Tue, 21 Oct 2008 14:00:00 +0000 (07:00 -0700)]
Initial Contribution