mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-23 19:31:39 +00:00
include lib_ccx.h instead of ccextractor.h
This commit is contained in:
parent
8e940b050a
commit
38d2088db5
@ -3,7 +3,7 @@ Credits: See CHANGES.TXT
|
||||
License: GPL 2.0
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "configuration.h"
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
|
@ -3,7 +3,7 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <gpac/isomedia.h>
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "utility.h"
|
||||
#include "ccx_encoders_common.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "ccx_encoders_common.h"
|
||||
#include "png.h"
|
||||
#include "spupng_encoder.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "ccx_encoders_common.h"
|
||||
#include "png.h"
|
||||
#include "spupng_encoder.h"
|
||||
|
@ -1,6 +1,6 @@
|
||||
#ifndef __608_SPUPNG_H__
|
||||
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "spupng_encoder.h"
|
||||
#include "ccx_encoders_common.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "ccx_encoders_common.h"
|
||||
#include "png.h"
|
||||
#include "spupng_encoder.h"
|
||||
|
@ -1,7 +1,7 @@
|
||||
/* This file contains functions that report the user of the GUI of
|
||||
relevant events. */
|
||||
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
|
||||
static int credits_shown=0;
|
||||
unsigned long net_activity_gui=0;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "asf_constants.h"
|
||||
|
||||
// Indicate first / subsequent calls to asf_getmoredata()
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include <math.h>
|
||||
|
||||
// Functions to parse a AVC/H.264 data stream, see ISO/IEC 14496-10
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
|
||||
// Hold functions to read streams on a bit or byte oriented basis
|
||||
// plus some data related helper functions.
|
||||
|
@ -1,4 +1,3 @@
|
||||
//#include "ccextractor.h"
|
||||
#include "ccx_decoders_common.h"
|
||||
#include "ccx_encoders_common.h"
|
||||
#include "spupng_encoder.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "configuration.h"
|
||||
#include <stddef.h>
|
||||
#define CNF_FILE "ccextractor.cnf"
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
#define MAX_LANGUAGE_PER_DESC 5
|
||||
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
// Functions to parse a mpeg-2 data stream, see ISO/IEC 13818-2 6.2
|
||||
|
||||
static int no_bitstream_error = 0;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
|
||||
|
||||
// Parse the user data for captions. The udtype variable denotes
|
||||
|
@ -13,7 +13,7 @@
|
||||
#include <libavutil/log.h>
|
||||
#include <libavutil/error.h>
|
||||
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
struct ffmpeg_ctx
|
||||
{
|
||||
AVFormatContext *ifmt;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
long FILEBUFFERSIZE = 1024*1024*16; // 16 Mbytes no less. Minimize number of real read calls()
|
||||
LLONG buffered_read_opt_file (unsigned char *buffer, unsigned int bytes);
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#ifdef _WIN32
|
||||
#include <io.h>
|
||||
#else
|
||||
|
@ -1,7 +1,7 @@
|
||||
/* This code comes from MythTV.
|
||||
For now, integration with ccextractor is a quick hack. It could get better with time. */
|
||||
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "ccx_decoders_608.h"
|
||||
#ifdef _WIN32
|
||||
#include <io.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "networking.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "png.h"
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#ifdef ENABLE_OCR
|
||||
#include "platform.h"
|
||||
#include "capi.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#ifdef _WIN32
|
||||
#include <io.h>
|
||||
#else
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "utility.h"
|
||||
|
||||
static int inputfile_capacity=0;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
|
||||
void params_dump(void)
|
||||
{
|
||||
|
@ -1,10 +1,10 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
|
||||
// Defined by the maximum number of B-Frames per anchor frame.
|
||||
//#define MAXBFRAMES 50 - from ccextractor.h
|
||||
//#define MAXBFRAMES 50 - from lib_ccx.h
|
||||
// They can be (temporally) before or after the anchor. Reserve
|
||||
// enough space.
|
||||
//#define SORTBUF (2*MAXBFRAMES+1) - from ccextractor.h
|
||||
//#define SORTBUF (2*MAXBFRAMES+1) - from lib_ccx.h
|
||||
// B-Frames can be (temporally) before or after the anchor
|
||||
int cc_data_count[SORTBUF];
|
||||
// Store fts;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#ifdef _WIN32
|
||||
#include <io.h>
|
||||
#else
|
||||
|
@ -28,7 +28,7 @@ Werner Brückner -- Teletext in digital television
|
||||
*/
|
||||
|
||||
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "hamming.h"
|
||||
#include "teletext.h"
|
||||
#include <signal.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
|
||||
unsigned char tspacket[188]; // Current packet
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
PMT specs: ISO13818-1 / table 2-28
|
||||
*/
|
||||
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "dvb_subtitle_decoder.h"
|
||||
#include "utility.h"
|
||||
static unsigned pmt_warning_shown=0; // Only display warning once
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <signal.h>
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
|
||||
static char *text;
|
||||
static int text_size=0;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "ccextractor.h"
|
||||
#include "lib_ccx.h"
|
||||
#include "wtv_constants.h"
|
||||
|
||||
int check_stream_id(int stream_id, int video_streams[], int num_streams);
|
||||
|
Loading…
Reference in New Issue
Block a user