]> git.sesse.net Git - ffmpeg/blob - libavformat/cdxl.c
lavf: factor out freeing an AVStream
[ffmpeg] / libavformat / cdxl.c
1 /*
2  * CDXL demuxer
3  * Copyright (c) 2011-2012 Paul B Mahol
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/channel_layout.h"
23 #include "libavutil/intreadwrite.h"
24 #include "libavutil/parseutils.h"
25 #include "libavutil/opt.h"
26 #include "avformat.h"
27 #include "internal.h"
28
29 #define CDXL_HEADER_SIZE 32
30
31 typedef struct CDXLDemuxContext {
32     AVClass     *class;
33     int         sample_rate;
34     char        *framerate;
35     AVRational  fps;
36     int         read_chunk;
37     uint8_t     header[CDXL_HEADER_SIZE];
38     int         video_stream_index;
39     int         audio_stream_index;
40 } CDXLDemuxContext;
41
42 static int cdxl_read_header(AVFormatContext *s)
43 {
44     CDXLDemuxContext *cdxl = s->priv_data;
45     int ret;
46
47     if (cdxl->framerate && (ret = av_parse_video_rate(&cdxl->fps, cdxl->framerate)) < 0) {
48         av_log(s, AV_LOG_ERROR,
49                "Could not parse framerate: %s.\n", cdxl->framerate);
50         return ret;
51     }
52
53     cdxl->read_chunk         =  0;
54     cdxl->video_stream_index = -1;
55     cdxl->audio_stream_index = -1;
56
57     s->ctx_flags |= AVFMTCTX_NOHEADER;
58
59     return 0;
60 }
61
62 static int cdxl_read_packet(AVFormatContext *s, AVPacket *pkt)
63 {
64     CDXLDemuxContext *cdxl = s->priv_data;
65     AVIOContext *pb = s->pb;
66     uint32_t current_size, video_size, image_size;
67     uint16_t audio_size, palette_size, width, height;
68     int64_t  pos;
69     int      ret;
70
71     if (pb->eof_reached)
72         return AVERROR_EOF;
73
74     pos = avio_tell(pb);
75     if (!cdxl->read_chunk &&
76         avio_read(pb, cdxl->header, CDXL_HEADER_SIZE) != CDXL_HEADER_SIZE)
77         return AVERROR_EOF;
78     if (cdxl->header[0] != 1) {
79         av_log(s, AV_LOG_ERROR, "non-standard cdxl file\n");
80         return AVERROR_INVALIDDATA;
81     }
82
83     current_size = AV_RB32(&cdxl->header[2]);
84     width        = AV_RB16(&cdxl->header[14]);
85     height       = AV_RB16(&cdxl->header[16]);
86     palette_size = AV_RB16(&cdxl->header[20]);
87     audio_size   = AV_RB16(&cdxl->header[22]);
88     image_size   = FFALIGN(width, 16) * height * cdxl->header[19] / 8;
89     video_size   = palette_size + image_size;
90
91     if (palette_size > 512)
92         return AVERROR_INVALIDDATA;
93     if (current_size < (uint64_t)audio_size + video_size + CDXL_HEADER_SIZE)
94         return AVERROR_INVALIDDATA;
95
96     if (cdxl->read_chunk && audio_size) {
97         if (cdxl->audio_stream_index == -1) {
98             AVStream *st = avformat_new_stream(s, NULL);
99             if (!st)
100                 return AVERROR(ENOMEM);
101
102             st->codec->codec_type    = AVMEDIA_TYPE_AUDIO;
103             st->codec->codec_tag     = 0;
104             st->codec->codec_id      = AV_CODEC_ID_PCM_S8;
105             if (cdxl->header[1] & 0x10) {
106                 st->codec->channels       = 2;
107                 st->codec->channel_layout = AV_CH_LAYOUT_STEREO;
108             } else {
109                 st->codec->channels       = 1;
110                 st->codec->channel_layout = AV_CH_LAYOUT_MONO;
111             }
112             st->codec->sample_rate   = cdxl->sample_rate;
113             st->start_time           = 0;
114             cdxl->audio_stream_index = st->index;
115             avpriv_set_pts_info(st, 64, 1, cdxl->sample_rate);
116         }
117
118         ret = av_get_packet(pb, pkt, audio_size);
119         if (ret < 0)
120             return ret;
121         pkt->stream_index = cdxl->audio_stream_index;
122         pkt->pos          = pos;
123         pkt->duration     = audio_size;
124         cdxl->read_chunk  = 0;
125     } else {
126         if (cdxl->video_stream_index == -1) {
127             AVStream *st = avformat_new_stream(s, NULL);
128             if (!st)
129                 return AVERROR(ENOMEM);
130
131             st->codec->codec_type    = AVMEDIA_TYPE_VIDEO;
132             st->codec->codec_tag     = 0;
133             st->codec->codec_id      = AV_CODEC_ID_CDXL;
134             st->codec->width         = width;
135             st->codec->height        = height;
136             st->start_time           = 0;
137             cdxl->video_stream_index = st->index;
138             if (cdxl->framerate)
139                 avpriv_set_pts_info(st, 64, cdxl->fps.den, cdxl->fps.num);
140             else
141                 avpriv_set_pts_info(st, 64, 1, cdxl->sample_rate);
142         }
143
144         if (av_new_packet(pkt, video_size + CDXL_HEADER_SIZE) < 0)
145             return AVERROR(ENOMEM);
146         memcpy(pkt->data, cdxl->header, CDXL_HEADER_SIZE);
147         ret = avio_read(pb, pkt->data + CDXL_HEADER_SIZE, video_size);
148         if (ret < 0) {
149             av_packet_unref(pkt);
150             return ret;
151         }
152         av_shrink_packet(pkt, CDXL_HEADER_SIZE + ret);
153         pkt->stream_index  = cdxl->video_stream_index;
154         pkt->flags        |= AV_PKT_FLAG_KEY;
155         pkt->pos           = pos;
156         pkt->duration      = cdxl->framerate ? 1 : audio_size ? audio_size : 220;
157         cdxl->read_chunk   = audio_size;
158     }
159
160     if (!cdxl->read_chunk)
161         avio_skip(pb, current_size - audio_size - video_size - CDXL_HEADER_SIZE);
162     return ret;
163 }
164
165 #define OFFSET(x) offsetof(CDXLDemuxContext, x)
166 static const AVOption cdxl_options[] = {
167     { "sample_rate", "", OFFSET(sample_rate), AV_OPT_TYPE_INT,    { .i64 = 11025 }, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
168     { "framerate",   "", OFFSET(framerate),   AV_OPT_TYPE_STRING, { .str = NULL },  0, 0,       AV_OPT_FLAG_DECODING_PARAM },
169     { NULL },
170 };
171
172 static const AVClass cdxl_demuxer_class = {
173     .class_name = "CDXL demuxer",
174     .item_name  = av_default_item_name,
175     .option     = cdxl_options,
176     .version    = LIBAVUTIL_VERSION_INT,
177 };
178
179 AVInputFormat ff_cdxl_demuxer = {
180     .name           = "cdxl",
181     .long_name      = NULL_IF_CONFIG_SMALL("Commodore CDXL video"),
182     .priv_data_size = sizeof(CDXLDemuxContext),
183     .read_header    = cdxl_read_header,
184     .read_packet    = cdxl_read_packet,
185     .extensions     = "cdxl,xl",
186     .flags          = AVFMT_GENERIC_INDEX,
187     .priv_class     = &cdxl_demuxer_class,
188 };