gecko-dev/media
Nathan Froyd 70d7688ee3 Bug 1251714 - use UniquePtr instead of ScopedDeletePtr in media/; r=jesup
UniquePtr is more standard than ScopedDeletePtr; using standard
constructs whenever possible is preferable.

This patch merits a couple explanations:

- Where it made sense, I tried to convert:

    T* foo() {
      UniquePtr<T> x = ...;
      ...
      return x.release();
    }

  into:

    UniquePtr<T> foo()

  with corresponding changes inside |foo|'s body.

- The attentive reader will note that:

    auto x = MakeUnique<T>(...);

  is used sometimes and:

    UniquePtr<T> x(new T(...));

  is used sometimes.  I would prefer to use the former, but was stymied
  in several places due to protected constructors.  (MakeUnique doesn't
  have access to those protected constructors, natch.)
2016-02-26 14:52:15 -05:00
..
ffvpx Bug 1248483: Resync FFvpx to n3.0-1-g0aa2fbd. r=kentuckyfriedtakahe 2016-02-18 11:34:06 +11:00
gmp-clearkey/0.1 Bug 1232527 - Call into WMF PDM to determine if WMF can decode instead of using GMPVideoDecoderTrialCreator. r=jwwang 2015-12-15 14:50:59 +13:00
kiss_fft Bug 1216444 - Remove GKMEDIAS_SHARED_LIBRARY. r=mshal 2015-10-21 14:47:22 +09:00
libav Bug 1222166 - use gcc/clang warning flags for clang-cl in moz.build files; r=glandium 2015-11-05 16:05:26 -05:00
libcubeb Bug 1243275: Update libcubeb to pick up device-change-notification changes and a pulse fix rs=kinetik 2016-01-27 07:57:35 -05:00
libjpeg Bug 1216444 - Remove GKMEDIAS_SHARED_LIBRARY. r=mshal 2015-10-21 14:47:22 +09:00
libmkv Bug 1232219 (part 3) - Fix remaining -Wunused warnings. r=glandium. 2015-12-16 22:57:51 -08:00
libnestegg Bug 1251504 - Update libnestegg to remove generated nestegg-stdint.h. r=giles 2016-02-26 15:38:14 +13:00
libogg Bug 1216444 - Remove GKMEDIAS_SHARED_LIBRARY. r=mshal 2015-10-21 14:47:22 +09:00
libopus Bug 1242120 - Remove switch fallthrough to avoid -Wimplicit-fallthrough warning in dom/canvas/. r=mtseng 2016-01-22 21:36:49 -08:00
libpng Bug 1230757 - Update in-tree libpng to version 1.6.21. r=seth 2016-01-16 09:27:00 -05:00
libsoundtouch Bug 1236937 - Use correct value for Pi in AAFilter.cpp. r=padenot 2016-01-12 12:10:17 +01:00
libspeex_resampler Bug 1216444 - Remove GKMEDIAS_SHARED_LIBRARY. r=mshal 2015-10-21 14:47:22 +09:00
libstagefright Bug 1231793: Part 1 - Added read functions for Little Endian integers to ByteReader.h. r=jya 2016-02-17 00:28:48 +11:00
libtheora Bug 1222166 - use gcc/clang warning flags for clang-cl in moz.build files; r=glandium 2015-11-05 16:05:26 -05:00
libtremor Bug 1232219 (part 3) - Fix remaining -Wunused warnings. r=glandium. 2015-12-16 22:57:51 -08:00
libvorbis Bug 1216444 - Remove GKMEDIAS_SHARED_LIBRARY. r=mshal 2015-10-21 14:47:22 +09:00
libvpx bug 1242991 correct vpx include path and vpx/svc_context.h visibilty r=glandium 2016-02-05 12:06:11 +13:00
libyuv Bug 1153849 - Use MOZ_JPEG_CFLAGS when build libyuv with system jpeg. r=jesup 2016-01-21 23:19:13 +08:00
mtransport Bug 1251714 - use UniquePtr instead of ScopedDeletePtr in media/; r=jesup 2016-02-26 14:52:15 -05:00
omx-plugin Bug 1245035 - Move LOCAL_INCLUDES to moz.build in media/omx-plugin/lib/ics/libvideoeditorplayer. r=mshal 2016-02-03 08:41:24 +09:00
openmax_dl
openmax_il/il112 Bug 1224887: add OpenMax IL headers. r=jya 2015-12-08 15:57:46 +05:30
pocketsphinx Bug 1216444 - Remove GKMEDIAS_SHARED_LIBRARY. r=mshal 2015-10-21 14:47:22 +09:00
sphinxbase Bug 1216444 - Remove GKMEDIAS_SHARED_LIBRARY. r=mshal 2015-10-21 14:47:22 +09:00
webrtc Bug 1251714 - use UniquePtr instead of ScopedDeletePtr in media/; r=jesup 2016-02-26 14:52:15 -05:00
update-libjpeg.sh bug 1176196 - update libjpeg-turbo to 1.4.2. r=jrmuizel 2015-10-05 09:31:36 -04:00