Mercurial > libavformat.hg
annotate daud.c @ 6445:4aaed59641ff libavformat
move pcm demuxers to their own file
| author | aurel |
|---|---|
| date | Mon, 30 Aug 2010 21:17:34 +0000 |
| parents | 536e5527c1e0 |
| children |
| rev | line source |
|---|---|
| 847 | 1 /* |
|
1415
3b00fb8ef8e4
replace coder/decoder file description in libavformat by muxer/demuxer
aurel
parents:
1358
diff
changeset
|
2 * D-Cinema audio demuxer |
| 2240 | 3 * Copyright (c) 2005 Reimar Döffinger |
| 847 | 4 * |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
5 * This file is part of FFmpeg. |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
6 * |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
| 847 | 8 * modify it under the terms of the GNU Lesser General Public |
| 9 * License as published by the Free Software Foundation; either | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
| 847 | 11 * |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
| 847 | 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 | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
|
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
847
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 847 | 20 */ |
| 21 #include "avformat.h" | |
| 22 | |
| 23 static int daud_header(AVFormatContext *s, AVFormatParameters *ap) { | |
| 24 AVStream *st = av_new_stream(s, 0); | |
| 3403 | 25 if (!st) |
| 26 return AVERROR(ENOMEM); | |
|
5910
536e5527c1e0
Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents:
4206
diff
changeset
|
27 st->codec->codec_type = AVMEDIA_TYPE_AUDIO; |
| 847 | 28 st->codec->codec_id = CODEC_ID_PCM_S24DAUD; |
| 29 st->codec->codec_tag = MKTAG('d', 'a', 'u', 'd'); | |
| 30 st->codec->channels = 6; | |
| 31 st->codec->sample_rate = 96000; | |
| 32 st->codec->bit_rate = 3 * 6 * 96000 * 8; | |
| 33 st->codec->block_align = 3 * 6; | |
|
3908
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3627
diff
changeset
|
34 st->codec->bits_per_coded_sample = 24; |
| 847 | 35 return 0; |
| 36 } | |
| 37 | |
| 38 static int daud_packet(AVFormatContext *s, AVPacket *pkt) { | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
39 ByteIOContext *pb = s->pb; |
| 847 | 40 int ret, size; |
| 41 if (url_feof(pb)) | |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2240
diff
changeset
|
42 return AVERROR(EIO); |
| 847 | 43 size = get_be16(pb); |
| 44 get_be16(pb); // unknown | |
| 45 ret = av_get_packet(pb, pkt, size); | |
| 46 pkt->stream_index = 0; | |
| 47 return ret; | |
| 48 } | |
| 49 | |
| 3627 | 50 static int daud_write_header(struct AVFormatContext *s) |
| 51 { | |
| 52 AVCodecContext *codec = s->streams[0]->codec; | |
| 53 if (codec->channels!=6 || codec->sample_rate!=96000) | |
| 54 return -1; | |
| 55 return 0; | |
| 56 } | |
| 57 | |
| 58 static int daud_write_packet(struct AVFormatContext *s, AVPacket *pkt) | |
| 59 { | |
| 60 put_be16(s->pb, pkt->size); | |
| 61 put_be16(s->pb, 0x8010); // unknown | |
| 62 put_buffer(s->pb, pkt->data, pkt->size); | |
| 63 put_flush_packet(s->pb); | |
| 64 return 0; | |
| 65 } | |
| 66 | |
| 67 #if CONFIG_DAUD_DEMUXER | |
| 1169 | 68 AVInputFormat daud_demuxer = { |
| 847 | 69 "daud", |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3403
diff
changeset
|
70 NULL_IF_CONFIG_SMALL("D-Cinema audio format"), |
| 847 | 71 0, |
| 72 NULL, | |
| 73 daud_header, | |
| 74 daud_packet, | |
| 75 NULL, | |
| 76 NULL, | |
| 77 .extensions = "302", | |
| 78 }; | |
| 3627 | 79 #endif |
| 80 | |
| 4206 | 81 #if CONFIG_DAUD_MUXER |
| 3627 | 82 AVOutputFormat daud_muxer = |
| 83 { | |
| 84 "daud", | |
| 85 NULL_IF_CONFIG_SMALL("D-Cinema audio format"), | |
| 86 NULL, | |
| 87 "302", | |
| 88 0, | |
| 89 CODEC_ID_PCM_S24DAUD, | |
| 90 CODEC_ID_NONE, | |
| 91 daud_write_header, | |
| 92 daud_write_packet, | |
| 93 .flags= AVFMT_NOTIMESTAMPS, | |
| 94 }; | |
| 95 #endif |
