vlc | branch: master | Marvin Scholz <[email protected]> | 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 _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
