1. b8763f6 Bug 3012968 DRM output control by Glenn Kasten · 14 years ago
  2. b928983 Handle some edge cases when seeking while starting up OMXCodec by Andreas Huber · 13 years ago
  3. 5f3ab06 Make sure that key frame is generated for timelapse video recording if there are at least two input video frames from camera source. by James Dong · 14 years ago
  4. 5e9dc94 Properly rotate video that's marked as such and decoded to a surface. by Andreas Huber · 14 years ago
  5. 681e89c Avoid deadlock in OMX::freeNode by making sure OMXCodecObserver does not hold the last reference of OMXCodec object by James Dong · 14 years ago
  6. 2144f63 Revert "Allows the authoring engine to skip frame." by James Dong · 14 years ago
  7. bbbcf65 Better buffer status management and verification in OMXCodec. by Andreas Huber · 14 years ago
  8. d781089 Add color format query support to QueryCodecs() by James Dong · 14 years ago
  9. 31b9375f Fix memory leak when 0-memcpy quirk is used by James Dong · 14 years ago
  10. 05c2fd5 Use meta data in the media recording framework by James Dong · 14 years ago
  11. f0c5c1e Fix a MediaBuffer leak in Stagefright. by Jamie Gennis · 14 years ago
  12. 170a929 Add two creation flags to OMXCodec::Create() by James Dong · 14 years ago
  13. 58a36ad Add decode-to-ANativeWindow support to Stagefright. by Jamie Gennis · 14 years ago
  14. 5a40e39 For thumbnail extraction make sure we instantiate a decoder that allows access to the framebuffer. Implement the samsung workaround to support this by reconfiguring the decoder. by Andreas Huber · 14 years ago
  15. 4c19bf9 Work to support switching transport streams mid-stream and signalling discontinuities to the decoder. by Andreas Huber · 14 years ago
  16. 1e19416 On this particular device the hardware video decoder spits out buffers that don't actually contain our video data, so we cannot use them to restore the video frame after suspend/resume. by Andreas Huber · 14 years ago
  17. 90862e2 Workaround for a QCOM issue where the output buffer size advertised by the AVC encoder by James Dong · 14 years ago
  18. afd97e8 Use the target color format from the camera source if possible by James Dong · 14 years ago
  19. 53d4e0d Allows the authoring engine to skip frame. by James Dong · 14 years ago
  20. 6624c9f Support finer seek control on MediaSources. by Andreas Huber · 14 years ago
  21. 81c929a Allow application to set two more encoding paramters: video profile and level by James Dong · 14 years ago
  22. c0ab2a6 Added encoding parameters set up for H263 video encoder by James Dong · 14 years ago
  23. 1f24b30 Support "pausing" of MediaSources with the effect that they no longer pull on their upstream source until a subsequent read-with-seek. by Andreas Huber · 14 years ago
  24. 1244eab Remove some hard-coded encoding parameters by James Dong · 14 years ago
  25. 4f501f0 Second part of speeding up video recording frame rate by James Dong · 14 years ago
  26. 17299ab Initial software encoder checkins by James Dong · 14 years ago
  27. a4357ad Coalesce multiple encoded AAC frames into a single input buffer on this particular OMX codec to increase throughput significantly. by Andreas Huber · 14 years ago
  28. 2a09c7e Properly handle errors during the codec configuration phase, attempt to revert to next available (likely software-) codec if configuration fails. by Andreas Huber · 14 years ago
  29. d7d22eb Propagate errors all the way through the MediaSources and send either MEDIA_PLAYBACK_COMPLETE or MEDIA_ERROR depending on the final reason for running out of buffers to play back. by Andreas Huber · 14 years ago
  30. b8de957 This hardware video decoder lies about its required input buffer sizes allocating 2.7 MB of memory instead of the required 176 KB... Added another quirk. by Andreas Huber · 14 years ago
  31. e331c7b The TI MP3 decoder lies about the number of channels it outputs, add a quirk for that. by Andreas Huber · 15 years ago
  32. 52733b8 The qcom OMX video decoders do not allocate output buffer memory at the time OMX_AllocateBuffer is called, wait until we received the first FILL_BUFFER_DONE notification until we rely on the buffer data ptr. by Andreas Huber · 15 years ago
  33. c712b9f Fix no-copy-overhead OMXCodec implementation to actually work. by Andreas Huber · 15 years ago
  34. f1fe064 Avoid unnecessary buffer copying if at all possible, detect if running in the mediaserver process. by Andreas Huber · 15 years ago
  35. 91eb035 Change OMXCodec::Create to return an sp<MediaSource> instead of an sp<OMXCodec>, this is more general and does not sacrifice any functionality as the remaining OMXCodec APIs are not meant to be public anyway. by Andreas Huber · 15 years ago
  36. 8768f2c A small sample tool to encode pcm audio data to amr, decode it again and play it. Some changes to OMXCodec to properly configure the AMR decoder(s). by Andreas Huber · 15 years ago
  37. ea6a38c Squashed commit of the following: by Andreas Huber · 15 years ago
  38. b482ce8 Revive support for video encoding in OMXCodec. by Andreas Huber · 15 years ago
  39. e13526a Prefer software decoders over hardware for thumbnail extraction. by Andreas Huber · 15 years ago
  40. f68c168 Some cleanup of OMXCodec code, make sure to ignore 0-length output buffers in the metadata retriever. by Andreas Huber · 15 years ago
  41. cfd5557 OMXCodec now notifies the reader of changes in the output format by returning a special result/error code. by Andreas Huber · 15 years ago
  42. cd74c0d The vendor is about to check in a fix for this issue, the workaround is no longer needed by Andreas Huber · 15 years ago
  43. 8b432b1 Workaround for avc decoder misreporting output buffer size requirements if the content is not a multiple-16 width/height. by Andreas Huber · 15 years ago
  44. e6c4096 Media MIME types now have corresponding constants in MediaDefs.h, new codec enumeration API. by Andreas Huber · 15 years ago
  45. ee606e6 Support encoding amr-wb content in stagefright. by Andreas Huber · 15 years ago
  46. 4c48342 Setting the component role appears to be mandatory now for all mime types. by Andreas Huber · 15 years ago
  47. da050cf2 Some work to make audio encoding work. by Andreas Huber · 15 years ago
  48. 43ad6eaf Squashed commit of the following: by Andreas Huber · 15 years ago
  49. 42978e5 An attempt to fix a deadlock between OMXCodec::start and upstream ::read by Andreas Huber · 15 years ago
  50. 127fcdc Another quirk, some OMX components fail to properly flush before shutdown and we must do it for them... by Andreas Huber · 15 years ago
  51. 446f44f Keep up with latest changes to overlay handling on that unnamable platform. by Andreas Huber · 15 years ago
  52. 404cc41 Make sure not to ask for more buffers when we know that there won't be any, added a quirk for the aac decoder. by Andreas Huber · 15 years ago
  53. 5c0a913 Dynamically allocate a pair of MemoryHeaps according buffer count/sizes required by the OMX component, respect JPEG compressed size. by Andreas Huber · 15 years ago
  54. 4f5e602 The PV AVC software decoder expects each fragment of a NAL unit to be handed to the decoder unframed. by Andreas Huber · 15 years ago
  55. be06d26 Squashed commit of the following: by Andreas Huber · 15 years ago