~ubuntu-branches/ubuntu/trusty/gst-libav1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavformat/nuv.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-09-24 17:07:00 UTC
  • mfrom: (1.1.17) (7.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20130924170700-4dg62s3pwl0pdakz
Tags: 1.2.0-1
* New upstream stable release:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
20
 */
21
21
 
 
22
#include "libavutil/channel_layout.h"
22
23
#include "libavutil/intreadwrite.h"
23
24
#include "libavutil/intfloat.h"
24
25
#include "avformat.h"
25
26
#include "internal.h"
26
27
#include "riff.h"
27
28
 
 
29
static const AVCodecTag nuv_audio_tags[] = {
 
30
    { AV_CODEC_ID_PCM_S16LE, MKTAG('R', 'A', 'W', 'A') },
 
31
    { AV_CODEC_ID_MP3,       MKTAG('L', 'A', 'M', 'E') },
 
32
    { AV_CODEC_ID_NONE,      0 },
 
33
};
 
34
 
28
35
typedef struct {
29
36
    int v_id;
30
37
    int a_id;
32
39
} NUVContext;
33
40
 
34
41
typedef enum {
35
 
    NUV_VIDEO = 'V',
 
42
    NUV_VIDEO     = 'V',
36
43
    NUV_EXTRADATA = 'D',
37
 
    NUV_AUDIO = 'A',
38
 
    NUV_SEEKP = 'R',
39
 
    NUV_MYTHEXT = 'X'
 
44
    NUV_AUDIO     = 'A',
 
45
    NUV_SEEKP     = 'R',
 
46
    NUV_MYTHEXT   = 'X'
40
47
} nuv_frametype;
41
48
 
42
 
static int nuv_probe(AVProbeData *p) {
 
49
static int nuv_probe(AVProbeData *p)
 
50
{
43
51
    if (!memcmp(p->buf, "NuppelVideo", 12))
44
52
        return AVPROBE_SCORE_MAX;
45
53
    if (!memcmp(p->buf, "MythTVVideo", 12))
55
63
 * @param vst video stream of which to change parameters
56
64
 * @param ast video stream of which to change parameters
57
65
 * @param myth set if this is a MythTVVideo format file
58
 
 * @return 1 if all required codec data was found
 
66
 * @return 0 or AVERROR code
59
67
 */
60
68
static int get_codec_data(AVIOContext *pb, AVStream *vst,
61
 
                          AVStream *ast, int myth) {
 
69
                          AVStream *ast, int myth)
 
70
{
62
71
    nuv_frametype frametype;
 
72
 
63
73
    if (!vst && !myth)
64
74
        return 1; // no codec data needed
65
75
    while (!pb->eof_reached) {
66
76
        int size, subtype;
 
77
 
67
78
        frametype = avio_r8(pb);
68
79
        switch (frametype) {
69
 
            case NUV_EXTRADATA:
70
 
                subtype = avio_r8(pb);
71
 
                avio_skip(pb, 6);
72
 
                size = PKTSIZE(avio_rl32(pb));
73
 
                if (vst && subtype == 'R') {
74
 
                    vst->codec->extradata_size = size;
75
 
                    vst->codec->extradata = av_malloc(size);
76
 
                    avio_read(pb, vst->codec->extradata, size);
77
 
                    size = 0;
78
 
                    if (!myth)
79
 
                        return 1;
 
80
        case NUV_EXTRADATA:
 
81
            subtype = avio_r8(pb);
 
82
            avio_skip(pb, 6);
 
83
            size = PKTSIZE(avio_rl32(pb));
 
84
            if (vst && subtype == 'R') {
 
85
                if (vst->codec->extradata) {
 
86
                    av_freep(&vst->codec->extradata);
 
87
                    vst->codec->extradata_size = 0;
80
88
                }
 
89
                vst->codec->extradata = av_malloc(size);
 
90
                if (!vst->codec->extradata)
 
91
                    return AVERROR(ENOMEM);
 
92
                vst->codec->extradata_size = size;
 
93
                avio_read(pb, vst->codec->extradata, size);
 
94
                size = 0;
 
95
                if (!myth)
 
96
                    return 0;
 
97
            }
 
98
            break;
 
99
        case NUV_MYTHEXT:
 
100
            avio_skip(pb, 7);
 
101
            size = PKTSIZE(avio_rl32(pb));
 
102
            if (size != 128 * 4)
81
103
                break;
82
 
            case NUV_MYTHEXT:
83
 
                avio_skip(pb, 7);
84
 
                size = PKTSIZE(avio_rl32(pb));
85
 
                if (size != 128 * 4)
86
 
                    break;
87
 
                avio_rl32(pb); // version
88
 
                if (vst) {
89
 
                    vst->codec->codec_tag = avio_rl32(pb);
90
 
                    vst->codec->codec_id =
91
 
                        ff_codec_get_id(ff_codec_bmp_tags, vst->codec->codec_tag);
92
 
                    if (vst->codec->codec_tag == MKTAG('R', 'J', 'P', 'G'))
93
 
                        vst->codec->codec_id = CODEC_ID_NUV;
94
 
                } else
95
 
                    avio_skip(pb, 4);
96
 
 
97
 
                if (ast) {
98
 
                    ast->codec->codec_tag = avio_rl32(pb);
99
 
                    ast->codec->sample_rate = avio_rl32(pb);
100
 
                    ast->codec->bits_per_coded_sample = avio_rl32(pb);
101
 
                    ast->codec->channels = avio_rl32(pb);
102
 
                    ast->codec->codec_id =
103
 
                        ff_wav_codec_get_id(ast->codec->codec_tag,
 
104
            avio_rl32(pb); // version
 
105
            if (vst) {
 
106
                vst->codec->codec_tag = avio_rl32(pb);
 
107
                vst->codec->codec_id =
 
108
                    ff_codec_get_id(ff_codec_bmp_tags, vst->codec->codec_tag);
 
109
                if (vst->codec->codec_tag == MKTAG('R', 'J', 'P', 'G'))
 
110
                    vst->codec->codec_id = AV_CODEC_ID_NUV;
 
111
            } else
 
112
                avio_skip(pb, 4);
 
113
 
 
114
            if (ast) {
 
115
                int id;
 
116
 
 
117
                ast->codec->codec_tag             = avio_rl32(pb);
 
118
                ast->codec->sample_rate           = avio_rl32(pb);
 
119
                ast->codec->bits_per_coded_sample = avio_rl32(pb);
 
120
                ast->codec->channels              = avio_rl32(pb);
 
121
                ast->codec->channel_layout        = 0;
 
122
 
 
123
                id = ff_wav_codec_get_id(ast->codec->codec_tag,
104
124
                                         ast->codec->bits_per_coded_sample);
105
 
                    ast->need_parsing = AVSTREAM_PARSE_FULL;
106
 
                } else
107
 
                    avio_skip(pb, 4 * 4);
108
 
 
109
 
                size -= 6 * 4;
110
 
                avio_skip(pb, size);
111
 
                return 1;
112
 
            case NUV_SEEKP:
113
 
                size = 11;
114
 
                break;
115
 
            default:
116
 
                avio_skip(pb, 7);
117
 
                size = PKTSIZE(avio_rl32(pb));
118
 
                break;
 
125
                if (id == AV_CODEC_ID_NONE) {
 
126
                    id = ff_codec_get_id(nuv_audio_tags, ast->codec->codec_tag);
 
127
                    if (id == AV_CODEC_ID_PCM_S16LE)
 
128
                        id = ff_get_pcm_codec_id(ast->codec->bits_per_coded_sample,
 
129
                                                 0, 0, ~1);
 
130
                }
 
131
                ast->codec->codec_id = id;
 
132
 
 
133
                ast->need_parsing = AVSTREAM_PARSE_FULL;
 
134
            } else
 
135
                avio_skip(pb, 4 * 4);
 
136
 
 
137
            size -= 6 * 4;
 
138
            avio_skip(pb, size);
 
139
            return 0;
 
140
        case NUV_SEEKP:
 
141
            size = 11;
 
142
            break;
 
143
        default:
 
144
            avio_skip(pb, 7);
 
145
            size = PKTSIZE(avio_rl32(pb));
 
146
            break;
119
147
        }
120
148
        avio_skip(pb, size);
121
149
    }
 
150
 
122
151
    return 0;
123
152
}
124
153
 
125
 
static int nuv_header(AVFormatContext *s, AVFormatParameters *ap) {
 
154
static int nuv_header(AVFormatContext *s)
 
155
{
126
156
    NUVContext *ctx = s->priv_data;
127
157
    AVIOContext *pb = s->pb;
128
158
    char id_string[12];
129
159
    double aspect, fps;
130
 
    int is_mythtv, width, height, v_packs, a_packs;
131
 
    int stream_nr = 0;
 
160
    int is_mythtv, width, height, v_packs, a_packs, ret;
132
161
    AVStream *vst = NULL, *ast = NULL;
 
162
 
133
163
    avio_read(pb, id_string, 12);
134
164
    is_mythtv = !memcmp(id_string, "MythTVVideo", 12);
135
 
    avio_skip(pb, 5); // version string
136
 
    avio_skip(pb, 3); // padding
137
 
    width = avio_rl32(pb);
 
165
    avio_skip(pb, 5);       // version string
 
166
    avio_skip(pb, 3);       // padding
 
167
    width  = avio_rl32(pb);
138
168
    height = avio_rl32(pb);
139
 
    avio_rl32(pb); // unused, "desiredwidth"
140
 
    avio_rl32(pb); // unused, "desiredheight"
141
 
    avio_r8(pb); // 'P' == progressive, 'I' == interlaced
142
 
    avio_skip(pb, 3); // padding
 
169
    avio_rl32(pb);          // unused, "desiredwidth"
 
170
    avio_rl32(pb);          // unused, "desiredheight"
 
171
    avio_r8(pb);            // 'P' == progressive, 'I' == interlaced
 
172
    avio_skip(pb, 3);       // padding
143
173
    aspect = av_int2double(avio_rl64(pb));
144
174
    if (aspect > 0.9999 && aspect < 1.0001)
145
175
        aspect = 4.0 / 3.0;
153
183
    avio_rl32(pb); // keyframe distance (?)
154
184
 
155
185
    if (v_packs) {
156
 
        ctx->v_id = stream_nr++;
157
186
        vst = avformat_new_stream(s, NULL);
158
187
        if (!vst)
159
188
            return AVERROR(ENOMEM);
160
 
        vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
161
 
        vst->codec->codec_id = CODEC_ID_NUV;
162
 
        vst->codec->width = width;
163
 
        vst->codec->height = height;
 
189
        ctx->v_id = vst->index;
 
190
 
 
191
        vst->codec->codec_type            = AVMEDIA_TYPE_VIDEO;
 
192
        vst->codec->codec_id              = AV_CODEC_ID_NUV;
 
193
        vst->codec->width                 = width;
 
194
        vst->codec->height                = height;
164
195
        vst->codec->bits_per_coded_sample = 10;
165
 
        vst->sample_aspect_ratio = av_d2q(aspect * height / width, 10000);
166
 
        vst->r_frame_rate = av_d2q(fps, 60000);
 
196
        vst->sample_aspect_ratio          = av_d2q(aspect * height / width,
 
197
                                                   10000);
 
198
#if FF_API_R_FRAME_RATE
 
199
        vst->r_frame_rate =
 
200
#endif
 
201
        vst->avg_frame_rate = av_d2q(fps, 60000);
167
202
        avpriv_set_pts_info(vst, 32, 1, 1000);
168
203
    } else
169
204
        ctx->v_id = -1;
170
205
 
171
206
    if (a_packs) {
172
 
        ctx->a_id = stream_nr++;
173
207
        ast = avformat_new_stream(s, NULL);
174
208
        if (!ast)
175
209
            return AVERROR(ENOMEM);
176
 
        ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
177
 
        ast->codec->codec_id = CODEC_ID_PCM_S16LE;
178
 
        ast->codec->channels = 2;
179
 
        ast->codec->sample_rate = 44100;
180
 
        ast->codec->bit_rate = 2 * 2 * 44100 * 8;
181
 
        ast->codec->block_align = 2 * 2;
 
210
        ctx->a_id = ast->index;
 
211
 
 
212
        ast->codec->codec_type            = AVMEDIA_TYPE_AUDIO;
 
213
        ast->codec->codec_id              = AV_CODEC_ID_PCM_S16LE;
 
214
        ast->codec->channels              = 2;
 
215
        ast->codec->channel_layout        = AV_CH_LAYOUT_STEREO;
 
216
        ast->codec->sample_rate           = 44100;
 
217
        ast->codec->bit_rate              = 2 * 2 * 44100 * 8;
 
218
        ast->codec->block_align           = 2 * 2;
182
219
        ast->codec->bits_per_coded_sample = 16;
183
220
        avpriv_set_pts_info(ast, 32, 1, 1000);
184
221
    } else
185
222
        ctx->a_id = -1;
186
223
 
187
 
    get_codec_data(pb, vst, ast, is_mythtv);
188
 
    ctx->rtjpg_video = vst && vst->codec->codec_id == CODEC_ID_NUV;
 
224
    if ((ret = get_codec_data(pb, vst, ast, is_mythtv)) < 0)
 
225
        return ret;
 
226
 
 
227
    ctx->rtjpg_video = vst && vst->codec->codec_id == AV_CODEC_ID_NUV;
 
228
 
189
229
    return 0;
190
230
}
191
231
 
192
232
#define HDRSIZE 12
193
233
 
194
 
static int nuv_packet(AVFormatContext *s, AVPacket *pkt) {
 
234
static int nuv_packet(AVFormatContext *s, AVPacket *pkt)
 
235
{
195
236
    NUVContext *ctx = s->priv_data;
196
237
    AVIOContext *pb = s->pb;
197
238
    uint8_t hdr[HDRSIZE];
198
239
    nuv_frametype frametype;
199
240
    int ret, size;
 
241
 
200
242
    while (!pb->eof_reached) {
201
243
        int copyhdrsize = ctx->rtjpg_video ? HDRSIZE : 0;
202
 
        uint64_t pos = avio_tell(pb);
 
244
        uint64_t pos    = avio_tell(pb);
 
245
 
203
246
        ret = avio_read(pb, hdr, HDRSIZE);
204
247
        if (ret < HDRSIZE)
205
248
            return ret < 0 ? ret : AVERROR(EIO);
 
249
 
206
250
        frametype = hdr[0];
207
 
        size = PKTSIZE(AV_RL32(&hdr[8]));
 
251
        size      = PKTSIZE(AV_RL32(&hdr[8]));
 
252
 
208
253
        switch (frametype) {
209
 
            case NUV_EXTRADATA:
210
 
                if (!ctx->rtjpg_video) {
211
 
                    avio_skip(pb, size);
212
 
                    break;
213
 
                }
214
 
            case NUV_VIDEO:
215
 
                if (ctx->v_id < 0) {
216
 
                    av_log(s, AV_LOG_ERROR, "Video packet in file without video stream!\n");
217
 
                    avio_skip(pb, size);
218
 
                    break;
219
 
                }
220
 
                ret = av_new_packet(pkt, copyhdrsize + size);
221
 
                if (ret < 0)
222
 
                    return ret;
223
 
                // HACK: we have no idea if it is a keyframe,
224
 
                // but if we mark none seeking will not work at all.
225
 
                pkt->flags |= AV_PKT_FLAG_KEY;
226
 
                pkt->pos = pos;
227
 
                pkt->pts = AV_RL32(&hdr[4]);
228
 
                pkt->stream_index = ctx->v_id;
229
 
                memcpy(pkt->data, hdr, copyhdrsize);
230
 
                ret = avio_read(pb, pkt->data + copyhdrsize, size);
231
 
                if (ret < 0) {
232
 
                    av_free_packet(pkt);
233
 
                    return ret;
234
 
                }
235
 
                if (ret < size)
236
 
                    av_shrink_packet(pkt, copyhdrsize + ret);
237
 
                return 0;
238
 
            case NUV_AUDIO:
239
 
                if (ctx->a_id < 0) {
240
 
                    av_log(s, AV_LOG_ERROR, "Audio packet in file without audio stream!\n");
241
 
                    avio_skip(pb, size);
242
 
                    break;
243
 
                }
244
 
                ret = av_get_packet(pb, pkt, size);
245
 
                pkt->flags |= AV_PKT_FLAG_KEY;
246
 
                pkt->pos = pos;
247
 
                pkt->pts = AV_RL32(&hdr[4]);
248
 
                pkt->stream_index = ctx->a_id;
249
 
                if (ret < 0) return ret;
250
 
                return 0;
251
 
            case NUV_SEEKP:
252
 
                // contains no data, size value is invalid
253
 
                break;
254
 
            default:
255
 
                avio_skip(pb, size);
256
 
                break;
 
254
        case NUV_EXTRADATA:
 
255
            if (!ctx->rtjpg_video) {
 
256
                avio_skip(pb, size);
 
257
                break;
 
258
            }
 
259
        case NUV_VIDEO:
 
260
            if (ctx->v_id < 0) {
 
261
                av_log(s, AV_LOG_ERROR, "Video packet in file without video stream!\n");
 
262
                avio_skip(pb, size);
 
263
                break;
 
264
            }
 
265
            ret = av_new_packet(pkt, copyhdrsize + size);
 
266
            if (ret < 0)
 
267
                return ret;
 
268
            // HACK: we have no idea if it is a keyframe,
 
269
            // but if we mark none seeking will not work at all.
 
270
            pkt->flags       |= AV_PKT_FLAG_KEY;
 
271
            pkt->pos          = pos;
 
272
            pkt->pts          = AV_RL32(&hdr[4]);
 
273
            pkt->stream_index = ctx->v_id;
 
274
            memcpy(pkt->data, hdr, copyhdrsize);
 
275
            ret = avio_read(pb, pkt->data + copyhdrsize, size);
 
276
            if (ret < 0) {
 
277
                av_free_packet(pkt);
 
278
                return ret;
 
279
            }
 
280
            if (ret < size)
 
281
                av_shrink_packet(pkt, copyhdrsize + ret);
 
282
            return 0;
 
283
        case NUV_AUDIO:
 
284
            if (ctx->a_id < 0) {
 
285
                av_log(s, AV_LOG_ERROR, "Audio packet in file without audio stream!\n");
 
286
                avio_skip(pb, size);
 
287
                break;
 
288
            }
 
289
            ret               = av_get_packet(pb, pkt, size);
 
290
            pkt->flags       |= AV_PKT_FLAG_KEY;
 
291
            pkt->pos          = pos;
 
292
            pkt->pts          = AV_RL32(&hdr[4]);
 
293
            pkt->stream_index = ctx->a_id;
 
294
            if (ret < 0)
 
295
                return ret;
 
296
            return 0;
 
297
        case NUV_SEEKP:
 
298
            // contains no data, size value is invalid
 
299
            break;
 
300
        default:
 
301
            avio_skip(pb, size);
 
302
            break;
257
303
        }
258
304
    }
 
305
 
259
306
    return AVERROR(EIO);
260
307
}
261
308
 
262
309
AVInputFormat ff_nuv_demuxer = {
263
310
    .name           = "nuv",
264
 
    .long_name      = NULL_IF_CONFIG_SMALL("NuppelVideo format"),
 
311
    .long_name      = NULL_IF_CONFIG_SMALL("NuppelVideo"),
265
312
    .priv_data_size = sizeof(NUVContext),
266
313
    .read_probe     = nuv_probe,
267
314
    .read_header    = nuv_header,
268
315
    .read_packet    = nuv_packet,
269
 
    .flags = AVFMT_GENERIC_INDEX,
 
316
    .flags          = AVFMT_GENERIC_INDEX,
270
317
};