diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-05-02 01:32:05 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-05-02 01:32:05 +0200 |
commit | ced814784b055ce98204e74b54335f7a2f8ffe16 (patch) | |
tree | 62c5da15640219d90f70fd7b6493a10439148e70 /k9decmpeg/video_out.h | |
parent | 2456e6ce6123b5324d35c2192e38660d1cb3342d (diff) | |
download | k9copy-ced814784b055ce98204e74b54335f7a2f8ffe16.tar.gz k9copy-ced814784b055ce98204e74b54335f7a2f8ffe16.zip |
Fix FTBFS for build with --enable-final.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'k9decmpeg/video_out.h')
-rw-r--r-- | k9decmpeg/video_out.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/k9decmpeg/video_out.h b/k9decmpeg/video_out.h index 8962726..0189910 100644 --- a/k9decmpeg/video_out.h +++ b/k9decmpeg/video_out.h @@ -21,6 +21,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef VIDEO_OUT_H +#define VIDEO_OUT_H + struct mpeg2_sequence_s; struct mpeg2_convert_init_s; typedef struct { @@ -56,3 +59,5 @@ void vo_accel (uint32_t accel); /* return NULL terminated array of all drivers */ vo_driver_t const * vo_drivers (void); + +#endif /* VIDEO_OUT_H */ |