~ubuntu-branches/ubuntu/utopic/libav/utopic-proposed

« back to all changes in this revision

Viewing changes to libavformat/movenc.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler, Reinhard Tartler, Rico Tzschichholz
  • Date: 2014-08-30 11:02:45 UTC
  • mfrom: (1.3.47 sid)
  • Revision ID: package-import@ubuntu.com-20140830110245-io3dg7q85wfr7125
Tags: 6:11~beta1-2
[ Reinhard Tartler ]
* Make libavcodec-dev depend on libavresample-dev

[ Rico Tzschichholz ]
* Some fixes and leftovers from soname bumps

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
    int         language;
92
92
    int         track_id;
93
93
    int         tag; ///< stsd fourcc
 
94
    AVStream        *st;
94
95
    AVCodecContext *enc;
95
96
 
96
97
    int         vos_len;
161
162
    int64_t reserved_moov_pos;
162
163
 
163
164
    char *major_brand;
 
165
 
 
166
    int per_stream_grouping;
 
167
    AVFormatContext *fc;
164
168
} MOVMuxContext;
165
169
 
166
170
#define FF_MOV_FLAG_RTP_HINT 1
172
176
#define FF_MOV_FLAG_ISML 64
173
177
#define FF_MOV_FLAG_FASTSTART 128
174
178
#define FF_MOV_FLAG_OMIT_TFHD_OFFSET 256
 
179
#define FF_MOV_FLAG_DISABLE_CHPL 512
175
180
 
176
181
int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt);
177
182