Commit 606a30c5 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'fe5d5a8f'

* commit 'fe5d5a8f':
  movenc: Make chapter track QuickTime compatible
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents d68adbd6 fe5d5a8f
...@@ -3382,7 +3382,7 @@ static int mov_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -3382,7 +3382,7 @@ static int mov_write_packet(AVFormatContext *s, AVPacket *pkt)
// QuickTime chapters involve an additional text track with the chapter names // QuickTime chapters involve an additional text track with the chapter names
// as samples, and a tref pointing from the other tracks to the chapter one. // as samples, and a tref pointing from the other tracks to the chapter one.
static void mov_create_chapter_track(AVFormatContext *s, int tracknum) static int mov_create_chapter_track(AVFormatContext *s, int tracknum)
{ {
AVIOContext *pb; AVIOContext *pb;
...@@ -3390,13 +3390,21 @@ static void mov_create_chapter_track(AVFormatContext *s, int tracknum) ...@@ -3390,13 +3390,21 @@ static void mov_create_chapter_track(AVFormatContext *s, int tracknum)
MOVTrack *track = &mov->tracks[tracknum]; MOVTrack *track = &mov->tracks[tracknum];
AVPacket pkt = { .stream_index = tracknum, .flags = AV_PKT_FLAG_KEY }; AVPacket pkt = { .stream_index = tracknum, .flags = AV_PKT_FLAG_KEY };
int i, len; int i, len;
// These properties are required to make QT recognize the chapter track
uint8_t chapter_properties[43] = { 0, 0, 0, 0, 0, 0, 0, 1, };
track->mode = mov->mode; track->mode = mov->mode;
track->tag = MKTAG('t','e','x','t'); track->tag = MKTAG('t','e','x','t');
track->timescale = MOV_TIMESCALE; track->timescale = MOV_TIMESCALE;
track->enc = avcodec_alloc_context3(NULL); track->enc = avcodec_alloc_context3(NULL);
track->enc->codec_type = AVMEDIA_TYPE_SUBTITLE; track->enc->codec_type = AVMEDIA_TYPE_SUBTITLE;
#if 0
track->enc->extradata = av_malloc(sizeof(chapter_properties));
if (track->enc->extradata == NULL)
return AVERROR(ENOMEM);
track->enc->extradata_size = sizeof(chapter_properties);
memcpy(track->enc->extradata, chapter_properties, sizeof(chapter_properties));
#else
if (avio_open_dyn_buf(&pb) >= 0) { if (avio_open_dyn_buf(&pb) >= 0) {
int size; int size;
uint8_t *buf; uint8_t *buf;
...@@ -3440,6 +3448,7 @@ static void mov_create_chapter_track(AVFormatContext *s, int tracknum) ...@@ -3440,6 +3448,7 @@ static void mov_create_chapter_track(AVFormatContext *s, int tracknum)
av_free(&buf); av_free(&buf);
} }
} }
#endif
for (i = 0; i < s->nb_chapters; i++) { for (i = 0; i < s->nb_chapters; i++) {
AVChapter *c = s->chapters[i]; AVChapter *c = s->chapters[i];
...@@ -3459,6 +3468,8 @@ static void mov_create_chapter_track(AVFormatContext *s, int tracknum) ...@@ -3459,6 +3468,8 @@ static void mov_create_chapter_track(AVFormatContext *s, int tracknum)
av_freep(&pkt.data); av_freep(&pkt.data);
} }
} }
return 0;
} }
static int mov_create_timecode_track(AVFormatContext *s, int index, int src_index, const char *tcstr) static int mov_create_timecode_track(AVFormatContext *s, int index, int src_index, const char *tcstr)
...@@ -3978,8 +3989,10 @@ static int mov_write_trailer(AVFormatContext *s) ...@@ -3978,8 +3989,10 @@ static int mov_write_trailer(AVFormatContext *s)
mov_write_mfra_tag(pb, mov); mov_write_mfra_tag(pb, mov);
} }
if (mov->chapter_track) if (mov->chapter_track) {
av_free(mov->tracks[mov->chapter_track].enc->extradata);
av_freep(&mov->tracks[mov->chapter_track].enc); av_freep(&mov->tracks[mov->chapter_track].enc);
}
for (i = 0; i < mov->nb_streams; i++) { for (i = 0; i < mov->nb_streams; i++) {
if (mov->tracks[i].tag == MKTAG('r','t','p',' ')) if (mov->tracks[i].tag == MKTAG('r','t','p',' '))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment