2007-08-09 04:12:48 +03:00
|
|
|
/*
|
|
|
|
* nut muxer
|
|
|
|
* Copyright (c) 2004-2007 Michael Niedermayer
|
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2007-08-09 04:12:48 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2007-08-09 04:12:48 +03:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2007-08-09 04:12:48 +03:00
|
|
|
* 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
|
2011-03-18 19:35:10 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2007-08-09 04:12:48 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2013-11-23 23:32:55 +03:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2009-01-12 00:19:48 +02:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2011-06-04 14:58:23 +03:00
|
|
|
#include "libavutil/mathematics.h"
|
2008-05-09 14:56:36 +03:00
|
|
|
#include "libavutil/tree.h"
|
2011-05-22 13:46:29 +03:00
|
|
|
#include "libavutil/dict.h"
|
2014-03-06 19:58:34 +03:00
|
|
|
#include "libavutil/time.h"
|
|
|
|
#include "libavutil/opt.h"
|
2008-05-09 14:56:36 +03:00
|
|
|
#include "libavcodec/mpegaudiodata.h"
|
2007-08-09 04:12:48 +03:00
|
|
|
#include "nut.h"
|
2010-05-22 19:01:32 +03:00
|
|
|
#include "internal.h"
|
2011-03-17 13:56:25 +02:00
|
|
|
#include "avio_internal.h"
|
2012-11-27 19:52:28 +03:00
|
|
|
#include "riff.h"
|
2008-02-15 04:57:19 +02:00
|
|
|
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
static int find_expected_header(AVCodecParameters *p, int size, int key_frame,
|
2012-10-27 01:41:02 +03:00
|
|
|
uint8_t out[64])
|
|
|
|
{
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
int sample_rate = p->sample_rate;
|
2008-02-15 04:57:19 +02:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (size > 4096)
|
2008-02-15 04:57:19 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
AV_WB24(out, 1);
|
|
|
|
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
if (p->codec_id == AV_CODEC_ID_MPEG4) {
|
2012-10-27 01:41:02 +03:00
|
|
|
if (key_frame) {
|
2008-02-15 04:57:19 +02:00
|
|
|
return 3;
|
2012-10-27 01:41:02 +03:00
|
|
|
} else {
|
|
|
|
out[3] = 0xB6;
|
2008-02-15 04:57:19 +02:00
|
|
|
return 4;
|
|
|
|
}
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
} else if (p->codec_id == AV_CODEC_ID_MPEG1VIDEO ||
|
|
|
|
p->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
|
2008-02-15 04:57:19 +02:00
|
|
|
return 3;
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
} else if (p->codec_id == AV_CODEC_ID_H264) {
|
2008-02-15 04:57:19 +02:00
|
|
|
return 3;
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
} else if (p->codec_id == AV_CODEC_ID_MP3 ||
|
|
|
|
p->codec_id == AV_CODEC_ID_MP2) {
|
2008-02-15 04:57:19 +02:00
|
|
|
int lsf, mpeg25, sample_rate_index, bitrate_index, frame_size;
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
int layer = p->codec_id == AV_CODEC_ID_MP3 ? 3 : 2;
|
2012-10-27 01:41:02 +03:00
|
|
|
unsigned int header = 0xFFF00000;
|
2008-02-15 04:57:19 +02:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
lsf = sample_rate < (24000 + 32000) / 2;
|
|
|
|
mpeg25 = sample_rate < (12000 + 16000) / 2;
|
2008-02-15 04:57:19 +02:00
|
|
|
sample_rate <<= lsf + mpeg25;
|
2012-10-27 01:41:02 +03:00
|
|
|
if (sample_rate < (32000 + 44100) / 2)
|
|
|
|
sample_rate_index = 2;
|
|
|
|
else if (sample_rate < (44100 + 48000) / 2)
|
|
|
|
sample_rate_index = 0;
|
|
|
|
else
|
|
|
|
sample_rate_index = 1;
|
2008-02-15 04:57:19 +02:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
sample_rate = avpriv_mpa_freq_tab[sample_rate_index] >> (lsf + mpeg25);
|
2008-02-15 04:57:19 +02:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (bitrate_index = 2; bitrate_index < 30; bitrate_index++) {
|
|
|
|
frame_size =
|
|
|
|
avpriv_mpa_bitrate_tab[lsf][layer - 1][bitrate_index >> 1];
|
|
|
|
frame_size = (frame_size * 144000) / (sample_rate << lsf) +
|
|
|
|
(bitrate_index & 1);
|
2008-02-15 04:57:19 +02:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (frame_size == size)
|
2008-02-15 04:57:19 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
header |= (!lsf) << 19;
|
|
|
|
header |= (4 - layer) << 17;
|
|
|
|
header |= 1 << 16; //no crc
|
2008-02-15 04:57:19 +02:00
|
|
|
AV_WB32(out, header);
|
2012-10-27 01:41:02 +03:00
|
|
|
if (size <= 0)
|
|
|
|
return 2; //we guess there is no crc, if there is one the user clearly does not care about overhead
|
|
|
|
if (bitrate_index == 30)
|
|
|
|
return -1; //something is wrong ...
|
2008-02-15 04:57:19 +02:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
header |= (bitrate_index >> 1) << 12;
|
|
|
|
header |= sample_rate_index << 10;
|
|
|
|
header |= (bitrate_index & 1) << 9;
|
2008-02-15 04:57:19 +02:00
|
|
|
|
|
|
|
return 2; //FIXME actually put the needed ones in build_elision_headers()
|
2013-02-14 14:42:57 +03:00
|
|
|
//return 3; //we guess that the private bit is not set
|
2008-03-10 20:42:09 +02:00
|
|
|
//FIXME the above assumptions should be checked, if these turn out false too often something should be done
|
2008-02-15 04:57:19 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
static int find_header_idx(AVFormatContext *s, AVCodecParameters *p, int size,
|
2012-10-27 01:41:02 +03:00
|
|
|
int frame_type)
|
|
|
|
{
|
2008-02-15 04:57:19 +02:00
|
|
|
NUTContext *nut = s->priv_data;
|
|
|
|
uint8_t out[64];
|
|
|
|
int i;
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
int len = find_expected_header(p, size, frame_type, out);
|
2008-02-15 04:57:19 +02:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (i = 1; i < nut->header_count; i++) {
|
|
|
|
if (len == nut->header_len[i] && !memcmp(out, nut->header[i], len)) {
|
2008-02-15 04:57:19 +02:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
2012-10-27 01:41:02 +03:00
|
|
|
|
2008-02-15 04:57:19 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static void build_elision_headers(AVFormatContext *s)
|
|
|
|
{
|
2008-02-15 04:57:19 +02:00
|
|
|
NUTContext *nut = s->priv_data;
|
|
|
|
int i;
|
|
|
|
//FIXME this is lame
|
|
|
|
//FIXME write a 2pass mode to find the maximal headers
|
2012-10-27 01:41:02 +03:00
|
|
|
static const uint8_t headers[][5] = {
|
|
|
|
{ 3, 0x00, 0x00, 0x01 },
|
|
|
|
{ 4, 0x00, 0x00, 0x01, 0xB6},
|
|
|
|
{ 2, 0xFF, 0xFA }, //mp3+crc
|
|
|
|
{ 2, 0xFF, 0xFB }, //mp3
|
|
|
|
{ 2, 0xFF, 0xFC }, //mp2+crc
|
|
|
|
{ 2, 0xFF, 0xFD }, //mp2
|
2008-02-15 04:57:19 +02:00
|
|
|
};
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
nut->header_count = 7;
|
|
|
|
for (i = 1; i < nut->header_count; i++) {
|
|
|
|
nut->header_len[i] = headers[i - 1][0];
|
|
|
|
nut->header[i] = &headers[i - 1][1];
|
2008-02-15 04:57:19 +02:00
|
|
|
}
|
|
|
|
}
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static void build_frame_code(AVFormatContext *s)
|
|
|
|
{
|
2007-08-09 04:12:48 +03:00
|
|
|
NUTContext *nut = s->priv_data;
|
|
|
|
int key_frame, index, pred, stream_id;
|
2012-10-27 01:41:02 +03:00
|
|
|
int start = 1;
|
|
|
|
int end = 254;
|
|
|
|
int keyframe_0_esc = s->nb_streams > 2;
|
2007-08-09 04:12:48 +03:00
|
|
|
int pred_table[10];
|
2007-08-09 23:52:49 +03:00
|
|
|
FrameCode *ft;
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
ft = &nut->frame_code[start];
|
|
|
|
ft->flags = FLAG_CODED;
|
|
|
|
ft->size_mul = 1;
|
|
|
|
ft->pts_delta = 1;
|
2007-08-09 23:52:49 +03:00
|
|
|
start++;
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (keyframe_0_esc) {
|
2007-08-09 04:12:48 +03:00
|
|
|
/* keyframe = 0 escape */
|
2012-10-27 01:41:02 +03:00
|
|
|
FrameCode *ft = &nut->frame_code[start];
|
|
|
|
ft->flags = FLAG_STREAM_ID | FLAG_SIZE_MSB | FLAG_CODED_PTS;
|
|
|
|
ft->size_mul = 1;
|
2007-08-09 04:12:48 +03:00
|
|
|
start++;
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (stream_id = 0; stream_id < s->nb_streams; stream_id++) {
|
|
|
|
int start2 = start + (end - start) * stream_id / s->nb_streams;
|
|
|
|
int end2 = start + (end - start) * (stream_id + 1) / s->nb_streams;
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
AVCodecParameters *par = s->streams[stream_id]->codecpar;
|
|
|
|
const AVCodecDescriptor *desc = avcodec_descriptor_get(par->codec_id);
|
|
|
|
int is_audio = par->codec_type == AVMEDIA_TYPE_AUDIO;
|
2012-10-27 01:41:02 +03:00
|
|
|
int intra_only = /*codec->intra_only || */ is_audio;
|
2007-08-09 04:12:48 +03:00
|
|
|
int pred_count;
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (key_frame = 0; key_frame < 2; key_frame++) {
|
|
|
|
if (!intra_only || !keyframe_0_esc || key_frame != 0) {
|
|
|
|
FrameCode *ft = &nut->frame_code[start2];
|
|
|
|
ft->flags = FLAG_KEY * key_frame;
|
|
|
|
ft->flags |= FLAG_SIZE_MSB | FLAG_CODED_PTS;
|
|
|
|
ft->stream_id = stream_id;
|
|
|
|
ft->size_mul = 1;
|
|
|
|
if (is_audio)
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
ft->header_idx = find_header_idx(s, par, -1, key_frame);
|
2007-08-09 04:12:48 +03:00
|
|
|
start2++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
key_frame = intra_only;
|
|
|
|
if (is_audio) {
|
2016-02-21 11:55:18 +02:00
|
|
|
int frame_bytes;
|
2007-08-09 04:12:48 +03:00
|
|
|
int pts;
|
2016-02-21 11:55:18 +02:00
|
|
|
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
if (par->block_align > 0) {
|
|
|
|
frame_bytes = par->block_align;
|
2016-02-21 11:55:18 +02:00
|
|
|
} else {
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
int frame_size = av_get_audio_frame_duration2(par, 0);
|
|
|
|
frame_bytes = frame_size * (int64_t)par->bit_rate / (8 * par->sample_rate);
|
2016-02-21 11:55:18 +02:00
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (pts = 0; pts < 2; pts++)
|
|
|
|
for (pred = 0; pred < 2; pred++) {
|
|
|
|
FrameCode *ft = &nut->frame_code[start2];
|
|
|
|
ft->flags = FLAG_KEY * key_frame;
|
|
|
|
ft->stream_id = stream_id;
|
|
|
|
ft->size_mul = frame_bytes + 2;
|
|
|
|
ft->size_lsb = frame_bytes + pred;
|
|
|
|
ft->pts_delta = pts;
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
ft->header_idx = find_header_idx(s, par, frame_bytes + pred, key_frame);
|
2007-08-09 04:12:48 +03:00
|
|
|
start2++;
|
|
|
|
}
|
2012-10-27 01:41:02 +03:00
|
|
|
} else {
|
|
|
|
FrameCode *ft = &nut->frame_code[start2];
|
|
|
|
ft->flags = FLAG_KEY | FLAG_SIZE_MSB;
|
|
|
|
ft->stream_id = stream_id;
|
|
|
|
ft->size_mul = 1;
|
|
|
|
ft->pts_delta = 1;
|
2007-08-09 04:12:48 +03:00
|
|
|
start2++;
|
|
|
|
}
|
|
|
|
|
2014-11-15 10:46:05 +02:00
|
|
|
if (desc && desc->props & AV_CODEC_PROP_REORDER) {
|
2012-10-27 01:41:02 +03:00
|
|
|
pred_count = 5;
|
|
|
|
pred_table[0] = -2;
|
|
|
|
pred_table[1] = -1;
|
|
|
|
pred_table[2] = 1;
|
|
|
|
pred_table[3] = 3;
|
|
|
|
pred_table[4] = 4;
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
} else if (par->codec_id == AV_CODEC_ID_VORBIS) {
|
2012-10-27 01:41:02 +03:00
|
|
|
pred_count = 3;
|
|
|
|
pred_table[0] = 2;
|
|
|
|
pred_table[1] = 9;
|
|
|
|
pred_table[2] = 16;
|
|
|
|
} else {
|
|
|
|
pred_count = 1;
|
|
|
|
pred_table[0] = 1;
|
2007-08-09 04:12:48 +03:00
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (pred = 0; pred < pred_count; pred++) {
|
|
|
|
int start3 = start2 + (end2 - start2) * pred / pred_count;
|
|
|
|
int end3 = start2 + (end2 - start2) * (pred + 1) / pred_count;
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (index = start3; index < end3; index++) {
|
|
|
|
FrameCode *ft = &nut->frame_code[index];
|
|
|
|
ft->flags = FLAG_KEY * key_frame;
|
|
|
|
ft->flags |= FLAG_SIZE_MSB;
|
|
|
|
ft->stream_id = stream_id;
|
2007-08-09 04:12:48 +03:00
|
|
|
//FIXME use single byte size and pred from last
|
2012-10-27 01:41:02 +03:00
|
|
|
ft->size_mul = end3 - start3;
|
|
|
|
ft->size_lsb = index - start3;
|
|
|
|
ft->pts_delta = pred_table[pred];
|
|
|
|
if (is_audio)
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
ft->header_idx = find_header_idx(s, par, -1, key_frame);
|
2007-08-09 04:12:48 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-10-27 01:41:02 +03:00
|
|
|
memmove(&nut->frame_code['N' + 1], &nut->frame_code['N'],
|
|
|
|
sizeof(FrameCode) * (255 - 'N'));
|
|
|
|
nut->frame_code[0].flags =
|
|
|
|
nut->frame_code[255].flags =
|
|
|
|
nut->frame_code['N'].flags = FLAG_INVALID;
|
2007-08-09 04:12:48 +03:00
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static void put_tt(NUTContext *nut, AVRational *time_base, AVIOContext *bc,
|
|
|
|
uint64_t val)
|
|
|
|
{
|
2007-08-09 23:56:42 +03:00
|
|
|
val *= nut->time_base_count;
|
2011-03-16 07:42:43 +02:00
|
|
|
val += time_base - nut->time_base;
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, val);
|
2007-08-09 23:56:42 +03:00
|
|
|
}
|
2007-08-09 04:12:48 +03:00
|
|
|
/**
|
2010-06-30 18:38:06 +03:00
|
|
|
* Store a string as vb.
|
2007-08-09 04:12:48 +03:00
|
|
|
*/
|
2012-10-27 01:41:02 +03:00
|
|
|
static void put_str(AVIOContext *bc, const char *string)
|
|
|
|
{
|
|
|
|
int len = strlen(string);
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, len);
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_write(bc, string, len);
|
2007-08-09 04:12:48 +03:00
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static void put_s(AVIOContext *bc, int64_t val)
|
|
|
|
{
|
|
|
|
ff_put_v(bc, 2 * FFABS(val) - (val > 0));
|
2007-08-09 04:12:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef TRACE
|
2012-09-27 20:30:37 +03:00
|
|
|
static inline void ff_put_v_trace(AVIOContext *bc, uint64_t v, const char *file,
|
|
|
|
const char *func, int line)
|
|
|
|
{
|
2010-07-09 15:10:47 +03:00
|
|
|
av_log(NULL, AV_LOG_DEBUG, "ff_put_v %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line);
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, v);
|
2007-08-09 04:12:48 +03:00
|
|
|
}
|
|
|
|
|
2012-09-27 20:30:37 +03:00
|
|
|
static inline void put_s_trace(AVIOContext *bc, int64_t v, const char *file,
|
|
|
|
const char *func, int line)
|
|
|
|
{
|
2007-08-10 00:04:10 +03:00
|
|
|
av_log(NULL, AV_LOG_DEBUG, "put_s %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line);
|
2007-08-09 04:12:48 +03:00
|
|
|
|
|
|
|
put_s(bc, v);
|
|
|
|
}
|
2010-07-09 15:10:47 +03:00
|
|
|
#define ff_put_v(bc, v) ff_put_v_trace(bc, v, __FILE__, __PRETTY_FUNCTION__, __LINE__)
|
2007-08-09 04:12:48 +03:00
|
|
|
#define put_s(bc, v) put_s_trace(bc, v, __FILE__, __PRETTY_FUNCTION__, __LINE__)
|
|
|
|
#endif
|
|
|
|
|
2007-08-09 23:54:17 +03:00
|
|
|
//FIXME remove calculate_checksum
|
2012-10-27 01:41:02 +03:00
|
|
|
static void put_packet(NUTContext *nut, AVIOContext *bc, AVIOContext *dyn_bc,
|
|
|
|
int calculate_checksum, uint64_t startcode)
|
|
|
|
{
|
|
|
|
uint8_t *dyn_buf = NULL;
|
|
|
|
int dyn_size = avio_close_dyn_buf(dyn_bc, &dyn_buf);
|
|
|
|
int forw_ptr = dyn_size + 4 * calculate_checksum;
|
2007-08-09 15:48:52 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (forw_ptr > 4096)
|
2011-03-17 13:56:25 +02:00
|
|
|
ffio_init_checksum(bc, ff_crc04C11DB7_update, 0);
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_wb64(bc, startcode);
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, forw_ptr);
|
2012-10-27 01:41:02 +03:00
|
|
|
if (forw_ptr > 4096)
|
2011-03-17 14:04:38 +02:00
|
|
|
avio_wl32(bc, ffio_get_checksum(bc));
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (calculate_checksum)
|
2011-03-17 13:56:25 +02:00
|
|
|
ffio_init_checksum(bc, ff_crc04C11DB7_update, 0);
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_write(bc, dyn_buf, dyn_size);
|
2012-10-27 01:41:02 +03:00
|
|
|
if (calculate_checksum)
|
2011-03-17 14:04:38 +02:00
|
|
|
avio_wl32(bc, ffio_get_checksum(bc));
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2007-08-09 15:38:24 +03:00
|
|
|
av_free(dyn_buf);
|
2007-08-09 04:12:48 +03:00
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static void write_mainheader(NUTContext *nut, AVIOContext *bc)
|
|
|
|
{
|
|
|
|
int i, j, tmp_pts, tmp_flags, tmp_stream, tmp_mul, tmp_size, tmp_fields,
|
|
|
|
tmp_head_idx;
|
2008-02-15 04:57:19 +02:00
|
|
|
int64_t tmp_match;
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2014-03-06 19:58:34 +03:00
|
|
|
ff_put_v(bc, nut->version);
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, nut->avf->nb_streams);
|
|
|
|
ff_put_v(bc, nut->max_distance);
|
|
|
|
ff_put_v(bc, nut->time_base_count);
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (i = 0; i < nut->time_base_count; i++) {
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, nut->time_base[i].num);
|
|
|
|
ff_put_v(bc, nut->time_base[i].den);
|
2007-08-09 04:12:48 +03:00
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
tmp_pts = 0;
|
|
|
|
tmp_mul = 1;
|
|
|
|
tmp_stream = 0;
|
|
|
|
tmp_match = 1 - (1LL << 62);
|
|
|
|
tmp_head_idx = 0;
|
|
|
|
for (i = 0; i < 256; ) {
|
|
|
|
tmp_fields = 0;
|
|
|
|
tmp_size = 0;
|
2007-08-09 04:12:48 +03:00
|
|
|
// tmp_res=0;
|
2012-10-27 01:41:02 +03:00
|
|
|
if (tmp_pts != nut->frame_code[i].pts_delta)
|
|
|
|
tmp_fields = 1;
|
|
|
|
if (tmp_mul != nut->frame_code[i].size_mul)
|
|
|
|
tmp_fields = 2;
|
|
|
|
if (tmp_stream != nut->frame_code[i].stream_id)
|
|
|
|
tmp_fields = 3;
|
|
|
|
if (tmp_size != nut->frame_code[i].size_lsb)
|
|
|
|
tmp_fields = 4;
|
2007-08-09 04:12:48 +03:00
|
|
|
// if(tmp_res != nut->frame_code[i].res ) tmp_fields=5;
|
2012-10-27 01:41:02 +03:00
|
|
|
if (tmp_head_idx != nut->frame_code[i].header_idx)
|
|
|
|
tmp_fields = 8;
|
|
|
|
|
|
|
|
tmp_pts = nut->frame_code[i].pts_delta;
|
|
|
|
tmp_flags = nut->frame_code[i].flags;
|
|
|
|
tmp_stream = nut->frame_code[i].stream_id;
|
|
|
|
tmp_mul = nut->frame_code[i].size_mul;
|
|
|
|
tmp_size = nut->frame_code[i].size_lsb;
|
2007-08-09 04:12:48 +03:00
|
|
|
// tmp_res = nut->frame_code[i].res;
|
2012-10-27 01:41:02 +03:00
|
|
|
tmp_head_idx = nut->frame_code[i].header_idx;
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (j = 0; i < 256; j++, i++) {
|
|
|
|
if (i == 'N') {
|
2007-08-09 04:12:48 +03:00
|
|
|
j--;
|
|
|
|
continue;
|
|
|
|
}
|
2012-10-27 01:41:02 +03:00
|
|
|
if (nut->frame_code[i].pts_delta != tmp_pts ||
|
|
|
|
nut->frame_code[i].flags != tmp_flags ||
|
|
|
|
nut->frame_code[i].stream_id != tmp_stream ||
|
|
|
|
nut->frame_code[i].size_mul != tmp_mul ||
|
|
|
|
nut->frame_code[i].size_lsb != tmp_size + j ||
|
|
|
|
// nut->frame_code[i].res != tmp_res ||
|
|
|
|
nut->frame_code[i].header_idx != tmp_head_idx)
|
|
|
|
break;
|
2007-08-09 04:12:48 +03:00
|
|
|
}
|
2012-10-27 01:41:02 +03:00
|
|
|
if (j != tmp_mul - tmp_size)
|
|
|
|
tmp_fields = 6;
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, tmp_flags);
|
|
|
|
ff_put_v(bc, tmp_fields);
|
2012-10-27 01:41:02 +03:00
|
|
|
if (tmp_fields > 0)
|
|
|
|
put_s(bc, tmp_pts);
|
|
|
|
if (tmp_fields > 1)
|
|
|
|
ff_put_v(bc, tmp_mul);
|
|
|
|
if (tmp_fields > 2)
|
|
|
|
ff_put_v(bc, tmp_stream);
|
|
|
|
if (tmp_fields > 3)
|
|
|
|
ff_put_v(bc, tmp_size);
|
|
|
|
if (tmp_fields > 4)
|
|
|
|
ff_put_v(bc, 0 /*tmp_res*/);
|
|
|
|
if (tmp_fields > 5)
|
|
|
|
ff_put_v(bc, j);
|
|
|
|
if (tmp_fields > 6)
|
|
|
|
ff_put_v(bc, tmp_match);
|
|
|
|
if (tmp_fields > 7)
|
|
|
|
ff_put_v(bc, tmp_head_idx);
|
2008-02-15 04:57:19 +02:00
|
|
|
}
|
2012-10-27 01:41:02 +03:00
|
|
|
ff_put_v(bc, nut->header_count - 1);
|
|
|
|
for (i = 1; i < nut->header_count; i++) {
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, nut->header_len[i]);
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_write(bc, nut->header[i], nut->header_len[i]);
|
2007-08-09 04:12:48 +03:00
|
|
|
}
|
2014-03-06 19:58:34 +03:00
|
|
|
// flags had been effectively introduced in version 4
|
|
|
|
if (nut->version > NUT_STABLE_VERSION)
|
|
|
|
ff_put_v(bc, nut->flags);
|
2007-08-09 15:22:02 +03:00
|
|
|
}
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static int write_streamheader(AVFormatContext *avctx, AVIOContext *bc,
|
|
|
|
AVStream *st, int i)
|
|
|
|
{
|
|
|
|
NUTContext *nut = avctx->priv_data;
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
AVCodecParameters *par = st->codecpar;
|
|
|
|
const AVCodecDescriptor *desc = avcodec_descriptor_get(par->codec_id);
|
|
|
|
unsigned codec_tag = av_codec_get_tag(ff_nut_codec_tags, par->codec_id);
|
2012-10-12 16:49:36 +03:00
|
|
|
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, i);
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
switch (par->codec_type) {
|
2012-10-27 01:41:02 +03:00
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
|
|
|
ff_put_v(bc, 0);
|
|
|
|
break;
|
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
|
|
|
ff_put_v(bc, 1);
|
|
|
|
break;
|
|
|
|
case AVMEDIA_TYPE_SUBTITLE:
|
|
|
|
ff_put_v(bc, 2);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ff_put_v(bc, 3);
|
|
|
|
break;
|
2007-08-09 15:25:58 +03:00
|
|
|
}
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, 4);
|
2012-10-12 16:49:36 +03:00
|
|
|
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
if (av_codec_get_id(ff_nut_codec_tags, par->codec_tag) == par->codec_id ||
|
|
|
|
!codec_tag || par->codec_id == AV_CODEC_ID_RAWVIDEO)
|
|
|
|
codec_tag = par->codec_tag;
|
2012-10-12 16:49:36 +03:00
|
|
|
|
|
|
|
if (codec_tag) {
|
|
|
|
avio_wl32(bc, codec_tag);
|
2010-06-03 00:57:40 +03:00
|
|
|
} else {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "No codec tag defined for stream %d\n", i);
|
2010-06-03 00:57:37 +03:00
|
|
|
return AVERROR(EINVAL);
|
2010-06-03 00:57:40 +03:00
|
|
|
}
|
2007-08-09 15:25:58 +03:00
|
|
|
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, nut->stream[i].time_base - nut->time_base);
|
|
|
|
ff_put_v(bc, nut->stream[i].msb_pts_shift);
|
|
|
|
ff_put_v(bc, nut->stream[i].max_pts_distance);
|
2014-11-15 10:46:05 +02:00
|
|
|
ff_put_v(bc, (desc && desc->props & AV_CODEC_PROP_REORDER) ? 16 : 0);
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_w8(bc, 0); /* flags: 0x1 - fixed_fps, 0x2 - index_present */
|
2007-08-09 15:25:58 +03:00
|
|
|
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
ff_put_v(bc, par->extradata_size);
|
|
|
|
avio_write(bc, par->extradata, par->extradata_size);
|
2007-08-09 15:25:58 +03:00
|
|
|
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
switch (par->codec_type) {
|
2010-03-31 02:30:55 +03:00
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
ff_put_v(bc, par->sample_rate);
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, 1);
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
ff_put_v(bc, par->channels);
|
2007-08-09 15:25:58 +03:00
|
|
|
break;
|
2010-03-31 02:30:55 +03:00
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
ff_put_v(bc, par->width);
|
|
|
|
ff_put_v(bc, par->height);
|
2007-08-10 17:23:18 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (st->sample_aspect_ratio.num <= 0 ||
|
|
|
|
st->sample_aspect_ratio.den <= 0) {
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, 0);
|
|
|
|
ff_put_v(bc, 0);
|
2012-10-27 01:41:02 +03:00
|
|
|
} else {
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, st->sample_aspect_ratio.num);
|
|
|
|
ff_put_v(bc, st->sample_aspect_ratio.den);
|
2007-08-10 17:23:18 +03:00
|
|
|
}
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, 0); /* csp type -- unknown */
|
2007-08-09 15:25:58 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static int add_info(AVIOContext *bc, const char *type, const char *value)
|
|
|
|
{
|
2007-08-10 14:52:28 +03:00
|
|
|
put_str(bc, type);
|
|
|
|
put_s(bc, -1);
|
|
|
|
put_str(bc, value);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static int write_globalinfo(NUTContext *nut, AVIOContext *bc)
|
|
|
|
{
|
|
|
|
AVFormatContext *s = nut->avf;
|
2011-05-22 13:46:29 +03:00
|
|
|
AVDictionaryEntry *t = NULL;
|
2011-02-20 12:04:12 +02:00
|
|
|
AVIOContext *dyn_bc;
|
2012-10-27 01:41:02 +03:00
|
|
|
uint8_t *dyn_buf = NULL;
|
|
|
|
int count = 0, dyn_size;
|
|
|
|
int ret = avio_open_dyn_buf(&dyn_bc);
|
|
|
|
if (ret < 0)
|
2007-11-21 09:41:00 +02:00
|
|
|
return ret;
|
2007-08-10 14:52:28 +03:00
|
|
|
|
2011-05-22 13:46:29 +03:00
|
|
|
while ((t = av_dict_get(s->metadata, "", t, AV_DICT_IGNORE_SUFFIX)))
|
2010-02-24 08:27:12 +02:00
|
|
|
count += add_info(dyn_bc, t->key, t->value);
|
2007-08-10 14:52:28 +03:00
|
|
|
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, 0); //stream_if_plus1
|
|
|
|
ff_put_v(bc, 0); //chapter_id
|
|
|
|
ff_put_v(bc, 0); //timestamp_start
|
|
|
|
ff_put_v(bc, 0); //length
|
2007-08-10 14:52:28 +03:00
|
|
|
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, count);
|
2007-08-10 14:52:28 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
dyn_size = avio_close_dyn_buf(dyn_bc, &dyn_buf);
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_write(bc, dyn_buf, dyn_size);
|
2007-08-10 14:52:28 +03:00
|
|
|
av_free(dyn_buf);
|
2007-11-21 09:41:00 +02:00
|
|
|
return 0;
|
2007-08-10 14:52:28 +03:00
|
|
|
}
|
|
|
|
|
2011-02-20 12:04:12 +02:00
|
|
|
static int write_streaminfo(NUTContext *nut, AVIOContext *bc, int stream_id){
|
2008-03-07 21:25:09 +02:00
|
|
|
AVFormatContext *s= nut->avf;
|
|
|
|
AVStream* st = s->streams[stream_id];
|
2011-02-20 12:04:12 +02:00
|
|
|
AVIOContext *dyn_bc;
|
2008-03-07 21:25:09 +02:00
|
|
|
uint8_t *dyn_buf=NULL;
|
|
|
|
int count=0, dyn_size, i;
|
2011-03-17 09:13:34 +02:00
|
|
|
int ret = avio_open_dyn_buf(&dyn_bc);
|
2008-03-07 21:25:09 +02:00
|
|
|
if(ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
for (i=0; ff_nut_dispositions[i].flag; ++i) {
|
|
|
|
if (st->disposition & ff_nut_dispositions[i].flag)
|
|
|
|
count += add_info(dyn_bc, "Disposition", ff_nut_dispositions[i].str);
|
|
|
|
}
|
2011-03-17 09:16:07 +02:00
|
|
|
dyn_size = avio_close_dyn_buf(dyn_bc, &dyn_buf);
|
2008-03-07 21:25:09 +02:00
|
|
|
|
|
|
|
if (count) {
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, stream_id + 1); //stream_id_plus1
|
|
|
|
ff_put_v(bc, 0); //chapter_id
|
|
|
|
ff_put_v(bc, 0); //timestamp_start
|
|
|
|
ff_put_v(bc, 0); //length
|
2008-03-07 21:25:09 +02:00
|
|
|
|
2010-07-09 15:10:47 +03:00
|
|
|
ff_put_v(bc, count);
|
2008-03-07 21:25:09 +02:00
|
|
|
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_write(bc, dyn_buf, dyn_size);
|
2008-03-07 21:25:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
av_free(dyn_buf);
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2011-03-16 07:42:43 +02:00
|
|
|
static int write_chapter(NUTContext *nut, AVIOContext *bc, int id)
|
|
|
|
{
|
|
|
|
AVIOContext *dyn_bc;
|
2012-10-27 01:41:02 +03:00
|
|
|
uint8_t *dyn_buf = NULL;
|
2011-05-22 13:46:29 +03:00
|
|
|
AVDictionaryEntry *t = NULL;
|
2012-10-27 01:41:02 +03:00
|
|
|
AVChapter *ch = nut->avf->chapters[id];
|
2011-03-16 07:42:43 +02:00
|
|
|
int ret, dyn_size, count = 0;
|
|
|
|
|
2011-03-17 09:13:34 +02:00
|
|
|
ret = avio_open_dyn_buf(&dyn_bc);
|
2011-03-16 07:42:43 +02:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ff_put_v(bc, 0); // stream_id_plus1
|
|
|
|
put_s(bc, id + 1); // chapter_id
|
|
|
|
put_tt(nut, nut->chapter[id].time_base, bc, ch->start); // chapter_start
|
|
|
|
ff_put_v(bc, ch->end - ch->start); // chapter_len
|
|
|
|
|
2011-05-22 13:46:29 +03:00
|
|
|
while ((t = av_dict_get(ch->metadata, "", t, AV_DICT_IGNORE_SUFFIX)))
|
2011-03-16 07:42:43 +02:00
|
|
|
count += add_info(dyn_bc, t->key, t->value);
|
|
|
|
|
|
|
|
ff_put_v(bc, count);
|
|
|
|
|
2011-03-17 09:16:07 +02:00
|
|
|
dyn_size = avio_close_dyn_buf(dyn_bc, &dyn_buf);
|
2011-03-16 07:42:43 +02:00
|
|
|
avio_write(bc, dyn_buf, dyn_size);
|
|
|
|
av_freep(&dyn_buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static int write_headers(AVFormatContext *avctx, AVIOContext *bc)
|
|
|
|
{
|
2010-06-03 00:57:30 +03:00
|
|
|
NUTContext *nut = avctx->priv_data;
|
2011-02-20 12:04:12 +02:00
|
|
|
AVIOContext *dyn_bc;
|
2007-11-21 09:41:00 +02:00
|
|
|
int i, ret;
|
2007-08-10 00:10:11 +03:00
|
|
|
|
2010-10-15 22:04:25 +03:00
|
|
|
ff_metadata_conv_ctx(avctx, ff_nut_metadata_conv, NULL);
|
|
|
|
|
2011-03-17 09:13:34 +02:00
|
|
|
ret = avio_open_dyn_buf(&dyn_bc);
|
2012-10-27 01:41:02 +03:00
|
|
|
if (ret < 0)
|
2007-11-21 09:41:00 +02:00
|
|
|
return ret;
|
|
|
|
write_mainheader(nut, dyn_bc);
|
|
|
|
put_packet(nut, bc, dyn_bc, 1, MAIN_STARTCODE);
|
2007-08-10 00:10:11 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (i = 0; i < nut->avf->nb_streams; i++) {
|
2011-03-17 09:13:34 +02:00
|
|
|
ret = avio_open_dyn_buf(&dyn_bc);
|
2012-10-27 01:41:02 +03:00
|
|
|
if (ret < 0)
|
2007-11-21 09:41:00 +02:00
|
|
|
return ret;
|
2012-10-27 01:41:02 +03:00
|
|
|
ret = write_streamheader(avctx, dyn_bc, nut->avf->streams[i], i);
|
|
|
|
if (ret < 0)
|
2010-06-03 00:57:35 +03:00
|
|
|
return ret;
|
2007-11-21 09:41:00 +02:00
|
|
|
put_packet(nut, bc, dyn_bc, 1, STREAM_STARTCODE);
|
2007-08-10 00:10:11 +03:00
|
|
|
}
|
2007-08-10 14:52:28 +03:00
|
|
|
|
2011-03-17 09:13:34 +02:00
|
|
|
ret = avio_open_dyn_buf(&dyn_bc);
|
2012-10-27 01:41:02 +03:00
|
|
|
if (ret < 0)
|
2007-11-21 09:41:00 +02:00
|
|
|
return ret;
|
|
|
|
write_globalinfo(nut, dyn_bc);
|
|
|
|
put_packet(nut, bc, dyn_bc, 1, INFO_STARTCODE);
|
2007-08-10 15:59:17 +03:00
|
|
|
|
2008-03-07 21:25:09 +02:00
|
|
|
for (i = 0; i < nut->avf->nb_streams; i++) {
|
2011-03-17 09:13:34 +02:00
|
|
|
ret = avio_open_dyn_buf(&dyn_bc);
|
2012-10-27 01:41:02 +03:00
|
|
|
if (ret < 0)
|
2008-03-07 21:25:09 +02:00
|
|
|
return ret;
|
|
|
|
ret = write_streaminfo(nut, dyn_bc, i);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
if (ret > 0)
|
|
|
|
put_packet(nut, bc, dyn_bc, 1, INFO_STARTCODE);
|
2015-02-24 14:07:54 +02:00
|
|
|
else
|
|
|
|
ffio_free_dyn_buf(&dyn_bc);
|
2008-03-07 21:25:09 +02:00
|
|
|
}
|
|
|
|
|
2011-03-16 07:42:43 +02:00
|
|
|
for (i = 0; i < nut->avf->nb_chapters; i++) {
|
2011-03-17 09:13:34 +02:00
|
|
|
ret = avio_open_dyn_buf(&dyn_bc);
|
2011-03-16 07:42:43 +02:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
ret = write_chapter(nut, dyn_bc, i);
|
|
|
|
if (ret < 0) {
|
2015-02-24 14:07:54 +02:00
|
|
|
ffio_free_dyn_buf(&dyn_bc);
|
2011-03-16 07:42:43 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
put_packet(nut, bc, dyn_bc, 1, INFO_STARTCODE);
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
nut->last_syncpoint_pos = INT_MIN;
|
2007-08-10 15:59:17 +03:00
|
|
|
nut->header_count++;
|
2007-11-21 09:41:00 +02:00
|
|
|
return 0;
|
2007-08-10 00:10:11 +03:00
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static int nut_write_header(AVFormatContext *s)
|
|
|
|
{
|
2007-08-09 15:22:02 +03:00
|
|
|
NUTContext *nut = s->priv_data;
|
2011-02-20 12:04:12 +02:00
|
|
|
AVIOContext *bc = s->pb;
|
2010-06-03 00:57:35 +03:00
|
|
|
int i, j, ret;
|
2007-08-09 15:22:02 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
nut->avf = s;
|
2007-08-09 15:22:02 +03:00
|
|
|
|
2014-03-06 19:58:34 +03:00
|
|
|
nut->version = NUT_STABLE_VERSION + !!nut->flags;
|
|
|
|
if (nut->flags && s->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
|
|
|
|
av_log(s, AV_LOG_ERROR,
|
|
|
|
"The additional syncpoint modes require version %d, "
|
|
|
|
"that is currently not finalized, "
|
|
|
|
"please set -f_strict experimental in order to enable it.\n",
|
|
|
|
nut->version);
|
|
|
|
return AVERROR_EXPERIMENTAL;
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
nut->stream = av_mallocz(sizeof(StreamContext) * s->nb_streams);
|
2011-04-27 18:29:02 +03:00
|
|
|
if (s->nb_chapters)
|
2012-10-27 01:41:02 +03:00
|
|
|
nut->chapter = av_mallocz(sizeof(ChapterContext) * s->nb_chapters);
|
|
|
|
nut->time_base = av_mallocz(sizeof(AVRational) * (s->nb_streams +
|
2011-03-16 07:42:43 +02:00
|
|
|
s->nb_chapters));
|
2011-05-03 15:19:42 +03:00
|
|
|
if (!nut->stream || (s->nb_chapters && !nut->chapter) || !nut->time_base) {
|
|
|
|
av_freep(&nut->stream);
|
|
|
|
av_freep(&nut->chapter);
|
|
|
|
av_freep(&nut->time_base);
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
2007-08-09 15:22:02 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (i = 0; i < s->nb_streams; i++) {
|
|
|
|
AVStream *st = s->streams[i];
|
2007-08-09 15:22:02 +03:00
|
|
|
int ssize;
|
|
|
|
AVRational time_base;
|
2014-05-30 08:17:28 +03:00
|
|
|
ff_parse_specific_params(st, &time_base.den, &ssize,
|
2012-10-27 01:41:02 +03:00
|
|
|
&time_base.num);
|
2007-08-09 15:22:02 +03:00
|
|
|
|
2011-11-29 21:28:15 +03:00
|
|
|
avpriv_set_pts_info(st, 64, time_base.num, time_base.den);
|
2007-08-09 15:22:02 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (j = 0; j < nut->time_base_count; j++)
|
|
|
|
if (!memcmp(&time_base, &nut->time_base[j], sizeof(AVRational))) {
|
2007-08-09 15:22:02 +03:00
|
|
|
break;
|
|
|
|
}
|
2012-10-27 01:41:02 +03:00
|
|
|
nut->time_base[j] = time_base;
|
|
|
|
nut->stream[i].time_base = &nut->time_base[j];
|
|
|
|
if (j == nut->time_base_count)
|
2007-08-09 15:22:02 +03:00
|
|
|
nut->time_base_count++;
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (INT64_C(1000) * time_base.num >= time_base.den)
|
2007-08-09 15:22:02 +03:00
|
|
|
nut->stream[i].msb_pts_shift = 7;
|
|
|
|
else
|
|
|
|
nut->stream[i].msb_pts_shift = 14;
|
2012-10-27 01:41:02 +03:00
|
|
|
nut->stream[i].max_pts_distance =
|
|
|
|
FFMAX(time_base.den, time_base.num) / time_base.num;
|
2007-08-09 15:22:02 +03:00
|
|
|
}
|
|
|
|
|
2011-03-16 07:42:43 +02:00
|
|
|
for (i = 0; i < s->nb_chapters; i++) {
|
|
|
|
AVChapter *ch = s->chapters[i];
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (j = 0; j < nut->time_base_count; j++)
|
2011-03-16 07:42:43 +02:00
|
|
|
if (!memcmp(&ch->time_base, &nut->time_base[j], sizeof(AVRational)))
|
|
|
|
break;
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
nut->time_base[j] = ch->time_base;
|
2011-03-16 07:42:43 +02:00
|
|
|
nut->chapter[i].time_base = &nut->time_base[j];
|
2012-10-27 01:41:02 +03:00
|
|
|
if (j == nut->time_base_count)
|
2011-03-16 07:42:43 +02:00
|
|
|
nut->time_base_count++;
|
|
|
|
}
|
|
|
|
|
2008-02-04 12:34:35 +02:00
|
|
|
nut->max_distance = MAX_DISTANCE;
|
2008-02-15 04:57:19 +02:00
|
|
|
build_elision_headers(s);
|
2007-08-09 15:22:02 +03:00
|
|
|
build_frame_code(s);
|
|
|
|
assert(nut->frame_code['N'].flags == FLAG_INVALID);
|
|
|
|
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_write(bc, ID_STRING, strlen(ID_STRING));
|
|
|
|
avio_w8(bc, 0);
|
2007-08-09 15:22:02 +03:00
|
|
|
|
2010-06-03 00:57:35 +03:00
|
|
|
if ((ret = write_headers(s, bc)) < 0)
|
|
|
|
return ret;
|
2007-08-09 13:45:19 +03:00
|
|
|
|
2011-03-14 21:39:06 +02:00
|
|
|
avio_flush(bc);
|
2007-08-09 04:12:48 +03:00
|
|
|
|
2007-08-10 15:59:17 +03:00
|
|
|
//FIXME index
|
2007-08-09 04:12:48 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static int get_needed_flags(NUTContext *nut, StreamContext *nus, FrameCode *fc,
|
|
|
|
AVPacket *pkt)
|
|
|
|
{
|
|
|
|
int flags = 0;
|
|
|
|
|
|
|
|
if (pkt->flags & AV_PKT_FLAG_KEY)
|
|
|
|
flags |= FLAG_KEY;
|
|
|
|
if (pkt->stream_index != fc->stream_id)
|
|
|
|
flags |= FLAG_STREAM_ID;
|
|
|
|
if (pkt->size / fc->size_mul)
|
|
|
|
flags |= FLAG_SIZE_MSB;
|
|
|
|
if (pkt->pts - nus->last_pts != fc->pts_delta)
|
|
|
|
flags |= FLAG_CODED_PTS;
|
|
|
|
if (pkt->size > 2 * nut->max_distance)
|
|
|
|
flags |= FLAG_CHECKSUM;
|
|
|
|
if (FFABS(pkt->pts - nus->last_pts) > nus->max_pts_distance)
|
|
|
|
flags |= FLAG_CHECKSUM;
|
|
|
|
if (pkt->size < nut->header_len[fc->header_idx] ||
|
|
|
|
(pkt->size > 4096 && fc->header_idx) ||
|
|
|
|
memcmp(pkt->data, nut->header[fc->header_idx],
|
|
|
|
nut->header_len[fc->header_idx]))
|
|
|
|
flags |= FLAG_HEADER_IDX;
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2007-08-11 14:10:29 +03:00
|
|
|
return flags | (fc->flags & FLAG_CODED);
|
2007-08-10 00:01:22 +03:00
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static int find_best_header_idx(NUTContext *nut, AVPacket *pkt)
|
|
|
|
{
|
2008-02-15 04:57:19 +02:00
|
|
|
int i;
|
2012-10-27 01:41:02 +03:00
|
|
|
int best_i = 0;
|
|
|
|
int best_len = 0;
|
2008-02-15 04:57:19 +02:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (pkt->size > 4096)
|
2008-02-15 04:57:19 +02:00
|
|
|
return 0;
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
for (i = 1; i < nut->header_count; i++)
|
|
|
|
if (pkt->size >= nut->header_len[i]
|
|
|
|
&& nut->header_len[i] > best_len
|
|
|
|
&& !memcmp(pkt->data, nut->header[i], nut->header_len[i])) {
|
|
|
|
best_i = i;
|
|
|
|
best_len = nut->header_len[i];
|
2008-02-15 04:57:19 +02:00
|
|
|
}
|
|
|
|
return best_i;
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static int nut_write_packet(AVFormatContext *s, AVPacket *pkt)
|
|
|
|
{
|
|
|
|
NUTContext *nut = s->priv_data;
|
|
|
|
StreamContext *nus = &nut->stream[pkt->stream_index];
|
|
|
|
AVIOContext *bc = s->pb, *dyn_bc;
|
2007-08-10 00:01:22 +03:00
|
|
|
FrameCode *fc;
|
|
|
|
int64_t coded_pts;
|
2012-10-27 01:41:02 +03:00
|
|
|
int best_length, frame_code, flags, needed_flags, i, header_idx,
|
|
|
|
best_header_idx;
|
2010-03-31 15:29:58 +03:00
|
|
|
int key_frame = !!(pkt->flags & AV_PKT_FLAG_KEY);
|
2012-10-27 01:41:02 +03:00
|
|
|
int store_sp = 0;
|
2007-11-21 09:41:00 +02:00
|
|
|
int ret;
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 17:56:37 +03:00
|
|
|
if (pkt->pts < 0) {
|
|
|
|
av_log(s, AV_LOG_ERROR,
|
|
|
|
"Negative pts not supported stream %d, pts %"PRId64"\n",
|
|
|
|
pkt->stream_index, pkt->pts);
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
2008-06-26 01:37:26 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (1LL << (20 + 3 * nut->header_count) <= avio_tell(bc))
|
2010-06-03 00:57:30 +03:00
|
|
|
write_headers(s, bc);
|
2007-08-10 15:59:17 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (key_frame && !(nus->last_flags & FLAG_KEY))
|
|
|
|
store_sp = 1;
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (pkt->size + 30 /*FIXME check*/ + avio_tell(bc) >=
|
|
|
|
nut->last_syncpoint_pos + nut->max_distance)
|
|
|
|
store_sp = 1;
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2007-08-17 13:45:50 +03:00
|
|
|
//FIXME: Ensure store_sp is 1 in the first place.
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2014-03-06 19:58:34 +03:00
|
|
|
if (store_sp &&
|
|
|
|
(!(nut->flags & NUT_PIPE) || nut->last_syncpoint_pos == INT_MIN)) {
|
2012-10-27 01:41:02 +03:00
|
|
|
Syncpoint *sp, dummy = { .pos = INT64_MAX };
|
2007-08-10 02:29:58 +03:00
|
|
|
|
2007-08-10 00:01:22 +03:00
|
|
|
ff_nut_reset_ts(nut, *nus->time_base, pkt->dts);
|
2012-10-27 01:41:02 +03:00
|
|
|
for (i = 0; i < s->nb_streams; i++) {
|
|
|
|
AVStream *st = s->streams[i];
|
2008-02-04 12:48:41 +02:00
|
|
|
int64_t dts_tb = av_rescale_rnd(pkt->dts,
|
|
|
|
nus->time_base->num * (int64_t)nut->stream[i].time_base->den,
|
|
|
|
nus->time_base->den * (int64_t)nut->stream[i].time_base->num,
|
|
|
|
AV_ROUND_DOWN);
|
2012-10-27 01:41:02 +03:00
|
|
|
int index = av_index_search_timestamp(st, dts_tb,
|
|
|
|
AVSEEK_FLAG_BACKWARD);
|
|
|
|
if (index >= 0)
|
|
|
|
dummy.pos = FFMIN(dummy.pos, st->index_entries[index].pos);
|
2007-08-10 02:29:58 +03:00
|
|
|
}
|
2012-10-27 01:41:02 +03:00
|
|
|
if (dummy.pos == INT64_MAX)
|
|
|
|
dummy.pos = 0;
|
|
|
|
sp = av_tree_find(nut->syncpoints, &dummy, (void *)ff_nut_sp_pos_cmp,
|
|
|
|
NULL);
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
nut->last_syncpoint_pos = avio_tell(bc);
|
|
|
|
ret = avio_open_dyn_buf(&dyn_bc);
|
|
|
|
if (ret < 0)
|
2007-11-21 09:41:00 +02:00
|
|
|
return ret;
|
2011-03-16 07:42:43 +02:00
|
|
|
put_tt(nut, nus->time_base, dyn_bc, pkt->dts);
|
2012-10-27 01:41:02 +03:00
|
|
|
ff_put_v(dyn_bc, sp ? (nut->last_syncpoint_pos - sp->pos) >> 4 : 0);
|
2014-03-06 19:58:34 +03:00
|
|
|
|
|
|
|
if (nut->flags & NUT_BROADCAST) {
|
|
|
|
put_tt(nut, nus->time_base, dyn_bc,
|
|
|
|
av_rescale_q(av_gettime(), AV_TIME_BASE_Q, *nus->time_base));
|
|
|
|
}
|
2007-11-21 09:41:00 +02:00
|
|
|
put_packet(nut, bc, dyn_bc, 1, SYNCPOINT_STARTCODE);
|
2007-08-10 02:29:58 +03:00
|
|
|
|
2013-10-22 18:11:11 +03:00
|
|
|
if ((ret = ff_nut_add_sp(nut, nut->last_syncpoint_pos, 0 /*unused*/, pkt->dts)) < 0)
|
|
|
|
return ret;
|
2007-08-10 00:01:22 +03:00
|
|
|
}
|
|
|
|
assert(nus->last_pts != AV_NOPTS_VALUE);
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
coded_pts = pkt->pts & ((1 << nus->msb_pts_shift) - 1);
|
|
|
|
if (ff_lsb2full(nus, coded_pts) != pkt->pts)
|
|
|
|
coded_pts = pkt->pts + (1 << nus->msb_pts_shift);
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
best_header_idx = find_best_header_idx(nut, pkt);
|
2008-02-15 04:57:19 +02:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
best_length = INT_MAX;
|
|
|
|
frame_code = -1;
|
|
|
|
for (i = 0; i < 256; i++) {
|
|
|
|
int length = 0;
|
|
|
|
FrameCode *fc = &nut->frame_code[i];
|
|
|
|
int flags = fc->flags;
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (flags & FLAG_INVALID)
|
2007-08-10 00:01:22 +03:00
|
|
|
continue;
|
2012-10-27 01:41:02 +03:00
|
|
|
needed_flags = get_needed_flags(nut, nus, fc, pkt);
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (flags & FLAG_CODED) {
|
2007-08-10 00:01:22 +03:00
|
|
|
length++;
|
2007-08-11 14:12:34 +03:00
|
|
|
flags = needed_flags;
|
2007-08-10 00:01:22 +03:00
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if ((flags & needed_flags) != needed_flags)
|
2007-08-10 00:01:22 +03:00
|
|
|
continue;
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if ((flags ^ needed_flags) & FLAG_KEY)
|
2007-08-10 00:01:22 +03:00
|
|
|
continue;
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (flags & FLAG_STREAM_ID)
|
|
|
|
length += ff_get_v_length(pkt->stream_index);
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (pkt->size % fc->size_mul != fc->size_lsb)
|
2007-08-10 00:01:22 +03:00
|
|
|
continue;
|
2012-10-27 01:41:02 +03:00
|
|
|
if (flags & FLAG_SIZE_MSB)
|
2010-07-09 15:10:47 +03:00
|
|
|
length += ff_get_v_length(pkt->size / fc->size_mul);
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (flags & FLAG_CHECKSUM)
|
|
|
|
length += 4;
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (flags & FLAG_CODED_PTS)
|
2010-07-09 15:10:47 +03:00
|
|
|
length += ff_get_v_length(coded_pts);
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if ((flags & FLAG_CODED)
|
|
|
|
&& nut->header_len[best_header_idx] >
|
|
|
|
nut->header_len[fc->header_idx] + 1) {
|
2008-02-15 04:57:19 +02:00
|
|
|
flags |= FLAG_HEADER_IDX;
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (flags & FLAG_HEADER_IDX) {
|
2008-02-15 04:57:19 +02:00
|
|
|
length += 1 - nut->header_len[best_header_idx];
|
2012-10-27 01:41:02 +03:00
|
|
|
} else {
|
2008-02-15 04:57:19 +02:00
|
|
|
length -= nut->header_len[fc->header_idx];
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
length *= 4;
|
|
|
|
length += !(flags & FLAG_CODED_PTS);
|
|
|
|
length += !(flags & FLAG_CHECKSUM);
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
if (length < best_length) {
|
|
|
|
best_length = length;
|
|
|
|
frame_code = i;
|
2007-08-10 00:01:22 +03:00
|
|
|
}
|
|
|
|
}
|
2014-10-20 16:11:20 +03:00
|
|
|
|
|
|
|
if (frame_code < 0)
|
|
|
|
return AVERROR_BUG;
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
fc = &nut->frame_code[frame_code];
|
|
|
|
flags = fc->flags;
|
|
|
|
needed_flags = get_needed_flags(nut, nus, fc, pkt);
|
|
|
|
header_idx = fc->header_idx;
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2011-03-17 13:56:25 +02:00
|
|
|
ffio_init_checksum(bc, ff_crc04C11DB7_update, 0);
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_w8(bc, frame_code);
|
2012-10-27 01:41:02 +03:00
|
|
|
if (flags & FLAG_CODED) {
|
|
|
|
ff_put_v(bc, (flags ^ needed_flags) & ~(FLAG_CODED));
|
2007-08-10 00:01:22 +03:00
|
|
|
flags = needed_flags;
|
|
|
|
}
|
2012-10-27 01:41:02 +03:00
|
|
|
if (flags & FLAG_STREAM_ID)
|
|
|
|
ff_put_v(bc, pkt->stream_index);
|
|
|
|
if (flags & FLAG_CODED_PTS)
|
|
|
|
ff_put_v(bc, coded_pts);
|
|
|
|
if (flags & FLAG_SIZE_MSB)
|
|
|
|
ff_put_v(bc, pkt->size / fc->size_mul);
|
|
|
|
if (flags & FLAG_HEADER_IDX)
|
|
|
|
ff_put_v(bc, header_idx = best_header_idx);
|
|
|
|
|
|
|
|
if (flags & FLAG_CHECKSUM)
|
|
|
|
avio_wl32(bc, ffio_get_checksum(bc));
|
|
|
|
else
|
|
|
|
ffio_get_checksum(bc);
|
2007-08-10 00:01:22 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
avio_write(bc, pkt->data + nut->header_len[header_idx],
|
|
|
|
pkt->size - nut->header_len[header_idx]);
|
|
|
|
nus->last_flags = flags;
|
|
|
|
nus->last_pts = pkt->pts;
|
2007-08-10 02:29:58 +03:00
|
|
|
|
|
|
|
//FIXME just store one per syncpoint
|
2014-03-06 19:58:34 +03:00
|
|
|
if (flags & FLAG_KEY && !(nut->flags & NUT_PIPE))
|
2007-08-10 02:29:58 +03:00
|
|
|
av_add_index_entry(
|
|
|
|
s->streams[pkt->stream_index],
|
|
|
|
nut->last_syncpoint_pos,
|
|
|
|
pkt->pts,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
AVINDEX_KEYFRAME);
|
|
|
|
|
2007-08-09 04:12:48 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
static int nut_write_trailer(AVFormatContext *s)
|
|
|
|
{
|
|
|
|
NUTContext *nut = s->priv_data;
|
|
|
|
AVIOContext *bc = s->pb;
|
2007-08-10 00:14:00 +03:00
|
|
|
|
2012-10-27 01:41:02 +03:00
|
|
|
while (nut->header_count < 3)
|
2010-06-03 00:57:30 +03:00
|
|
|
write_headers(s, bc);
|
2012-09-09 22:35:23 +03:00
|
|
|
|
2010-03-03 19:31:24 +02:00
|
|
|
ff_nut_free_sp(nut);
|
2010-02-28 22:49:21 +02:00
|
|
|
av_freep(&nut->stream);
|
2011-03-17 18:00:21 +02:00
|
|
|
av_freep(&nut->chapter);
|
2010-02-28 22:49:21 +02:00
|
|
|
av_freep(&nut->time_base);
|
2007-08-10 00:14:00 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-06 19:58:34 +03:00
|
|
|
#define OFFSET(x) offsetof(NUTContext, x)
|
|
|
|
#define E AV_OPT_FLAG_ENCODING_PARAM
|
|
|
|
static const AVOption options[] = {
|
|
|
|
{ "syncpoints", "NUT syncpoint behaviour", OFFSET(flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, E, "syncpoints" },
|
|
|
|
{ "default", "", 0, AV_OPT_TYPE_CONST, {.i64 = 0}, INT_MIN, INT_MAX, E, "syncpoints" },
|
|
|
|
{ "none", "Disable syncpoints, low overhead and unseekable", 0, AV_OPT_TYPE_CONST, {.i64 = NUT_PIPE}, INT_MIN, INT_MAX, E, "syncpoints" },
|
|
|
|
{ "timestamped", "Extend syncpoints with a wallclock timestamp", 0, AV_OPT_TYPE_CONST, {.i64 = NUT_BROADCAST}, INT_MIN, INT_MAX, E, "syncpoints" },
|
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVClass class = {
|
|
|
|
.class_name = "nutenc",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
|
|
|
|
2011-01-26 00:03:28 +02:00
|
|
|
AVOutputFormat ff_nut_muxer = {
|
2011-07-16 23:18:12 +03:00
|
|
|
.name = "nut",
|
2012-07-25 00:51:41 +03:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("NUT"),
|
2011-07-16 23:18:12 +03:00
|
|
|
.mime_type = "video/x-nut",
|
|
|
|
.extensions = "nut",
|
|
|
|
.priv_data_size = sizeof(NUTContext),
|
2012-08-05 12:11:04 +03:00
|
|
|
.audio_codec = CONFIG_LIBVORBIS ? AV_CODEC_ID_VORBIS :
|
|
|
|
CONFIG_LIBMP3LAME ? AV_CODEC_ID_MP3 : AV_CODEC_ID_MP2,
|
|
|
|
.video_codec = AV_CODEC_ID_MPEG4,
|
2011-08-31 20:27:17 +03:00
|
|
|
.write_header = nut_write_header,
|
|
|
|
.write_packet = nut_write_packet,
|
|
|
|
.write_trailer = nut_write_trailer,
|
2012-04-06 17:50:48 +03:00
|
|
|
.flags = AVFMT_GLOBALHEADER | AVFMT_VARIABLE_FPS,
|
2012-10-12 16:49:36 +03:00
|
|
|
.codec_tag = ff_nut_codec_tags,
|
2014-03-06 19:58:34 +03:00
|
|
|
.priv_class = &class,
|
2007-08-09 04:12:48 +03:00
|
|
|
};
|