[vlc-commits] vlc_common: move decoder_synchro_t to synchro.h
Marvin Scholz
git at videolan.org
Thu Mar 26 09:17:31 CET 2020
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Sat Dec 21 03:23:27 2019 +0100| [d18cd34a4983b4e6c04ad96188b4a31c7788da7f] | committer: Marvin Scholz
vlc_common: move decoder_synchro_t to synchro.h
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d18cd34a4983b4e6c04ad96188b4a31c7788da7f
---
include/vlc_common.h | 1 -
modules/codec/synchro.h | 2 ++
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/vlc_common.h b/include/vlc_common.h
index cb4d49a0e2..222ce81bc4 100644
--- a/include/vlc_common.h
+++ b/include/vlc_common.h
@@ -409,7 +409,6 @@ typedef struct session_descriptor_t session_descriptor_t;
/* Decoders */
typedef struct decoder_t decoder_t;
-typedef struct decoder_synchro_t decoder_synchro_t;
/* Encoders */
typedef struct encoder_t encoder_t;
diff --git a/modules/codec/synchro.h b/modules/codec/synchro.h
index e7f984a0a0..811ecd83e8 100644
--- a/modules/codec/synchro.h
+++ b/modules/codec/synchro.h
@@ -25,6 +25,8 @@
/*****************************************************************************
* decoder_synchro_t : timers for the video synchro
*****************************************************************************/
+typedef struct decoder_synchro_t decoder_synchro_t;
+
/* Read the discussion on top of synchro.c for more information. */
/* Pictures types */
#define I_CODING_TYPE 1
More information about the vlc-commits
mailing list