Mike Habicher
|
01d4c2e813
|
Bug 807058 - Expose thumbnail size capability and control properties. r=sotaro, r=jst
|
2013-10-30 15:41:08 -04:00 |
|
Mike Habicher
|
5dd647c3a6
|
Bug 834164 - handle aDataPtr == nullptr in camera driver DataCallback, r=cjones
|
2013-01-24 13:41:18 -05:00 |
|
Sotaro Ikeda
|
7922e181f4
|
Bug 803471 - Part 5c - Cange GonkCamera to use android::Camera. r=mhabicher
|
2013-03-08 14:43:33 -05:00 |
|
Sotaro Ikeda
|
b4d9c3d0b1
|
Bug 826072 - Dispatch Init() out of nsGonkCameraControl's constructor. r=mikeh
|
2013-02-16 14:05:45 -05:00 |
|
Olli Pettay
|
b9080a0df7
|
Bug 839528 - Change the namespace of xpidl dictionary helpers, r=khuey
|
2013-02-11 21:37:50 +02:00 |
|
Mike Habicher
|
521925ef88
|
Bug 825986 - propagate startRecording() return code instead of asserting; clean up GonkRecorder lifecycle management, r=kanru
|
2013-01-08 10:11:32 +01:00 |
|
Mike Habicher
|
0c6c027935
|
Bug 820139 - Ensure video recorder exists before trying to start recording. r=kchen
|
2012-12-23 10:56:59 -05:00 |
|
Mike Habicher
|
7ab344aefb
|
Bug 818933 - Provide a hardware release API so that we don't have to rely on CC of CameraControl objects. r=mhabicher
|
2012-12-23 10:54:54 -05:00 |
|
Mike Habicher
|
2d7844ee84
|
Bug 817496 - Notify DeviceStorage when a new video file is finished recording. r=dougt
|
2012-12-04 21:00:39 -05:00 |
|
Benoit Jacob
|
c248c79c55
|
Bug 798033 - adapt dom/camera code to not relying on headers to do using namespace - r=mhabicher
|
2012-11-12 19:06:31 -05:00 |
|
Matt Joras
|
da70d3f085
|
Bug 798033 - Removes 'using namespace' from dom headers - r=khuey
|
2012-11-10 10:45:52 -05:00 |
|
Ryan VanderMeulen
|
30d168a3da
|
Backed out changeset 5054c2552a30 (bug 798033) for b2g bustage.
|
2012-11-10 11:52:15 -05:00 |
|
Matt Joras
|
80ff2e8190
|
Bug 798033 - Removes 'using namespace' from dom headers - r=khuey
|
2012-11-10 10:45:52 -05:00 |
|
Mike Habicher
|
266e0bab6c
|
Bug 810440 - Add missing rotation parameter to SetupRecording function call, drop default parameter values. r=daleharvey
|
2012-11-09 20:32:10 -05:00 |
|
Mike Habicher
|
39bf4c9296
|
Bug 808099 - Write the correct rotational meta-data to the video stream. r=cjones
|
2012-11-06 22:32:01 -05:00 |
|
Mike Habicher
|
854c16fccb
|
Bug 808030 - Make camera default to smallest non-0x0 thumbnail size with reduced quality. r=cjones
|
2012-11-02 19:53:40 -04:00 |
|
Mike Habicher
|
d390a1808b
|
Bug 801693 - Plumb video recorder state-change (error, size/length limit) handling. r=jst
|
2012-11-02 16:11:50 -04:00 |
|
Mike Habicher
|
249302d897
|
Bug 795379 - Add support for getting and setting video recording profiles. r=jst
|
2012-10-23 18:30:28 -04:00 |
|
Nathan Froyd
|
dd427057c4
|
Bug 798573 - remove prtypes.h #includes in dom/; r=ehsan
|
2012-10-05 17:28:24 -04:00 |
|
Ehsan Akhgari
|
f0a3f6136f
|
Bug 579517 follow-up: Remove NSPR types that crept in
|
2012-10-01 16:04:09 -04:00 |
|
Mike Habicher
|
737adc7dfa
|
Bug 779145 - Add support for unsoliciated onShutter and onClosed callbacks, handle OnNavigation to clean-up. r=jst
|
2012-09-30 20:37:47 -04:00 |
|
Inder Kumar ext:(%20and%20Mike%20Habicher%20%3Cmhabicher%40mozilla.com%3E)
|
6d9d08d1fd
|
Bug 776062: Add support for recording video on gonk. r=cjones,double,ikumar,mikeh sr=sicking
|
2012-09-28 22:30:52 -07:00 |
|
Mike Habicher
|
6ae700c29b
|
Bug 779139 - Make DOM-facing camera objects cycle collection participants. r=jst
--HG--
rename : dom/camera/CameraControl.h => dom/camera/CameraControlImpl.h
rename : dom/camera/GonkCameraCapabilities.cpp => dom/camera/DOMCameraCapabilities.cpp
|
2012-09-04 21:01:56 -04:00 |
|
Ehsan Akhgari
|
e368dc9c85
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Kan-Ru Chen
|
4e3b4c5d63
|
Bug 757341 - Camera direct texturing with async video. r=cjones
|
2012-08-17 18:56:55 +08:00 |
|
Mike Habicher
|
9e245cc9a4
|
Bug 740997 - ICS camera support, r=jst,gal,roc
|
2012-07-30 17:59:05 -04:00 |
|