libavformat/gxfenc.c
86329cce
 /*
  * GXF muxer.
406792e7
  * Copyright (c) 2006 SmartJog S.A., Baptiste Coudurier <baptiste dot coudurier at smartjog dot com>
86329cce
  *
b78e7197
  * This file is part of FFmpeg.
  *
71daa04c
  * FFmpeg 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.
86329cce
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
86329cce
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
71daa04c
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
86329cce
  *
71daa04c
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
b78e7197
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
86329cce
  */
 
245976da
 #include "libavutil/fifo.h"
86329cce
 #include "avformat.h"
 #include "gxf.h"
 #include "riff.h"
63601677
 #include "audiointerleave.h"
86329cce
 
 #define GXF_AUDIO_PACKET_SIZE 65536
 
 typedef struct GXFStreamContext {
63601677
     AudioInterleaveContext aic;
86329cce
     AVCodecContext *codec;
     uint32_t track_type;
     uint32_t sample_size;
     uint32_t sample_rate;
     uint16_t media_type;
     uint16_t media_info;
     uint8_t index;
     int frame_rate_index;
     int lines_index;
     int fields;
     int iframes;
     int pframes;
     int bframes;
     int p_per_gop;
a88f0f16
     int b_per_i_or_p; ///< number of B frames per I frame or P frame
2b7e230b
     int first_gop_closed;
201f1d45
     int64_t current_dts;
6a287fd7
     int dts_delay;
86329cce
 } GXFStreamContext;
 
 typedef struct GXFContext {
032d8aec
     uint32_t nb_fields;
86329cce
     uint32_t material_flags;
     uint16_t audio_tracks;
     uint16_t mpeg_tracks;
     int64_t creation_time;
     uint32_t umf_start_offset;
     uint32_t umf_track_offset;
     uint32_t umf_media_offset;
     uint32_t umf_user_data_offset;
     uint32_t umf_user_data_size;
     uint32_t umf_length;
     uint16_t umf_track_size;
     uint16_t umf_media_size;
     int audio_written;
     int sample_rate;
     int flags;
     AVFormatContext *fc;
 } GXFContext;
 
 typedef struct GXF_Lines {
     int height;
     int index;
 } GXF_Lines;
 
 
 /* FIXME check if it is relevant */
 static const GXF_Lines gxf_lines_tab[] = {
     { 480,  1 }, /* NTSC */
     { 512,  1 }, /* NTSC + VBI */
     { 576,  2 }, /* PAL */
     { 608,  2 }, /* PAL + VBI */
     { 1080, 4 },
     { 720,  6 },
 };
 
7caf0cc6
 static const AVCodecTag gxf_media_types[] = {
86329cce
     { CODEC_ID_MJPEG     ,   3 }, /* NTSC */
     { CODEC_ID_MJPEG     ,   4 }, /* PAL */
     { CODEC_ID_PCM_S24LE ,   9 },
     { CODEC_ID_PCM_S16LE ,  10 },
     { CODEC_ID_MPEG2VIDEO,  11 }, /* NTSC */
     { CODEC_ID_MPEG2VIDEO,  12 }, /* PAL */
     { CODEC_ID_DVVIDEO   ,  13 }, /* NTSC */
     { CODEC_ID_DVVIDEO   ,  14 }, /* PAL */
     { CODEC_ID_DVVIDEO   ,  15 }, /* 50M NTSC */
     { CODEC_ID_DVVIDEO   ,  16 }, /* 50M PAL */
     { CODEC_ID_AC3       ,  17 },
     //{ CODEC_ID_NONE,  ,   18 }, /* Non compressed 24 bit audio */
     { CODEC_ID_MPEG2VIDEO,  20 }, /* MPEG HD */
     { CODEC_ID_MPEG1VIDEO,  22 }, /* NTSC */
     { CODEC_ID_MPEG1VIDEO,  23 }, /* PAL */
     { 0, 0 },
 };
 
 #define SERVER_PATH "/space/"
 #define ES_NAME_PATTERN "ES."
 
 static int gxf_find_lines_index(GXFStreamContext *ctx)
 {
     int i;
 
     for (i = 0; i < 6; ++i) {
         if (ctx->codec->height == gxf_lines_tab[i].height) {
             ctx->lines_index = gxf_lines_tab[i].index;
             return 0;
         }
     }
     return -1;
 }
 
bc5c918e
 static void gxf_write_padding(ByteIOContext *pb, int64_t to_pad)
86329cce
 {
0e15b7b0
     for (; to_pad > 0; to_pad--) {
86329cce
         put_byte(pb, 0);
     }
 }
 
bc5c918e
 static int64_t updatePacketSize(ByteIOContext *pb, int64_t pos)
86329cce
 {
bc5c918e
     int64_t curpos;
86329cce
     int size;
 
     size = url_ftell(pb) - pos;
     if (size % 4) {
         gxf_write_padding(pb, 4 - size % 4);
         size = url_ftell(pb) - pos;
     }
     curpos = url_ftell(pb);
     url_fseek(pb, pos + 6, SEEK_SET);
     put_be32(pb, size);
     url_fseek(pb, curpos, SEEK_SET);
     return curpos - pos;
 }
 
bc5c918e
 static int64_t updateSize(ByteIOContext *pb, int64_t pos)
86329cce
 {
bc5c918e
     int64_t curpos;
86329cce
 
     curpos = url_ftell(pb);
     url_fseek(pb, pos, SEEK_SET);
     put_be16(pb, curpos - pos - 2);
     url_fseek(pb, curpos, SEEK_SET);
     return curpos - pos;
 }
 
d77ac324
 static void gxf_write_packet_header(ByteIOContext *pb, GXFPktType type)
86329cce
 {
     put_be32(pb, 0); /* packet leader for synchro */
     put_byte(pb, 1);
     put_byte(pb, type); /* map packet */
     put_be32(pb, 0); /* size */
     put_be32(pb, 0); /* reserved */
     put_byte(pb, 0xE1); /* trailer 1 */
     put_byte(pb, 0xE2); /* trailer 2 */
 }
 
 static int gxf_write_mpeg_auxiliary(ByteIOContext *pb, GXFStreamContext *ctx)
 {
     char buffer[1024];
15a4e8b8
     int size, starting_line;
86329cce
 
     if (ctx->iframes) {
         ctx->p_per_gop = ctx->pframes / ctx->iframes;
         if (ctx->pframes % ctx->iframes)
             ctx->p_per_gop++;
68a7aaff
         if (ctx->pframes) {
a88f0f16
             ctx->b_per_i_or_p = ctx->bframes / ctx->pframes;
68a7aaff
             if (ctx->bframes % ctx->pframes)
                 ctx->b_per_i_or_p++;
         }
86329cce
         if (ctx->p_per_gop > 9)
             ctx->p_per_gop = 9; /* ensure value won't take more than one char */
a88f0f16
         if (ctx->b_per_i_or_p > 9)
             ctx->b_per_i_or_p = 9; /* ensure value won't take more than one char */
86329cce
     }
15a4e8b8
     if (ctx->codec->height == 512 || ctx->codec->height == 608)
         starting_line = 7; // VBI
     else if (ctx->codec->height == 480)
         starting_line = 20;
     else
         starting_line = 23; // default PAL
 
86329cce
     size = snprintf(buffer, 1024, "Ver 1\nBr %.6f\nIpg 1\nPpi %d\nBpiop %d\n"
15a4e8b8
                     "Pix 0\nCf %d\nCg %d\nSl %d\nnl16 %d\nVi 1\nf1 1\n",
a88f0f16
                     (float)ctx->codec->bit_rate, ctx->p_per_gop, ctx->b_per_i_or_p,
afbbe5e3
                     ctx->codec->pix_fmt == PIX_FMT_YUV422P ? 2 : 1, ctx->first_gop_closed == 1,
15a4e8b8
                     starting_line, ctx->codec->height / 16);
b1dc5beb
     put_byte(pb, TRACK_MPG_AUX);
86329cce
     put_byte(pb, size + 1);
     put_buffer(pb, (uint8_t *)buffer, size + 1);
     return size + 3;
 }
 
 static int gxf_write_timecode_auxiliary(ByteIOContext *pb, GXFStreamContext *ctx)
 {
     /* FIXME implement that */
     put_byte(pb, 0); /* fields */
     put_byte(pb, 0);  /* seconds */
     put_byte(pb, 0); /* minutes */
     put_byte(pb, 0); /* flags + hours */
     /* reserved */
     put_be32(pb, 0);
     return 8;
 }
 
 static int gxf_write_track_description(ByteIOContext *pb, GXFStreamContext *stream)
 {
bc5c918e
     int64_t pos;
86329cce
 
     /* track description section */
     put_byte(pb, stream->media_type + 0x80);
     put_byte(pb, stream->index + 0xC0);
 
     pos = url_ftell(pb);
     put_be16(pb, 0); /* size */
 
     /* media file name */
b1dc5beb
     put_byte(pb, TRACK_NAME);
86329cce
     put_byte(pb, strlen(ES_NAME_PATTERN) + 3);
     put_tag(pb, ES_NAME_PATTERN);
     put_be16(pb, stream->media_info);
     put_byte(pb, 0);
 
     if (stream->codec->codec_id != CODEC_ID_MPEG2VIDEO) {
         /* auxiliary information */
b1dc5beb
         put_byte(pb, TRACK_AUX);
86329cce
         put_byte(pb, 8);
         if (stream->codec->codec_id == CODEC_ID_NONE)
             gxf_write_timecode_auxiliary(pb, stream);
         else
             put_le64(pb, 0);
     }
 
     /* file system version */
b1dc5beb
     put_byte(pb, TRACK_VER);
86329cce
     put_byte(pb, 4);
     put_be32(pb, 0);
 
     if (stream->codec->codec_id == CODEC_ID_MPEG2VIDEO)
         gxf_write_mpeg_auxiliary(pb, stream);
 
     /* frame rate */
b1dc5beb
     put_byte(pb, TRACK_FPS);
86329cce
     put_byte(pb, 4);
     put_be32(pb, stream->frame_rate_index);
 
     /* lines per frame */
b1dc5beb
     put_byte(pb, TRACK_LINES);
86329cce
     put_byte(pb, 4);
     put_be32(pb, stream->lines_index);
 
     /* fields per frame */
b1dc5beb
     put_byte(pb, TRACK_FPF);
86329cce
     put_byte(pb, 4);
     put_be32(pb, stream->fields);
 
     return updateSize(pb, pos);
 }
 
 static int gxf_write_material_data_section(ByteIOContext *pb, GXFContext *ctx)
 {
bc5c918e
     int64_t pos;
86329cce
     const char *filename = strrchr(ctx->fc->filename, '/');
 
     pos = url_ftell(pb);
     put_be16(pb, 0); /* size */
 
     /* name */
     if (filename)
         filename++;
     else
         filename = ctx->fc->filename;
b1dc5beb
     put_byte(pb, MAT_NAME);
86329cce
     put_byte(pb, strlen(SERVER_PATH) + strlen(filename) + 1);
     put_tag(pb, SERVER_PATH);
     put_tag(pb, filename);
     put_byte(pb, 0);
 
     /* first field */
b1dc5beb
     put_byte(pb, MAT_FIRST_FIELD);
86329cce
     put_byte(pb, 4);
     put_be32(pb, 0);
 
     /* last field */
b1dc5beb
     put_byte(pb, MAT_LAST_FIELD);
86329cce
     put_byte(pb, 4);
032d8aec
     put_be32(pb, ctx->nb_fields);
86329cce
 
     /* reserved */
b1dc5beb
     put_byte(pb, MAT_MARK_IN);
86329cce
     put_byte(pb, 4);
     put_be32(pb, 0);
 
b1dc5beb
     put_byte(pb, MAT_MARK_OUT);
86329cce
     put_byte(pb, 4);
032d8aec
     put_be32(pb, ctx->nb_fields);
86329cce
 
     /* estimated size */
b1dc5beb
     put_byte(pb, MAT_SIZE);
86329cce
     put_byte(pb, 4);
     put_be32(pb, url_fsize(pb) / 1024);
 
     return updateSize(pb, pos);
 }
 
 static int gxf_write_track_description_section(ByteIOContext *pb, GXFContext *ctx)
 {
bc5c918e
     int64_t pos;
86329cce
     int i;
 
     pos = url_ftell(pb);
     put_be16(pb, 0); /* size */
     for (i = 0; i < ctx->fc->nb_streams; ++i)
5efa932d
         gxf_write_track_description(pb, ctx->fc->streams[i]->priv_data);
86329cce
     return updateSize(pb, pos);
 }
 
 static int gxf_write_map_packet(ByteIOContext *pb, GXFContext *ctx)
 {
bc5c918e
     int64_t pos = url_ftell(pb);
86329cce
 
     gxf_write_packet_header(pb, PKT_MAP);
 
     /* preamble */
     put_byte(pb, 0xE0); /* version */
     put_byte(pb, 0xFF); /* reserved */
 
     gxf_write_material_data_section(pb, ctx);
     gxf_write_track_description_section(pb, ctx);
 
     return updatePacketSize(pb, pos);
 }
 
 #if 0
 static int gxf_write_flt_packet(ByteIOContext *pb, GXFContext *ctx)
 {
bc5c918e
     int64_t pos = url_ftell(pb);
86329cce
     int i;
 
     gxf_write_packet_header(pb, PKT_FLT);
 
     put_le32(pb, 1000); /* number of fields */
     put_le32(pb, 0); /* number of active flt entries */
 
     for (i = 0; i < 1000; ++i) {
         put_le32(pb, 0);
     }
     return updatePacketSize(pb, pos);
 }
 #endif
 
 static int gxf_write_umf_material_description(ByteIOContext *pb, GXFContext *ctx)
 {
fc941878
     // XXX drop frame
     uint32_t timecode =
032d8aec
         ctx->nb_fields / (ctx->sample_rate * 3600) % 24 << 24 | // hours
         ctx->nb_fields / (ctx->sample_rate * 60) % 60   << 16 | // minutes
         ctx->nb_fields / ctx->sample_rate % 60          <<  8 | // seconds
         ctx->nb_fields % ctx->sample_rate;                    // fields
fc941878
 
86329cce
     put_le32(pb, ctx->flags);
032d8aec
     put_le32(pb, ctx->nb_fields); /* length of the longest track */
     put_le32(pb, ctx->nb_fields); /* length of the shortest track */
86329cce
     put_le32(pb, 0); /* mark in */
032d8aec
     put_le32(pb, ctx->nb_fields); /* mark out */
86329cce
     put_le32(pb, 0); /* timecode mark in */
fc941878
     put_le32(pb, timecode); /* timecode mark out */
86329cce
     put_le64(pb, ctx->fc->timestamp); /* modification time */
     put_le64(pb, ctx->fc->timestamp); /* creation time */
     put_le16(pb, 0); /* reserved */
     put_le16(pb, 0); /* reserved */
     put_le16(pb, ctx->audio_tracks);
     put_le16(pb, 0); /* timecode track count */
     put_le16(pb, 0); /* reserved */
     put_le16(pb, ctx->mpeg_tracks);
     return 48;
 }
 
 static int gxf_write_umf_payload(ByteIOContext *pb, GXFContext *ctx)
 {
     put_le32(pb, ctx->umf_length); /* total length of the umf data */
     put_le32(pb, 3); /* version */
     put_le32(pb, ctx->fc->nb_streams);
     put_le32(pb, ctx->umf_track_offset); /* umf track section offset */
     put_le32(pb, ctx->umf_track_size);
     put_le32(pb, ctx->fc->nb_streams);
     put_le32(pb, ctx->umf_media_offset);
     put_le32(pb, ctx->umf_media_size);
     put_le32(pb, ctx->umf_user_data_offset); /* user data offset */
     put_le32(pb, ctx->umf_user_data_size); /* user data size */
     put_le32(pb, 0); /* reserved */
     put_le32(pb, 0); /* reserved */
     return 48;
 }
 
 static int gxf_write_umf_track_description(ByteIOContext *pb, GXFContext *ctx)
 {
bc5c918e
     int64_t pos = url_ftell(pb);
86329cce
     int tracks[255]={0};
     int i;
 
     ctx->umf_track_offset = pos - ctx->umf_start_offset;
     for (i = 0; i < ctx->fc->nb_streams; ++i) {
         AVStream *st = ctx->fc->streams[i];
5efa932d
         GXFStreamContext *sc = st->priv_data;
86329cce
         int id = 0;
 
         switch (st->codec->codec_id) {
         case CODEC_ID_MPEG1VIDEO: id= 'L'; break;
         case CODEC_ID_MPEG2VIDEO: id= 'M'; break;
         case CODEC_ID_PCM_S16LE:  id= 'A'; break;
         case CODEC_ID_DVVIDEO:    id= sc->track_type == 6 ? 'E' : 'D'; break;
         case CODEC_ID_MJPEG:      id= 'V'; break;
31903634
         default:                  break;
86329cce
         }
         sc->media_info= id << 8;
         /* FIXME first 10 audio tracks are 0 to 9 next 22 are A to V */
         sc->media_info |= '0' + (tracks[id]++);
         put_le16(pb, sc->media_info);
         put_le16(pb, 1);
     }
     return url_ftell(pb) - pos;
 }
 
 static int gxf_write_umf_media_mpeg(ByteIOContext *pb, GXFStreamContext *stream)
 {
     if (stream->codec->pix_fmt == PIX_FMT_YUV422P)
         put_le32(pb, 2);
     else
         put_le32(pb, 1); /* default to 420 */
afbbe5e3
     put_le32(pb, stream->first_gop_closed == 1); /* closed = 1, open = 0, unknown = 255 */
86329cce
     put_le32(pb, 3); /* top = 1, bottom = 2, frame = 3, unknown = 0 */
     put_le32(pb, 1); /* I picture per GOP */
     put_le32(pb, stream->p_per_gop);
a88f0f16
     put_le32(pb, stream->b_per_i_or_p);
86329cce
     if (stream->codec->codec_id == CODEC_ID_MPEG2VIDEO)
         put_le32(pb, 2);
     else if (stream->codec->codec_id == CODEC_ID_MPEG1VIDEO)
         put_le32(pb, 1);
     else
         put_le32(pb, 0);
     put_le32(pb, 0); /* reserved */
     return 32;
 }
 
 static int gxf_write_umf_media_timecode(ByteIOContext *pb, GXFStreamContext *track)
 {
     /* FIXME implement */
     put_be32(pb, 0); /* drop frame flag */
     put_be32(pb, 0); /* reserved */
     put_be32(pb, 0); /* reserved */
     put_be32(pb, 0); /* reserved */
     put_be32(pb, 0); /* reserved */
     put_be32(pb, 0); /* reserved */
     put_be32(pb, 0); /* reserved */
     put_be32(pb, 0); /* reserved */
     return 32;
 }
 
 static int gxf_write_umf_media_dv(ByteIOContext *pb, GXFStreamContext *track)
 {
     int i;
 
     for (i = 0; i < 8; i++) {
         put_be32(pb, 0);
     }
     return 32;
 }
 
 static int gxf_write_umf_media_audio(ByteIOContext *pb, GXFStreamContext *track)
 {
     put_le64(pb, av_dbl2int(1)); /* sound level to begin to */
     put_le64(pb, av_dbl2int(1)); /* sound level to begin to */
     put_le32(pb, 0); /* number of fields over which to ramp up sound level */
     put_le32(pb, 0); /* number of fields over which to ramp down sound level */
     put_le32(pb, 0); /* reserved */
     put_le32(pb, 0); /* reserved */
     return 32;
 }
 
 #if 0
 static int gxf_write_umf_media_mjpeg(ByteIOContext *pb, GXFStreamContext *track)
 {
     put_be64(pb, 0); /* FIXME FLOAT max chroma quant level */
     put_be64(pb, 0); /* FIXME FLOAT max luma quant level */
     put_be64(pb, 0); /* FIXME FLOAT min chroma quant level */
     put_be64(pb, 0); /* FIXME FLOAT min luma quant level */
     return 32;
 }
 #endif
 
 static int gxf_write_umf_media_description(ByteIOContext *pb, GXFContext *ctx)
 {
bc5c918e
     int64_t pos;
86329cce
     int i;
 
     pos = url_ftell(pb);
     ctx->umf_media_offset = pos - ctx->umf_start_offset;
     for (i = 0; i < ctx->fc->nb_streams; ++i) {
5efa932d
         GXFStreamContext *sc = ctx->fc->streams[i]->priv_data;
86329cce
         char buffer[88];
bc5c918e
         int64_t startpos, curpos;
86329cce
         int path_size = strlen(ES_NAME_PATTERN);
 
6a7eba1f
         memset(buffer, 0, 88);
86329cce
         startpos = url_ftell(pb);
         put_le16(pb, 0); /* length */
         put_le16(pb, sc->media_info);
         put_le16(pb, 0); /* reserved */
         put_le16(pb, 0); /* reserved */
032d8aec
         put_le32(pb, ctx->nb_fields);
86329cce
         put_le32(pb, 0); /* attributes rw, ro */
         put_le32(pb, 0); /* mark in */
032d8aec
         put_le32(pb, ctx->nb_fields); /* mark out */
86329cce
         strncpy(buffer, ES_NAME_PATTERN, path_size);
         put_buffer(pb, (uint8_t *)buffer, path_size);
         put_be16(pb, sc->media_info);
         put_buffer(pb, (uint8_t *)buffer + path_size + 2, 88 - path_size - 2);
         put_le32(pb, sc->track_type);
         put_le32(pb, sc->sample_rate);
         put_le32(pb, sc->sample_size);
         put_le32(pb, 0); /* reserved */
         switch (sc->codec->codec_id) {
         case CODEC_ID_MPEG2VIDEO:
             gxf_write_umf_media_mpeg(pb, sc);
             break;
         case CODEC_ID_PCM_S16LE:
             gxf_write_umf_media_audio(pb, sc);
             break;
         case CODEC_ID_DVVIDEO:
             gxf_write_umf_media_dv(pb, sc);
             break;
         default:
             gxf_write_umf_media_timecode(pb, sc); /* 8 0bytes */
         }
         curpos = url_ftell(pb);
         url_fseek(pb, startpos, SEEK_SET);
         put_le16(pb, curpos - startpos);
         url_fseek(pb, curpos, SEEK_SET);
     }
     return url_ftell(pb) - pos;
 }
 
 static int gxf_write_umf_user_data(ByteIOContext *pb, GXFContext *ctx)
 {
bc5c918e
     int64_t pos = url_ftell(pb);
86329cce
     ctx->umf_user_data_offset = pos - ctx->umf_start_offset;
     put_le32(pb, 20);
     put_le32(pb,  0);
     put_le16(pb,  0);
     put_le16(pb,  0);
     put_le32(pb,  0);
     put_byte(pb,  0);
     put_byte(pb,  0);
     put_byte(pb,  0);
     put_byte(pb,  0);
     return 20;
 }
 
 static int gxf_write_umf_packet(ByteIOContext *pb, GXFContext *ctx)
 {
bc5c918e
     int64_t pos = url_ftell(pb);
86329cce
 
     gxf_write_packet_header(pb, PKT_UMF);
 
     /* preamble */
     put_byte(pb, 3); /* first and last (only) packet */
     put_be32(pb, ctx->umf_length); /* data length */
 
     ctx->umf_start_offset = url_ftell(pb);
     gxf_write_umf_payload(pb, ctx);
     gxf_write_umf_material_description(pb, ctx);
     ctx->umf_track_size = gxf_write_umf_track_description(pb, ctx);
     ctx->umf_media_size = gxf_write_umf_media_description(pb, ctx);
     ctx->umf_user_data_size = gxf_write_umf_user_data(pb, ctx);
     ctx->umf_length = url_ftell(pb) - ctx->umf_start_offset;
     return updatePacketSize(pb, pos);
 }
 
20121213
 #define GXF_NODELAY -5000
 
63601677
 static const int GXF_samples_per_frame[] = { 32768, 0 };
 
86329cce
 static int gxf_write_header(AVFormatContext *s)
 {
899681cd
     ByteIOContext *pb = s->pb;
86329cce
     GXFContext *gxf = s->priv_data;
     int i;
 
     gxf->fc = s;
     gxf->flags |= 0x00080000; /* material is simple clip */
     for (i = 0; i < s->nb_streams; ++i) {
         AVStream *st = s->streams[i];
5efa932d
         GXFStreamContext *sc = av_mallocz(sizeof(*sc));
         if (!sc)
             return AVERROR(ENOMEM);
         st->priv_data = sc;
86329cce
 
         sc->codec = st->codec;
         sc->index = i;
         sc->media_type = codec_get_tag(gxf_media_types, sc->codec->codec_id);
         if (st->codec->codec_type == CODEC_TYPE_AUDIO) {
             if (st->codec->codec_id != CODEC_ID_PCM_S16LE) {
                 av_log(s, AV_LOG_ERROR, "only 16 BIT PCM LE allowed for now\n");
                 return -1;
             }
             if (st->codec->sample_rate != 48000) {
                 av_log(s, AV_LOG_ERROR, "only 48000hz sampling rate is allowed\n");
                 return -1;
             }
             if (st->codec->channels != 1) {
                 av_log(s, AV_LOG_ERROR, "only mono tracks are allowed\n");
                 return -1;
             }
             sc->track_type = 2;
             sc->sample_rate = st->codec->sample_rate;
201f1d45
             av_set_pts_info(st, 64, 1, sc->sample_rate);
86329cce
             sc->sample_size = 16;
             sc->frame_rate_index = -2;
             sc->lines_index = -2;
             sc->fields = -2;
             gxf->audio_tracks++;
             gxf->flags |= 0x04000000; /* audio is 16 bit pcm */
         } else if (sc->codec->codec_type == CODEC_TYPE_VIDEO) {
             /* FIXME check from time_base ? */
             if (sc->codec->height == 480 || sc->codec->height == 512) { /* NTSC or NTSC+VBI */
                 sc->frame_rate_index = 5;
                 sc->sample_rate = 60;
                 gxf->flags |= 0x00000080;
             } else { /* assume PAL */
                 sc->frame_rate_index = 6;
                 sc->media_type++;
                 sc->sample_rate = 50;
                 gxf->flags |= 0x00000040;
             }
             gxf->sample_rate = sc->sample_rate;
20121213
             av_set_pts_info(st, 64, 1, st->codec->time_base.den);
             sc->dts_delay = GXF_NODELAY;
86329cce
             if (gxf_find_lines_index(sc) < 0)
                 sc->lines_index = -1;
             sc->sample_size = st->codec->bit_rate;
             sc->fields = 2; /* interlaced */
             switch (sc->codec->codec_id) {
             case CODEC_ID_MPEG2VIDEO:
afbbe5e3
                 sc->first_gop_closed = -1;
86329cce
                 sc->track_type = 4;
                 gxf->mpeg_tracks++;
                 gxf->flags |= 0x00008000;
                 break;
             case CODEC_ID_DVVIDEO:
                 if (sc->codec->pix_fmt == PIX_FMT_YUV422P) {
                     sc->media_type += 2;
                     sc->track_type = 6;
                     gxf->flags |= 0x00002000;
                 } else {
                     sc->track_type = 5;
                     gxf->flags |= 0x00001000;
                 }
                 break;
             default:
99fd05cb
                 av_log(s, AV_LOG_ERROR, "video codec not supported\n");
86329cce
                 return -1;
             }
         }
     }
63601677
 
     if (ff_audio_interleave_init(s, GXF_samples_per_frame, (AVRational){ 1, 48000 }) < 0)
         return -1;
 
86329cce
     gxf_write_map_packet(pb, gxf);
     //gxf_write_flt_packet(pb, gxf);
     gxf_write_umf_packet(pb, gxf);
     put_flush_packet(pb);
     return 0;
 }
 
 static int gxf_write_eos_packet(ByteIOContext *pb, GXFContext *ctx)
 {
bc5c918e
     int64_t pos = url_ftell(pb);
86329cce
 
     gxf_write_packet_header(pb, PKT_EOS);
     return updatePacketSize(pb, pos);
 }
 
 static int gxf_write_trailer(AVFormatContext *s)
 {
899681cd
     ByteIOContext *pb = s->pb;
86329cce
     GXFContext *gxf = s->priv_data;
bc5c918e
     int64_t end;
86329cce
 
63601677
     ff_audio_interleave_close(s);
86329cce
 
     gxf_write_eos_packet(pb, gxf);
     end = url_ftell(pb);
     url_fseek(pb, 0, SEEK_SET);
     /* overwrite map and umf packets with new values */
     gxf_write_map_packet(pb, gxf);
     //gxf_write_flt_packet(pb, gxf);
     gxf_write_umf_packet(pb, gxf);
     url_fseek(pb, end, SEEK_SET);
     return 0;
 }
 
76c9cb0a
 static int gxf_parse_mpeg_frame(GXFStreamContext *sc, const uint8_t *buf, int size)
 {
     uint32_t c=-1;
     int i;
     for(i=0; i<size-4 && c!=0x100; i++){
         c = (c<<8) + buf[i];
afbbe5e3
         if(c == 0x1B8 && sc->first_gop_closed == -1) /* GOP start code */
2b7e230b
             sc->first_gop_closed= (buf[i+4]>>6)&1;
76c9cb0a
     }
     return (buf[i+1]>>3)&7;
 }
 
86329cce
 static int gxf_write_media_preamble(ByteIOContext *pb, GXFContext *ctx, AVPacket *pkt, int size)
 {
5efa932d
     GXFStreamContext *sc = ctx->fc->streams[pkt->stream_index]->priv_data;
2ead1eb0
     unsigned field_nb;
     /* If the video is frame-encoded, the frame numbers shall be represented by
      * even field numbers.
      * see SMPTE360M-2004  6.4.2.1.3 Media field number */
     if (sc->codec->codec_type == CODEC_TYPE_VIDEO) {
         field_nb = ctx->nb_fields;
     } else {
         field_nb = av_rescale_rnd(pkt->dts, ctx->sample_rate, sc->codec->time_base.den, AV_ROUND_UP);
     }
86329cce
 
     put_byte(pb, sc->media_type);
     put_byte(pb, sc->index);
2ead1eb0
     put_be32(pb, field_nb);
86329cce
     if (sc->codec->codec_type == CODEC_TYPE_AUDIO) {
         put_be16(pb, 0);
         put_be16(pb, size / 2);
     } else if (sc->codec->codec_id == CODEC_ID_MPEG2VIDEO) {
76c9cb0a
         int frame_type = gxf_parse_mpeg_frame(sc, pkt->data, pkt->size);
         if (frame_type == FF_I_TYPE) {
86329cce
             put_byte(pb, 0x0d);
             sc->iframes++;
76c9cb0a
         } else if (frame_type == FF_B_TYPE) {
86329cce
             put_byte(pb, 0x0f);
             sc->bframes++;
         } else {
             put_byte(pb, 0x0e);
             sc->pframes++;
         }
         put_be24(pb, size);
     } else if (sc->codec->codec_id == CODEC_ID_DVVIDEO) {
         put_byte(pb, size / 4096);
         put_be24(pb, 0);
     } else
         put_be32(pb, size);
2ead1eb0
     put_be32(pb, field_nb);
86329cce
     put_byte(pb, 1); /* flags */
     put_byte(pb, 0); /* reserved */
     return 16;
 }
 
 static int gxf_write_media_packet(ByteIOContext *pb, GXFContext *ctx, AVPacket *pkt)
 {
5efa932d
     GXFStreamContext *sc = ctx->fc->streams[pkt->stream_index]->priv_data;
bc5c918e
     int64_t pos = url_ftell(pb);
86329cce
     int padding = 0;
 
     gxf_write_packet_header(pb, PKT_MEDIA);
     if (sc->codec->codec_id == CODEC_ID_MPEG2VIDEO && pkt->size % 4) /* MPEG-2 frames must be padded */
         padding = 4 - pkt->size % 4;
3068f1c8
     else if (sc->codec->codec_type == CODEC_TYPE_AUDIO)
         padding = GXF_AUDIO_PACKET_SIZE - pkt->size;
86329cce
     gxf_write_media_preamble(pb, ctx, pkt, pkt->size + padding);
3068f1c8
     put_buffer(pb, pkt->data, pkt->size);
86329cce
     gxf_write_padding(pb, padding);
507ff760
 
     if (sc->codec->codec_type == CODEC_TYPE_VIDEO)
032d8aec
         ctx->nb_fields += 2; // count fields
507ff760
 
86329cce
     return updatePacketSize(pb, pos);
 }
 
 static int gxf_write_packet(AVFormatContext *s, AVPacket *pkt)
 {
     GXFContext *gxf = s->priv_data;
 
899681cd
     gxf_write_media_packet(s->pb, gxf, pkt);
     put_flush_packet(s->pb);
86329cce
     return 0;
 }
 
 static int gxf_interleave_packet(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush)
 {
16e3b0b3
     return ff_audio_rechunk_interleave(s, out, pkt, flush,
63601677
                                av_interleave_packet_per_dts, ff_interleave_compare_dts);
86329cce
 }
 
 AVOutputFormat gxf_muxer = {
     "gxf",
bde15e74
     NULL_IF_CONFIG_SMALL("GXF format"),
86329cce
     NULL,
     "gxf",
     sizeof(GXFContext),
     CODEC_ID_PCM_S16LE,
     CODEC_ID_MPEG2VIDEO,
     gxf_write_header,
     gxf_write_packet,
     gxf_write_trailer,
     0,
     NULL,
     gxf_interleave_packet,
 };