|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- #include "mov-writer.h"
- #include "mov-internal.h"
- #include <stdlib.h>
- #include <string.h>
- #include <assert.h>
- #include <errno.h>
- #include <time.h>
-
- struct mov_writer_t
- {
- struct mov_t mov;
- uint64_t mdat_size;
- uint64_t mdat_offset;
- };
-
- static int mov_write_tail(struct mov_t* mov)
- {
- mov_buffer_w32(&mov->io, 8 + strlen(MOV_APP)); /* size */
- mov_buffer_write(&mov->io, "free", 4);
- mov_buffer_write(&mov->io, MOV_APP, strlen(MOV_APP));
- return 0;
- }
-
- static size_t mov_write_moov(struct mov_t* mov)
- {
- int i;
- size_t size;
- uint64_t offset;
-
- size = 8 /* Box */;
- offset = mov_buffer_tell(&mov->io);
- mov_buffer_w32(&mov->io, 0); /* size */
- mov_buffer_write(&mov->io, "moov", 4);
-
- size += mov_write_mvhd(mov);
- // size += mov_write_iods(mov);
- for(i = 0; i < mov->track_count; i++)
- {
- mov->track = mov->tracks + i;
- if (mov->track->sample_count < 1)
- continue;
- size += mov_write_trak(mov);
- }
-
- size += mov_write_udta(mov);
- mov_write_size(mov, offset, size); /* update size */
- return size;
- }
-
- void mov_write_size(const struct mov_t* mov, uint64_t offset, size_t size)
- {
- uint64_t offset2;
- assert(size < UINT32_MAX);
- offset2 = mov_buffer_tell(&mov->io);
- mov_buffer_seek(&mov->io, offset);
- mov_buffer_w32(&mov->io, (uint32_t)size);
- mov_buffer_seek(&mov->io, offset2);
- }
-
- static int mov_writer_init(struct mov_t* mov)
- {
- mov->ftyp.major_brand = MOV_BRAND_ISOM;
- mov->ftyp.minor_version = 0x200;
- mov->ftyp.brands_count = 4;
- mov->ftyp.compatible_brands[0] = MOV_BRAND_ISOM;
- mov->ftyp.compatible_brands[1] = MOV_BRAND_ISO2;
- mov->ftyp.compatible_brands[2] = MOV_BRAND_AVC1;
- mov->ftyp.compatible_brands[3] = MOV_BRAND_MP41;
- mov->header = 0;
- return 0;
- }
-
- struct mov_writer_t* mov_writer_create(const struct mov_buffer_t* buffer, void* param, int flags)
- {
- struct mov_t* mov;
- struct mov_writer_t* writer;
- writer = (struct mov_writer_t*)calloc(1, sizeof(struct mov_writer_t));
- if (NULL == writer)
- return NULL;
-
- mov = &writer->mov;
- mov->flags = flags;
- mov->io.param = param;
- memcpy(&mov->io.io, buffer, sizeof(mov->io.io));
-
- mov->mvhd.next_track_ID = 1;
- mov->mvhd.creation_time = time(NULL) + 0x7C25B080; // 1970 based -> 1904 based;
- mov->mvhd.modification_time = mov->mvhd.creation_time;
- mov->mvhd.timescale = 1000;
- mov->mvhd.duration = 0; // placeholder
-
- mov_writer_init(mov);
- mov_write_ftyp(mov);
-
- // free(reserved for 64bit mdat)
- mov_buffer_w32(&mov->io, 8); /* size */
- mov_buffer_write(&mov->io, "free", 4);
-
- // mdat
- writer->mdat_offset = mov_buffer_tell(&mov->io);
- mov_buffer_w32(&mov->io, 0); /* size */
- mov_buffer_write(&mov->io, "mdat", 4);
- return writer;
- }
-
- static int mov_writer_move(struct mov_t* mov, uint64_t to, uint64_t from, size_t bytes);
- void mov_writer_destroy(struct mov_writer_t* writer)
- {
- int i;
- uint64_t offset, offset2;
- struct mov_t* mov;
- struct mov_track_t* track;
- mov = &writer->mov;
-
- // finish mdat box
- if (writer->mdat_size + 8 <= UINT32_MAX)
- {
- mov_write_size(mov, writer->mdat_offset, (uint32_t)(writer->mdat_size + 8)); /* update size */
- }
- else
- {
- offset2 = mov_buffer_tell(&mov->io);
- writer->mdat_offset -= 8; // overwrite free box
- mov_buffer_seek(&mov->io, writer->mdat_offset);
- mov_buffer_w32(&mov->io, 1);
- mov_buffer_write(&mov->io, "mdat", 4);
- mov_buffer_w64(&mov->io, writer->mdat_size + 16);
- mov_buffer_seek(&mov->io, offset2);
- }
-
- // finish sample info
- for (i = 0; i < mov->track_count; i++)
- {
- track = &mov->tracks[i];
- if(track->sample_count < 1)
- continue;
-
- // pts in ms
- track->mdhd.duration = (track->samples[track->sample_count - 1].dts - track->samples[0].dts);
- if (track->sample_count > 1)
- {
- // duration += 3/4 * avg-duration + 1/4 * last-frame-duration
- track->mdhd.duration += track->mdhd.duration * 3 / (track->sample_count - 1) / 4 + (track->samples[track->sample_count - 1].dts - track->samples[track->sample_count - 2].dts) / 4;
- }
- //track->mdhd.duration = track->mdhd.duration * track->mdhd.timescale / 1000;
- track->tkhd.duration = track->mdhd.duration * mov->mvhd.timescale / track->mdhd.timescale;
- if (track->tkhd.duration > mov->mvhd.duration)
- mov->mvhd.duration = track->tkhd.duration; // maximum track duration
- }
-
- // write moov box
- offset = mov_buffer_tell(&mov->io);
- mov_write_moov(mov);
- offset2 = mov_buffer_tell(&mov->io);
-
- if (MOV_FLAG_FASTSTART & mov->flags)
- {
- // check stco -> co64
- uint64_t co64 = 0;
- for (i = 0; i < mov->track_count; i++)
- {
- co64 += mov_stco_size(&mov->tracks[i], offset2 - offset);
- }
-
- if (co64)
- {
- uint64_t sz;
- do
- {
- sz = co64;
- co64 = 0;
- for (i = 0; i < mov->track_count; i++)
- {
- co64 += mov_stco_size(&mov->tracks[i], offset2 - offset + sz);
- }
- } while (sz != co64);
- }
-
- // rewrite moov
- for (i = 0; i < mov->track_count; i++)
- mov->tracks[i].offset += (offset2 - offset) + co64;
-
- mov_buffer_seek(&mov->io, offset);
- mov_write_moov(mov);
- assert(mov_buffer_tell(&mov->io) == offset2 + co64);
- offset2 = mov_buffer_tell(&mov->io);
-
- mov_writer_move(mov, writer->mdat_offset, offset, (size_t)(offset2 - offset));
- }
-
- mov_write_tail(mov);
- for (i = 0; i < mov->track_count; i++)
- mov_free_track(mov->tracks + i);
- if (mov->tracks)
- free(mov->tracks);
- free(writer);
- }
-
- static int mov_writer_move(struct mov_t* mov, uint64_t to, uint64_t from, size_t bytes)
- {
- uint8_t* ptr;
- uint64_t i, j;
- void* buffer[2];
-
- assert(bytes < INT32_MAX);
- ptr = malloc((size_t)(bytes * 2));
- if (NULL == ptr)
- return -ENOMEM;
- buffer[0] = ptr;
- buffer[1] = ptr + bytes;
-
- mov_buffer_seek(&mov->io, from);
- mov_buffer_read(&mov->io, buffer[0], bytes);
- mov_buffer_seek(&mov->io, to);
- mov_buffer_read(&mov->io, buffer[1], bytes);
-
- j = 0;
- for (i = to; i < from; i += bytes)
- {
- mov_buffer_seek(&mov->io, i);
- mov_buffer_write(&mov->io, buffer[j], bytes);
- // MSDN: fopen https://msdn.microsoft.com/en-us/library/yeby3zcb.aspx
- // When the "r+", "w+", or "a+" access type is specified, both reading and
- // writing are enabled (the file is said to be open for "update").
- // However, when you switch from reading to writing, the input operation
- // must encounter an EOF marker. If there is no EOF, you must use an intervening
- // call to a file positioning function. The file positioning functions are
- // fsetpos, fseek, and rewind.
- // When you switch from writing to reading, you must use an intervening
- // call to either fflush or to a file positioning function.
- mov_buffer_seek(&mov->io, i+bytes);
- mov_buffer_read(&mov->io, buffer[j], bytes);
- j ^= 1;
- }
-
- mov_buffer_seek(&mov->io, i);
- mov_buffer_write(&mov->io, buffer[j], bytes - (size_t)(i - from));
-
- free(ptr);
- return mov_buffer_error(&mov->io);
- }
-
- int mov_writer_write(struct mov_writer_t* writer, int track, const void* data, size_t bytes, int64_t pts, int64_t dts, int flags)
- {
- struct mov_t* mov;
- struct mov_sample_t* sample;
-
- assert(bytes < UINT32_MAX);
- if (track < 0 || track >= (int)writer->mov.track_count)
- return -ENOENT;
-
- mov = &writer->mov;
- mov->track = &mov->tracks[track];
-
- if (mov->track->sample_count + 1 >= mov->track->sample_offset)
- {
- void* ptr = realloc(mov->track->samples, sizeof(struct mov_sample_t) * (mov->track->sample_offset + 1024));
- if (NULL == ptr) return -ENOMEM;
- mov->track->samples = ptr;
- mov->track->sample_offset += 1024;
- }
-
- pts = pts * mov->track->mdhd.timescale / 1000;
- dts = dts * mov->track->mdhd.timescale / 1000;
-
- sample = &mov->track->samples[mov->track->sample_count++];
- sample->sample_description_index = 1;
- sample->bytes = (uint32_t)bytes;
- sample->flags = flags;
- sample->data = NULL;
- sample->pts = pts;
- sample->dts = dts;
-
- sample->offset = mov_buffer_tell(&mov->io);
- mov_buffer_write(&mov->io, data, bytes);
-
- if (INT64_MIN == mov->track->start_dts)
- mov->track->start_dts = sample->dts;
- writer->mdat_size += bytes; // update media data size
- return mov_buffer_error(&mov->io);
- }
-
- int mov_writer_add_audio(struct mov_writer_t* writer, uint8_t object, int channel_count, int bits_per_sample, int sample_rate, const void* extra_data, size_t extra_data_size)
- {
- struct mov_t* mov;
- struct mov_track_t* track;
-
- mov = &writer->mov;
- track = mov_add_track(mov);
- if (NULL == track)
- return -ENOMEM;
-
- if (0 != mov_add_audio(track, &mov->mvhd, 1000, object, channel_count, bits_per_sample, sample_rate, extra_data, extra_data_size))
- return -ENOMEM;
-
- mov->mvhd.next_track_ID++;
- return mov->track_count++;
- }
-
- int mov_writer_add_video(struct mov_writer_t* writer, uint8_t object, int width, int height, const void* extra_data, size_t extra_data_size)
- {
- struct mov_t* mov;
- struct mov_track_t* track;
-
- mov = &writer->mov;
- track = mov_add_track(mov);
- if (NULL == track)
- return -ENOMEM;
-
- if (0 != mov_add_video(track, &mov->mvhd, 1000, object, width, height, extra_data, extra_data_size))
- return -ENOMEM;
-
- mov->mvhd.next_track_ID++;
- return mov->track_count++;
- }
-
- int mov_writer_add_subtitle(struct mov_writer_t* writer, uint8_t object, const void* extra_data, size_t extra_data_size)
- {
- struct mov_t* mov;
- struct mov_track_t* track;
-
- mov = &writer->mov;
- track = mov_add_track(mov);
- if (NULL == track)
- return -ENOMEM;
-
- if (0 != mov_add_subtitle(track, &mov->mvhd, 1000, object, extra_data, extra_data_size))
- return -ENOMEM;
-
- mov->mvhd.next_track_ID++;
- return mov->track_count++;
- }
-
- int mov_writer_add_udta(mov_writer_t* mov, const void* data, size_t size)
- {
- mov->mov.udta = data;
- mov->mov.udta_size = size;
- return 0;
- }
|