libobs: Update libcaption library

(This commit also modifies deps/libcaption)

Closes obsproject/obs-studio#1354
This commit is contained in:
Matthew Szatmary
2018-06-28 11:22:44 -07:00
committed by jp9000
parent f84e490ebe
commit a8517f3698
49 changed files with 3275 additions and 7665 deletions

21
deps/libcaption/caption/dvtcc.h vendored Normal file
View File

@@ -0,0 +1,21 @@
#ifndef LIBCAPTION_CEA708_H
#define LIBCAPTION_CEA708_H
#ifdef __cplusplus
extern "C" {
#endif
////////////////////////////////////////////////////////////////////////////////
struct dtvcc_packet_t {
unsigned int sequence_number;
unsigned int packet_size;
unsigned int serice_number;
};
#defing DVTCC_SERVICE_NUMBER_UNKNOWN
// static inline size_t dvtvcc_packet_size_bytes(const struct dtvcc_packet_t *dvtcc) { return dvtcc->packet_size*2-1;}
////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif
#endif