libnut.c 9.73 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * NUT (de)muxing via libnut
 * copyright (c) 2006 Oded Shimon <ods15@ods15.dyndns.org>
 *
 * This file is part of FFmpeg.
 *
 * 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.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * 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
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

22
/**
23
 * @file
24 25 26 27
 * NUT demuxing and muxing via libnut.
 * @author Oded Shimon <ods15@ods15.dyndns.org>
 */

28
#include "avformat.h"
29
#include "internal.h"
30
#include "riff.h"
31
#include <libnut.h>
32 33 34 35 36

#define ID_STRING "nut/multimedia container"
#define ID_LENGTH (strlen(ID_STRING) + 1)

typedef struct {
37 38
    nut_context_tt * nut;
    nut_stream_header_tt * s;
39 40
} NUTContext;

41
static const AVCodecTag nut_tags[] = {
42 43 44
    { AV_CODEC_ID_MPEG4,  MKTAG('m', 'p', '4', 'v') },
    { AV_CODEC_ID_MP3,    MKTAG('m', 'p', '3', ' ') },
    { AV_CODEC_ID_VORBIS, MKTAG('v', 'r', 'b', 's') },
45 46 47
    { 0, 0 },
};

48
#if CONFIG_LIBNUT_MUXER
49
static int av_write(void * h, size_t len, const uint8_t * buf) {
50
    AVIOContext * bc = h;
51
    avio_write(bc, buf, len);
52
    //avio_flush(bc);
53 54 55 56 57
    return len;
}

static int nut_write_header(AVFormatContext * avf) {
    NUTContext * priv = avf->priv_data;
58
    AVIOContext * bc = avf->pb;
59
    nut_muxer_opts_tt mopts = {
60 61 62 63 64 65 66 67
        .output = {
            .priv = bc,
            .write = av_write,
        },
        .alloc = { av_malloc, av_realloc, av_free },
        .write_index = 1,
        .realtime_stream = 0,
        .max_distance = 32768,
68
        .fti = NULL,
69
    };
70
    nut_stream_header_tt * s;
71 72
    int i;

73
    priv->s = s = av_mallocz_array(avf->nb_streams + 1, sizeof*s);
74 75
    if(!s)
        return AVERROR(ENOMEM);
76 77 78 79 80

    for (i = 0; i < avf->nb_streams; i++) {
        AVCodecContext * codec = avf->streams[i]->codec;
        int j;
        int fourcc = 0;
Oded Shimon's avatar
Oded Shimon committed
81
        int num, denom, ssize;
82

83
        s[i].type = codec->codec_type == AVMEDIA_TYPE_VIDEO ? NUT_VIDEO_CLASS : NUT_AUDIO_CLASS;
84 85

        if (codec->codec_tag) fourcc = codec->codec_tag;
86
        else fourcc = ff_codec_get_tag(nut_tags, codec->codec_id);
87 88

        if (!fourcc) {
89 90
            if (codec->codec_type == AVMEDIA_TYPE_VIDEO) fourcc = ff_codec_get_tag(ff_codec_bmp_tags, codec->codec_id);
            if (codec->codec_type == AVMEDIA_TYPE_AUDIO) fourcc = ff_codec_get_tag(ff_codec_wav_tags, codec->codec_id);
91 92 93 94 95 96
        }

        s[i].fourcc_len = 4;
        s[i].fourcc = av_malloc(s[i].fourcc_len);
        for (j = 0; j < s[i].fourcc_len; j++) s[i].fourcc[j] = (fourcc >> (j*8)) & 0xFF;

Oded Shimon's avatar
Oded Shimon committed
97
        ff_parse_specific_params(codec, &num, &ssize, &denom);
98
        avpriv_set_pts_info(avf->streams[i], 60, denom, num);
99

Oded Shimon's avatar
Oded Shimon committed
100 101
        s[i].time_base.num = denom;
        s[i].time_base.den = num;
102 103 104 105 106 107

        s[i].fixed_fps = 0;
        s[i].decode_delay = codec->has_b_frames;
        s[i].codec_specific_len = codec->extradata_size;
        s[i].codec_specific = codec->extradata;

108
        if (codec->codec_type == AVMEDIA_TYPE_VIDEO) {
109 110 111 112 113 114
            s[i].width = codec->width;
            s[i].height = codec->height;
            s[i].sample_width = 0;
            s[i].sample_height = 0;
            s[i].colorspace_type = 0;
        } else {
Oded Shimon's avatar
Oded Shimon committed
115
            s[i].samplerate_num = codec->sample_rate;
116 117 118 119 120 121 122 123 124 125 126 127 128
            s[i].samplerate_denom = 1;
            s[i].channel_count = codec->channels;
        }
    }

    s[avf->nb_streams].type = -1;
    priv->nut = nut_muxer_init(&mopts, s, NULL);

    return 0;
}

static int nut_write_packet(AVFormatContext * avf, AVPacket * pkt) {
    NUTContext * priv = avf->priv_data;
129
    nut_packet_tt p;
130 131 132 133

    p.len = pkt->size;
    p.stream = pkt->stream_index;
    p.pts = pkt->pts;
134
    p.flags = pkt->flags & AV_PKT_FLAG_KEY ? NUT_FLAG_KEY : 0;
135 136 137 138 139 140 141 142
    p.next_pts = 0;

    nut_write_frame_reorder(priv->nut, &p, pkt->data);

    return 0;
}

static int nut_write_trailer(AVFormatContext * avf) {
143
    AVIOContext * bc = avf->pb;
144 145 146 147
    NUTContext * priv = avf->priv_data;
    int i;

    nut_muxer_uninit_reorder(priv->nut);
148
    avio_flush(bc);
149 150 151 152 153 154 155

    for(i = 0; priv->s[i].type != -1; i++ ) av_freep(&priv->s[i].fourcc);
    av_freep(&priv->s);

    return 0;
}

156
AVOutputFormat ff_libnut_muxer = {
157 158 159 160 161
    .name              = "libnut",
    .long_name         = "nut format",
    .mime_type         = "video/x-nut",
    .extensions        = "nut",
    .priv_data_size    = sizeof(NUTContext),
162 163
    .audio_codec       = AV_CODEC_ID_VORBIS,
    .video_codec       = AV_CODEC_ID_MPEG4,
164 165 166
    .write_header      = nut_write_header,
    .write_packet      = nut_write_packet,
    .write_trailer     = nut_write_trailer,
167
    .flags             = AVFMT_GLOBALHEADER,
168
};
169
#endif /* CONFIG_LIBNUT_MUXER */
170 171

static int nut_probe(AVProbeData *p) {
172
    if (!memcmp(p->buf, ID_STRING, ID_LENGTH)) return AVPROBE_SCORE_MAX;
173 174 175 176 177

    return 0;
}

static size_t av_read(void * h, size_t len, uint8_t * buf) {
178
    AVIOContext * bc = h;
179
    return avio_read(bc, buf, len);
180 181
}

182
static off_t av_seek(void * h, int64_t pos, int whence) {
183
    AVIOContext * bc = h;
184
    if (whence == SEEK_END) {
185
        pos = avio_size(bc) + pos;
186 187
        whence = SEEK_SET;
    }
188
    return avio_seek(bc, pos, whence);
189 190
}

191
static int nut_read_header(AVFormatContext * avf) {
192
    NUTContext * priv = avf->priv_data;
193
    AVIOContext * bc = avf->pb;
194
    nut_demuxer_opts_tt dopts = {
195 196 197 198 199 200 201 202
        .input = {
            .priv = bc,
            .seek = av_seek,
            .read = av_read,
            .eof = NULL,
            .file_pos = 0,
        },
        .alloc = { av_malloc, av_realloc, av_free },
203 204
        .read_index = 1,
        .cache_syncpoints = 1,
205
    };
206 207
    nut_context_tt * nut = priv->nut = nut_demuxer_init(&dopts);
    nut_stream_header_tt * s;
208 209
    int ret, i;

210 211 212
    if(!nut)
        return -1;

213
    if ((ret = nut_read_headers(nut, &s, NULL))) {
214
        av_log(avf, AV_LOG_ERROR, " NUT error: %s\n", nut_error(ret));
215
        nut_demuxer_uninit(nut);
216
        priv->nut = NULL;
217 218 219 220 221 222
        return -1;
    }

    priv->s = s;

    for (i = 0; s[i].type != -1 && i < 2; i++) {
223
        AVStream * st = avformat_new_stream(avf, NULL);
224 225
        int j;

226 227 228
        if (!st)
            return AVERROR(ENOMEM);

229 230 231 232 233 234
        for (j = 0; j < s[i].fourcc_len && j < 8; j++) st->codec->codec_tag |= s[i].fourcc[j]<<(j*8);

        st->codec->has_b_frames = s[i].decode_delay;

        st->codec->extradata_size = s[i].codec_specific_len;
        if (st->codec->extradata_size) {
235
            if(ff_alloc_extradata(st->codec, st->codec->extradata_size)){
236
                nut_demuxer_uninit(nut);
237
                priv->nut = NULL;
238 239
                return AVERROR(ENOMEM);
            }
240 241 242
            memcpy(st->codec->extradata, s[i].codec_specific, st->codec->extradata_size);
        }

243
        avpriv_set_pts_info(avf->streams[i], 60, s[i].time_base.num, s[i].time_base.den);
244 245 246
        st->start_time = 0;
        st->duration = s[i].max_pts;

247
        st->codec->codec_id = ff_codec_get_id(nut_tags, st->codec->codec_tag);
248 249 250

        switch(s[i].type) {
        case NUT_AUDIO_CLASS:
251
            st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
252
            if (st->codec->codec_id == AV_CODEC_ID_NONE) st->codec->codec_id = ff_codec_get_id(ff_codec_wav_tags, st->codec->codec_tag);
253 254

            st->codec->channels = s[i].channel_count;
Oded Shimon's avatar
Oded Shimon committed
255
            st->codec->sample_rate = s[i].samplerate_num / s[i].samplerate_denom;
256 257
            break;
        case NUT_VIDEO_CLASS:
258
            st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
259
            if (st->codec->codec_id == AV_CODEC_ID_NONE) st->codec->codec_id = ff_codec_get_id(ff_codec_bmp_tags, st->codec->codec_tag);
260 261 262

            st->codec->width = s[i].width;
            st->codec->height = s[i].height;
263 264
            st->sample_aspect_ratio.num = s[i].sample_width;
            st->sample_aspect_ratio.den = s[i].sample_height;
265 266
            break;
        }
267
        if (st->codec->codec_id == AV_CODEC_ID_NONE) av_log(avf, AV_LOG_ERROR, "Unknown codec?!\n");
268 269 270 271 272 273 274
    }

    return 0;
}

static int nut_read_packet(AVFormatContext * avf, AVPacket * pkt) {
    NUTContext * priv = avf->priv_data;
275
    nut_packet_tt pd;
276 277
    int ret;

278
    ret = nut_read_next_packet(priv->nut, &pd);
279

280 281 282 283 284
    if (ret || av_new_packet(pkt, pd.len) < 0) {
        if (ret != NUT_ERR_EOF)
            av_log(avf, AV_LOG_ERROR, " NUT error: %s\n", nut_error(ret));
        return -1;
    }
285

286
    if (pd.flags & NUT_FLAG_KEY) pkt->flags |= AV_PKT_FLAG_KEY;
287 288
    pkt->pts = pd.pts;
    pkt->stream_index = pd.stream;
289
    pkt->pos = avio_tell(avf->pb);
290 291 292 293 294 295 296 297 298

    ret = nut_read_frame(priv->nut, &pd.len, pkt->data);

    return ret;
}

static int nut_read_seek(AVFormatContext * avf, int stream_index, int64_t target_ts, int flags) {
    NUTContext * priv = avf->priv_data;
    int active_streams[] = { stream_index, -1 };
Oded Shimon's avatar
Oded Shimon committed
299
    double time_pos = target_ts * priv->s[stream_index].time_base.num / (double)priv->s[stream_index].time_base.den;
300 301 302 303 304 305 306 307 308 309 310 311 312 313

    if (nut_seek(priv->nut, time_pos, 2*!(flags & AVSEEK_FLAG_BACKWARD), active_streams)) return -1;

    return 0;
}

static int nut_read_close(AVFormatContext *s) {
    NUTContext * priv = s->priv_data;

    nut_demuxer_uninit(priv->nut);

    return 0;
}

314
AVInputFormat ff_libnut_demuxer = {
315 316 317 318 319 320 321 322
    .name           = "libnut",
    .long_name      = NULL_IF_CONFIG_SMALL("NUT format"),
    .priv_data_size = sizeof(NUTContext),
    .read_probe     = nut_probe,
    .read_header    = nut_read_header,
    .read_packet    = nut_read_packet,
    .read_close     = nut_read_close,
    .read_seek      = nut_read_seek,
323
    .extensions     = "nut",
324
};