This repository has been archived by the owner on Jul 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
ff_private.h
123 lines (103 loc) · 4.5 KB
/
ff_private.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*****************************************************************************
*
* Avi Import Component Private Header
*
* Copyright(C) 2006 Christoph Naegeli <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
****************************************************************************/
#ifndef __FF_PRIVATE__
#define __FF_PRIVATE__
#include <QuickTime/Movies.h>
#include <libavformat/avformat.h>
/* Data structres needed for import */
struct _NCStream {
int index;
Boolean valid;
AVStream *str;
SampleDescriptionHandle sampleHdl;
AudioStreamBasicDescription asbd;
Media media;
UInt32 vbr;
AVRational base;
int64_t lastdts;
SampleReference64Ptr sampleTable;
SampleReference64Record lastSample;
TimeValue duration;
int64_t timeByDurations, timeByFrames;
};
typedef struct _NCStream NCStream;
// this used to live in ff_MovieImport.c, but it had to move here for idling support
struct _ff_global_context {
Movie movie;
ComponentInstance ci;
OSType componentType;
/* For feedback during import */
MovieProgressUPP prog;
long refcon;
/* for overwriting the default sample descriptions */
ImageDescriptionHandle imgHdl;
SoundDescriptionHandle sndHdl;
// things needed for idling support
Track placeholderTrack;
DataHandler dataHandler;
bool isStreamed;
Boolean dataHandlerSupportsWideOffsets;
int64_t dataSize;
int largestPacketSize;
IdleManager idleManager;
long movieLoadState;
TimeValue loadedTime;
TimeValue lastIdleTime;
int idlesSinceLastAdd;
//the "atTime" parameter to the initial import.
TimeValue atTime;
// libavcodec fun.
AVInputFormat *format;
AVFormatContext *format_context;
NCStream *stream_map;
int map_count;
int64_t header_offset;
AVPacket firstFrames[16];
};
typedef struct _ff_global_context ff_global_context;
typedef ff_global_context *ff_global_ptr;
/* Utilities */
ComponentResult check_system();
/* Public interface of the DataRef interface */
OSStatus url_open_dataref(AVIOContext **pb, Handle dataRef, OSType dataRefType, DataHandler *dataHandler, Boolean *wideSupport, int64_t *dataSize);
/* Import routines */
int prepare_track(ff_global_ptr storage, Track targetTrack, Handle dataRef, OSType dataRefType);
OSStatus prepare_movie(ff_global_ptr storage, Movie theMovie, Handle dataRef, OSType dataRefType);
void initialize_video_map(NCStream *map, Track targetTrack, Handle dataRef, OSType dataRefType, AVPacket *firstFrame);
OSStatus initialize_audio_map(NCStream *map, Track targetTrack, Handle dataRef, OSType dataRefType, AVPacket *firstFrame);
int determine_header_offset(ff_global_ptr storage);
int import_using_index(ff_global_ptr storage, int *hadIndex, TimeValue *addedDuration);
ComponentResult import_with_idle(ff_global_ptr storage, long inFlags, long *outFlags, int minFrames, int maxFrames, bool addSamples);
ComponentResult create_placeholder_track(Movie movie, Track *placeholderTrack, TimeValue duration, Handle dataRef, OSType dataRefType);
void send_movie_changed_notification(Movie movie);
OSType map_video_codec_to_mov_tag(enum CodecID codec_id);
OSType forced_map_video_codec_to_mov_tag(enum CodecID codec_id);
void map_avi_to_mov_tag(enum CodecID codec_id, AudioStreamBasicDescription *asbd, NCStream *map, int channels);
uint8_t *create_cookie(AVCodecContext *codec, size_t *cookieSize, UInt32 formatID, int vbr);
Handle create_strf_ext(AVCodecContext *codec);
void set_track_clean_aperture_ext(ImageDescriptionHandle imgDesc, Fixed displayW, Fixed displayH, Fixed pixelW, Fixed pixelH);
void set_track_colorspace_ext(ImageDescriptionHandle imgDescHandle, Fixed displayW, Fixed displayH);
#define BSWAP(a) ( (((a)&0xff) << 24) | (((a)&0xff00) << 8) | (((a)&0xff0000) >> 8) | (((a) >> 24) & 0xff) )
#define IS_AVI(x) (x == 'AVI ' || x == 'VfW ' || x == 'VFW ' || x == 'DIVX' || x == 'GVI ' || x == 'VP6 ')
#define IS_NUV(x) (x == 'NUV ')
#define IS_FLV(x) (x == 'FLV ')
#endif