diff options
author | Johns <johns98@gmx.net> | 2014-06-25 15:17:00 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2014-06-25 15:17:00 +0200 |
commit | 37f409cb9aae06c99a6dff910b1b1d9278190ef1 (patch) | |
tree | b9cc5937e1ab239098e0cc9bc6f6f96f89565580 /video.c | |
parent | 5207af6b2da0df19a58db4932811d38526fde51b (diff) | |
download | vdr-plugin-softhddevice-37f409cb9aae06c99a6dff910b1b1d9278190ef1.tar.gz vdr-plugin-softhddevice-37f409cb9aae06c99a6dff910b1b1d9278190ef1.tar.bz2 |
Use GCC built-in functions for atomic operations.
Diffstat (limited to 'video.c')
-rw-r--r-- | video.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -70,8 +70,6 @@ #define _(str) gettext(str) ///< gettext shortcut #define _N(str) str ///< gettext_noop shortcut -#include <alsa/iatomic.h> // portable atomic_t - #ifdef USE_VIDEO_THREAD #ifndef __USE_GNU #define __USE_GNU @@ -179,6 +177,7 @@ typedef enum #define FFMPEG_BUG1_WORKAROUND ///< get_format bug workaround #endif +#include "iatomic.h" // portable atomic_t #include "misc.h" #include "video.h" #include "audio.h" |