| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2006-10-23 08:57:54 +00:00
										 |  |  |  * RAW muxer and demuxer | 
					
						
							| 
									
										
										
										
											2009-01-19 15:46:40 +00:00
										 |  |  |  * Copyright (c) 2001 Fabrice Bellard | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  |  * Copyright (c) 2005 Alex Beregszaszi | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2002-05-25 22:34:32 +00:00
										 |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2002-05-25 22:34:32 +00:00
										 |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2002-05-25 22:34:32 +00:00
										 |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2006-01-12 22:43:26 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-05-09 11:56:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "libavutil/crc.h"
 | 
					
						
							|  |  |  | #include "libavcodec/ac3_parser.h"
 | 
					
						
							|  |  |  | #include "libavcodec/bitstream.h"
 | 
					
						
							|  |  |  | #include "libavcodec/bytestream.h"
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | #include "avformat.h"
 | 
					
						
							| 
									
										
										
										
											2007-09-11 09:27:46 +00:00
										 |  |  | #include "raw.h"
 | 
					
						
							| 
									
										
										
										
											2009-01-19 21:54:06 +00:00
										 |  |  | #include "id3v2.h"
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* simple formats */ | 
					
						
							| 
									
										
										
										
											2006-05-12 15:13:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_ROQ_MUXER
 | 
					
						
							| 
									
										
										
										
											2007-05-09 23:07:40 +00:00
										 |  |  | static int roq_write_header(struct AVFormatContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     static const uint8_t header[] = { | 
					
						
							|  |  |  |         0x84, 0x10, 0xFF, 0xFF, 0xFF, 0xFF, 0x1E, 0x00 | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     put_buffer(s->pb, header, 8); | 
					
						
							|  |  |  |     put_flush_packet(s->pb); | 
					
						
							| 
									
										
										
										
											2007-05-09 23:07:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 16:54:27 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-05-09 23:07:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_NULL_MUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | static int null_write_packet(struct AVFormatContext *s, AVPacket *pkt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 16:54:27 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2004-05-29 02:06:32 +00:00
										 |  |  | static int raw_write_packet(struct AVFormatContext *s, AVPacket *pkt) | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     put_buffer(s->pb, pkt->data, pkt->size); | 
					
						
							|  |  |  |     put_flush_packet(s->pb); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_DEMUXERS
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | /* raw input */ | 
					
						
							| 
									
										
										
										
											2003-02-11 16:35:48 +00:00
										 |  |  | static int raw_read_header(AVFormatContext *s, AVFormatParameters *ap) | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     int id; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     st = av_new_stream(s, 0); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     if (!st) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:21:30 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2006-03-11 00:22:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |         id = s->iformat->value; | 
					
						
							|  |  |  |         if (id == CODEC_ID_RAWVIDEO) { | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |             st->codec->codec_type = CODEC_TYPE_VIDEO; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |             st->codec->codec_type = CODEC_TYPE_AUDIO; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |         st->codec->codec_id = id; | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |         switch(st->codec->codec_type) { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         case CODEC_TYPE_AUDIO: | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |             st->codec->sample_rate = ap->sample_rate; | 
					
						
							| 
									
										
										
										
											2008-10-18 10:40:31 +00:00
										 |  |  |             if(ap->channels) st->codec->channels = ap->channels; | 
					
						
							|  |  |  |             else             st->codec->channels = 1; | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |             av_set_pts_info(st, 64, 1, st->codec->sample_rate); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case CODEC_TYPE_VIDEO: | 
					
						
							| 
									
										
										
										
											2007-12-26 22:28:22 +00:00
										 |  |  |             if(ap->time_base.num) | 
					
						
							|  |  |  |                 av_set_pts_info(st, 64, ap->time_base.num, ap->time_base.den); | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 av_set_pts_info(st, 64, 1, 25); | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |             st->codec->width = ap->width; | 
					
						
							|  |  |  |             st->codec->height = ap->height; | 
					
						
							|  |  |  |             st->codec->pix_fmt = ap->pix_fmt; | 
					
						
							|  |  |  |             if(st->codec->pix_fmt == PIX_FMT_NONE) | 
					
						
							|  |  |  |                 st->codec->pix_fmt= PIX_FMT_YUV420P; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-15 22:44:44 +00:00
										 |  |  | #define RAW_PACKET_SIZE 1024
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-10 09:35:32 +00:00
										 |  |  | static int raw_read_packet(AVFormatContext *s, AVPacket *pkt) | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-12 00:24:10 +00:00
										 |  |  |     int ret, size, bps; | 
					
						
							| 
									
										
										
										
											2003-01-23 09:52:30 +00:00
										 |  |  |     //    AVStream *st = s->streams[0];
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-18 17:33:03 +00:00
										 |  |  |     size= RAW_PACKET_SIZE; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     ret= av_get_packet(s->pb, pkt, size); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     pkt->stream_index = 0; | 
					
						
							| 
									
										
										
										
											2001-09-15 22:44:44 +00:00
										 |  |  |     if (ret <= 0) { | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |         return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2001-09-15 22:44:44 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     /* note: we need to modify the packet size here to handle the last
 | 
					
						
							|  |  |  |        packet */ | 
					
						
							|  |  |  |     pkt->size = ret; | 
					
						
							| 
									
										
										
										
											2008-01-12 00:24:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     bps= av_get_bits_per_sample(s->streams[0]->codec->codec_id); | 
					
						
							|  |  |  |     assert(bps); // if false there IS a bug elsewhere (NOT in this function)
 | 
					
						
							|  |  |  |     pkt->dts= | 
					
						
							|  |  |  |     pkt->pts= pkt->pos*8 / (bps * s->streams[0]->codec->channels); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  | int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt) | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret, size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     size = RAW_PACKET_SIZE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (av_new_packet(pkt, size) < 0) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |         return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     pkt->pos= url_ftell(s->pb); | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  |     pkt->stream_index = 0; | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     ret = get_partial_buffer(s->pb, pkt->data, size); | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  |     if (ret <= 0) { | 
					
						
							|  |  |  |         av_free_packet(pkt); | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |         return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     pkt->size = ret; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_RAWVIDEO_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | static int rawvideo_read_packet(AVFormatContext *s, AVPacket *pkt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int packet_size, ret, width, height; | 
					
						
							|  |  |  |     AVStream *st = s->streams[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     width = st->codec->width; | 
					
						
							|  |  |  |     height = st->codec->height; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     packet_size = avpicture_get_size(st->codec->pix_fmt, width, height); | 
					
						
							|  |  |  |     if (packet_size < 0) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret= av_get_packet(s->pb, pkt, packet_size); | 
					
						
							|  |  |  |     pkt->pts= | 
					
						
							|  |  |  |     pkt->dts= pkt->pos / packet_size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pkt->stream_index = 0; | 
					
						
							|  |  |  |     if (ret != packet_size) { | 
					
						
							|  |  |  |         return AVERROR(EIO); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_INGENIENT_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  | // http://www.artificis.hu/files/texts/ingenient.txt
 | 
					
						
							|  |  |  | static int ingenient_read_packet(AVFormatContext *s, AVPacket *pkt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret, size, w, h, unk1, unk2; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     if (get_le32(s->pb) != MKTAG('M', 'J', 'P', 'G')) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |         return AVERROR(EIO); // FIXME
 | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     size = get_le32(s->pb); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     w = get_le16(s->pb); | 
					
						
							|  |  |  |     h = get_le16(s->pb); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     url_fskip(s->pb, 8); // zero + size (padded?)
 | 
					
						
							|  |  |  |     url_fskip(s->pb, 2); | 
					
						
							|  |  |  |     unk1 = get_le16(s->pb); | 
					
						
							|  |  |  |     unk2 = get_le16(s->pb); | 
					
						
							| 
									
										
										
										
											2008-08-15 16:33:12 +00:00
										 |  |  |     url_fskip(s->pb, 22); // ASCII timestamp
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-16 16:09:58 +00:00
										 |  |  |     av_log(s, AV_LOG_DEBUG, "Ingenient packet: size=%d, width=%d, height=%d, unk1=%d unk2=%d\n", | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         size, w, h, unk1, unk2); | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (av_new_packet(pkt, size) < 0) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |         return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     pkt->pos = url_ftell(s->pb); | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  |     pkt->stream_index = 0; | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     ret = get_buffer(s->pb, pkt->data, size); | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  |     if (ret <= 0) { | 
					
						
							|  |  |  |         av_free_packet(pkt); | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |         return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     pkt->size = ret; | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_DEMUXERS
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | int pcm_read_seek(AVFormatContext *s, | 
					
						
							| 
									
										
										
										
											2004-10-11 23:53:53 +00:00
										 |  |  |                   int stream_index, int64_t timestamp, int flags) | 
					
						
							| 
									
										
										
										
											2003-11-10 18:41:45 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							| 
									
										
										
										
											2008-07-31 18:12:37 +00:00
										 |  |  |     int block_align, byte_rate, ret; | 
					
						
							| 
									
										
										
										
											2003-11-10 18:41:45 +00:00
										 |  |  |     int64_t pos; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     st = s->streams[0]; | 
					
						
							| 
									
										
										
										
											2006-10-18 11:57:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     block_align = st->codec->block_align ? st->codec->block_align : | 
					
						
							|  |  |  |         (av_get_bits_per_sample(st->codec->codec_id) * st->codec->channels) >> 3; | 
					
						
							|  |  |  |     byte_rate = st->codec->bit_rate ? st->codec->bit_rate >> 3 : | 
					
						
							|  |  |  |         block_align * st->codec->sample_rate; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-10 18:41:45 +00:00
										 |  |  |     if (block_align <= 0 || byte_rate <= 0) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* compute the position by aligning it to block_align */ | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     pos = av_rescale_rnd(timestamp * byte_rate, | 
					
						
							|  |  |  |                          st->time_base.num, | 
					
						
							| 
									
										
										
										
											2004-10-11 23:53:53 +00:00
										 |  |  |                          st->time_base.den * (int64_t)block_align, | 
					
						
							|  |  |  |                          (flags & AVSEEK_FLAG_BACKWARD) ? AV_ROUND_DOWN : AV_ROUND_UP); | 
					
						
							|  |  |  |     pos *= block_align; | 
					
						
							| 
									
										
										
										
											2003-11-10 18:41:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* recompute exact position */ | 
					
						
							| 
									
										
										
										
											2004-05-23 21:36:23 +00:00
										 |  |  |     st->cur_dts = av_rescale(pos, st->time_base.den, byte_rate * (int64_t)st->time_base.num); | 
					
						
							| 
									
										
										
										
											2008-07-31 18:12:37 +00:00
										 |  |  |     if ((ret = url_fseek(s->pb, pos + s->data_offset, SEEK_SET)) < 0) | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2003-11-10 18:41:45 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-28 14:14:44 +00:00
										 |  |  | static int audio_read_header(AVFormatContext *s, | 
					
						
							|  |  |  |                              AVFormatParameters *ap) | 
					
						
							| 
									
										
										
										
											2006-02-08 00:51:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-04-28 14:14:44 +00:00
										 |  |  |     AVStream *st = av_new_stream(s, 0); | 
					
						
							| 
									
										
										
										
											2006-02-08 00:51:55 +00:00
										 |  |  |     if (!st) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:21:30 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2006-02-08 00:51:55 +00:00
										 |  |  |     st->codec->codec_type = CODEC_TYPE_AUDIO; | 
					
						
							| 
									
										
										
										
											2008-04-28 14:14:44 +00:00
										 |  |  |     st->codec->codec_id = s->iformat->value; | 
					
						
							| 
									
										
										
										
											2007-04-15 13:51:57 +00:00
										 |  |  |     st->need_parsing = AVSTREAM_PARSE_FULL; | 
					
						
							| 
									
										
										
										
											2006-02-08 00:51:55 +00:00
										 |  |  |     /* the parameters will be extracted from the compressed bitstream */ | 
					
						
							| 
									
										
										
										
											2009-01-25 00:16:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-08 00:51:55 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-15 16:33:12 +00:00
										 |  |  | /* MPEG-1/H.263 input */ | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | static int video_read_header(AVFormatContext *s, | 
					
						
							|  |  |  |                              AVFormatParameters *ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     st = av_new_stream(s, 0); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     if (!st) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:21:30 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     st->codec->codec_type = CODEC_TYPE_VIDEO; | 
					
						
							|  |  |  |     st->codec->codec_id = s->iformat->value; | 
					
						
							| 
									
										
										
										
											2007-04-15 13:51:57 +00:00
										 |  |  |     st->need_parsing = AVSTREAM_PARSE_FULL; | 
					
						
							| 
									
										
										
										
											2003-11-10 18:41:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-15 16:33:12 +00:00
										 |  |  |     /* for MJPEG, specify frame rate */ | 
					
						
							|  |  |  |     /* for MPEG-4 specify it, too (most MPEG-4 streams do not have the fixed_vop_rate set ...)*/ | 
					
						
							| 
									
										
										
										
											2006-03-11 00:22:21 +00:00
										 |  |  |     if (ap->time_base.num) { | 
					
						
							| 
									
										
										
										
											2009-03-01 03:48:35 +00:00
										 |  |  |         st->codec->time_base= ap->time_base; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     } else if ( st->codec->codec_id == CODEC_ID_MJPEG || | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |                 st->codec->codec_id == CODEC_ID_MPEG4 || | 
					
						
							| 
									
										
										
										
											2008-05-02 14:52:39 +00:00
										 |  |  |                 st->codec->codec_id == CODEC_ID_DIRAC || | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |                 st->codec->codec_id == CODEC_ID_H264) { | 
					
						
							| 
									
										
										
										
											2009-03-01 03:48:35 +00:00
										 |  |  |         st->codec->time_base= (AVRational){1,25}; | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-01 03:48:35 +00:00
										 |  |  |     av_set_pts_info(st, 64, 1, 1200000); | 
					
						
							| 
									
										
										
										
											2005-05-06 14:19:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_MPEGVIDEO_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  | #define SEQ_START_CODE          0x000001b3
 | 
					
						
							|  |  |  | #define GOP_START_CODE          0x000001b8
 | 
					
						
							|  |  |  | #define PICTURE_START_CODE      0x00000100
 | 
					
						
							| 
									
										
										
										
											2006-02-02 13:56:42 +00:00
										 |  |  | #define SLICE_START_CODE        0x00000101
 | 
					
						
							|  |  |  | #define PACK_START_CODE         0x000001ba
 | 
					
						
							| 
									
										
										
										
											2006-03-01 20:09:44 +00:00
										 |  |  | #define VIDEO_ID                0x000001e0
 | 
					
						
							|  |  |  | #define AUDIO_ID                0x000001c0
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int mpegvideo_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-02 13:56:42 +00:00
										 |  |  |     uint32_t code= -1; | 
					
						
							| 
									
										
										
										
											2006-03-01 20:09:44 +00:00
										 |  |  |     int pic=0, seq=0, slice=0, pspack=0, pes=0; | 
					
						
							| 
									
										
										
										
											2006-02-02 13:56:42 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for(i=0; i<p->buf_size; i++){ | 
					
						
							|  |  |  |         code = (code<<8) + p->buf[i]; | 
					
						
							|  |  |  |         if ((code & 0xffffff00) == 0x100) { | 
					
						
							|  |  |  |             switch(code){ | 
					
						
							|  |  |  |             case     SEQ_START_CODE:   seq++; break; | 
					
						
							|  |  |  |             case PICTURE_START_CODE:   pic++; break; | 
					
						
							|  |  |  |             case   SLICE_START_CODE: slice++; break; | 
					
						
							|  |  |  |             case    PACK_START_CODE: pspack++; break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2007-03-29 20:22:38 +00:00
										 |  |  |             if     ((code & 0x1f0) == VIDEO_ID)   pes++; | 
					
						
							|  |  |  |             else if((code & 0x1e0) == AUDIO_ID)   pes++; | 
					
						
							| 
									
										
										
										
											2006-02-02 13:56:42 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-03-01 20:09:44 +00:00
										 |  |  |     if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !pes) | 
					
						
							| 
									
										
										
										
											2006-02-02 13:56:42 +00:00
										 |  |  |         return AVPROBE_SCORE_MAX/2+1; // +1 for .mpg
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-21 10:34:29 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define CAVS_SEQ_START_CODE       0x000001b0
 | 
					
						
							|  |  |  | #define CAVS_PIC_I_START_CODE     0x000001b3
 | 
					
						
							|  |  |  | #define CAVS_UNDEF_START_CODE     0x000001b4
 | 
					
						
							|  |  |  | #define CAVS_PIC_PB_START_CODE    0x000001b6
 | 
					
						
							|  |  |  | #define CAVS_VIDEO_EDIT_CODE      0x000001b7
 | 
					
						
							|  |  |  | #define CAVS_PROFILE_JIZHUN       0x20
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int cavsvideo_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t code= -1; | 
					
						
							|  |  |  |     int pic=0, seq=0, slice_pos = 0; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for(i=0; i<p->buf_size; i++){ | 
					
						
							|  |  |  |         code = (code<<8) + p->buf[i]; | 
					
						
							|  |  |  |         if ((code & 0xffffff00) == 0x100) { | 
					
						
							|  |  |  |             if(code < CAVS_SEQ_START_CODE) { | 
					
						
							|  |  |  |                 /* slices have to be consecutive */ | 
					
						
							|  |  |  |                 if(code < slice_pos) | 
					
						
							|  |  |  |                     return 0; | 
					
						
							|  |  |  |                 slice_pos = code; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 slice_pos = 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (code == CAVS_SEQ_START_CODE) { | 
					
						
							|  |  |  |                 seq++; | 
					
						
							|  |  |  |                 /* check for the only currently supported profile */ | 
					
						
							|  |  |  |                 if(p->buf[i+1] != CAVS_PROFILE_JIZHUN) | 
					
						
							|  |  |  |                     return 0; | 
					
						
							|  |  |  |             } else if ((code == CAVS_PIC_I_START_CODE) || | 
					
						
							|  |  |  |                        (code == CAVS_PIC_PB_START_CODE)) { | 
					
						
							|  |  |  |                 pic++; | 
					
						
							|  |  |  |             } else if ((code == CAVS_UNDEF_START_CODE) || | 
					
						
							|  |  |  |                        (code >  CAVS_VIDEO_EDIT_CODE)) { | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if(seq && seq*9<=pic*10) | 
					
						
							|  |  |  |         return AVPROBE_SCORE_MAX/2; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_M4V_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2006-11-08 01:21:23 +00:00
										 |  |  | #define VISUAL_OBJECT_START_CODE       0x000001b5
 | 
					
						
							|  |  |  | #define VOP_START_CODE                 0x000001b6
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mpeg4video_probe(AVProbeData *probe_packet) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t temp_buffer= -1; | 
					
						
							| 
									
										
										
										
											2007-05-07 11:57:46 +00:00
										 |  |  |     int VO=0, VOL=0, VOP = 0, VISO = 0, res=0; | 
					
						
							| 
									
										
										
										
											2006-11-08 01:21:23 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for(i=0; i<probe_packet->buf_size; i++){ | 
					
						
							|  |  |  |         temp_buffer = (temp_buffer<<8) + probe_packet->buf[i]; | 
					
						
							| 
									
										
										
										
											2007-07-08 03:16:59 +00:00
										 |  |  |         if ((temp_buffer & 0xffffff00) != 0x100) | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (temp_buffer == VOP_START_CODE)                         VOP++; | 
					
						
							|  |  |  |         else if (temp_buffer == VISUAL_OBJECT_START_CODE)          VISO++; | 
					
						
							|  |  |  |         else if (temp_buffer < 0x120)                              VO++; | 
					
						
							|  |  |  |         else if (temp_buffer < 0x130)                              VOL++; | 
					
						
							|  |  |  |         else if (   !(0x1AF < temp_buffer && temp_buffer < 0x1B7) | 
					
						
							|  |  |  |                  && !(0x1B9 < temp_buffer && temp_buffer < 0x1C4)) res++; | 
					
						
							| 
									
										
										
										
											2006-11-08 01:21:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-07 11:57:46 +00:00
										 |  |  |     if ( VOP >= VISO && VOP >= VOL && VO >= VOL && VOL > 0 && res==0) | 
					
						
							| 
									
										
										
										
											2006-11-08 01:21:23 +00:00
										 |  |  |         return AVPROBE_SCORE_MAX/2; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-11-08 01:21:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_H264_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-12 19:50:48 +00:00
										 |  |  | static int h264_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t code= -1; | 
					
						
							| 
									
										
										
										
											2008-07-26 18:54:26 +00:00
										 |  |  |     int sps=0, pps=0, idr=0, res=0, sli=0; | 
					
						
							| 
									
										
										
										
											2008-07-12 19:50:48 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for(i=0; i<p->buf_size; i++){ | 
					
						
							|  |  |  |         code = (code<<8) + p->buf[i]; | 
					
						
							|  |  |  |         if ((code & 0xffffff00) == 0x100) { | 
					
						
							|  |  |  |             int ref_idc= (code>>5)&3; | 
					
						
							|  |  |  |             int type   = code & 0x1F; | 
					
						
							|  |  |  |             static const int8_t ref_zero[32]={ | 
					
						
							|  |  |  |                 2, 0, 0, 0, 0,-1, 1,-1, | 
					
						
							|  |  |  |                -1, 1, 1, 1, 1,-1, 2, 2, | 
					
						
							|  |  |  |                 2, 2, 2, 0, 2, 2, 2, 2, | 
					
						
							|  |  |  |                 2, 2, 2, 2, 2, 2, 2, 2 | 
					
						
							|  |  |  |             }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if(code & 0x80) //forbidden bit
 | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if(ref_zero[type] == 1 && ref_idc) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             if(ref_zero[type] ==-1 && !ref_idc) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             if(ref_zero[type] == 2) | 
					
						
							|  |  |  |                 res++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             switch(type){ | 
					
						
							| 
									
										
										
										
											2008-07-26 18:54:26 +00:00
										 |  |  |             case     1:   sli++; break; | 
					
						
							| 
									
										
										
										
											2008-07-12 19:50:48 +00:00
										 |  |  |             case     5:   idr++; break; | 
					
						
							|  |  |  |             case     7: | 
					
						
							|  |  |  |                 if(p->buf[i+2]&0x0F) | 
					
						
							|  |  |  |                     return 0; | 
					
						
							|  |  |  |                 sps++; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case     8:   pps++; break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-07-26 18:54:26 +00:00
										 |  |  |     if(sps && pps && (idr||sli>3) && res<(sps+pps+idr)) | 
					
						
							| 
									
										
										
										
											2008-07-12 19:50:48 +00:00
										 |  |  |         return AVPROBE_SCORE_MAX/2+1; // +1 for .mpg
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-07-12 19:50:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_H263_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2003-05-22 14:12:22 +00:00
										 |  |  | static int h263_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int code; | 
					
						
							|  |  |  |     const uint8_t *d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     d = p->buf; | 
					
						
							|  |  |  |     code = (d[0] << 14) | (d[1] << 6) | (d[2] >> 2); | 
					
						
							|  |  |  |     if (code == 0x20) { | 
					
						
							|  |  |  |         return 50; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-05-22 14:12:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_H261_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2004-05-30 20:37:15 +00:00
										 |  |  | static int h261_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int code; | 
					
						
							|  |  |  |     const uint8_t *d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     d = p->buf; | 
					
						
							|  |  |  |     code = (d[0] << 12) | (d[1] << 4) | (d[2] >> 4); | 
					
						
							|  |  |  |     if (code == 0x10) { | 
					
						
							|  |  |  |         return 50; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-05-30 20:37:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_DTS_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-05-03 00:12:32 +00:00
										 |  |  | #define DCA_MARKER_14B_BE 0x1FFFE800
 | 
					
						
							|  |  |  | #define DCA_MARKER_14B_LE 0xFF1F00E8
 | 
					
						
							|  |  |  | #define DCA_MARKER_RAW_BE 0x7FFE8001
 | 
					
						
							|  |  |  | #define DCA_MARKER_RAW_LE 0xFE7F0180
 | 
					
						
							|  |  |  | static int dts_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const uint8_t *buf, *bufp; | 
					
						
							|  |  |  |     uint32_t state = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     buf = p->buf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for(; buf < (p->buf+p->buf_size)-2; buf+=2) { | 
					
						
							|  |  |  |         bufp = buf; | 
					
						
							|  |  |  |         state = (state << 16) | bytestream_get_be16(&bufp); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-15 16:33:12 +00:00
										 |  |  |         /* regular bitstream */ | 
					
						
							| 
									
										
										
										
											2008-05-03 00:12:32 +00:00
										 |  |  |         if (state == DCA_MARKER_RAW_BE || state == DCA_MARKER_RAW_LE) | 
					
						
							|  |  |  |             return AVPROBE_SCORE_MAX/2+1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-15 16:33:12 +00:00
										 |  |  |         /* 14 bits big-endian bitstream */ | 
					
						
							| 
									
										
										
										
											2008-05-03 00:12:32 +00:00
										 |  |  |         if (state == DCA_MARKER_14B_BE) | 
					
						
							|  |  |  |             if ((bytestream_get_be16(&bufp) & 0xFFF0) == 0x07F0) | 
					
						
							|  |  |  |                 return AVPROBE_SCORE_MAX/2+1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-15 16:33:12 +00:00
										 |  |  |         /* 14 bits little-endian bitstream */ | 
					
						
							| 
									
										
										
										
											2008-05-03 00:12:32 +00:00
										 |  |  |         if (state == DCA_MARKER_14B_LE) | 
					
						
							|  |  |  |             if ((bytestream_get_be16(&bufp) & 0xF0FF) == 0xF007) | 
					
						
							|  |  |  |                 return AVPROBE_SCORE_MAX/2+1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-05-03 00:12:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_DIRAC_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-05-02 14:52:39 +00:00
										 |  |  | static int dirac_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (AV_RL32(p->buf) == MKTAG('B', 'B', 'C', 'D')) | 
					
						
							|  |  |  |         return AVPROBE_SCORE_MAX; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-05-02 14:52:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_DNXHD_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-10-24 01:42:57 +00:00
										 |  |  | static int dnxhd_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     static const uint8_t header[] = {0x00,0x00,0x02,0x80,0x01}; | 
					
						
							|  |  |  |     if (!memcmp(p->buf, header, 5)) | 
					
						
							|  |  |  |         return AVPROBE_SCORE_MAX; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_AC3_DEMUXER || CONFIG_EAC3_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-09-01 15:31:14 +00:00
										 |  |  | static int ac3_eac3_probe(AVProbeData *p, enum CodecID expected_codec_id) | 
					
						
							| 
									
										
										
										
											2007-02-08 23:41:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-07 13:46:28 +00:00
										 |  |  |     int max_frames, first_frames = 0, frames; | 
					
						
							| 
									
										
										
										
											2007-03-18 19:32:22 +00:00
										 |  |  |     uint8_t *buf, *buf2, *end; | 
					
						
							|  |  |  |     AC3HeaderInfo hdr; | 
					
						
							| 
									
										
										
										
											2008-04-22 11:14:01 +00:00
										 |  |  |     GetBitContext gbc; | 
					
						
							| 
									
										
										
										
											2008-09-01 15:31:14 +00:00
										 |  |  |     enum CodecID codec_id = CODEC_ID_AC3; | 
					
						
							| 
									
										
										
										
											2007-02-08 23:41:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-18 19:32:22 +00:00
										 |  |  |     max_frames = 0; | 
					
						
							|  |  |  |     buf = p->buf; | 
					
						
							| 
									
										
										
										
											2007-08-05 00:32:19 +00:00
										 |  |  |     end = buf + p->buf_size; | 
					
						
							| 
									
										
										
										
											2007-03-18 19:32:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for(; buf < end; buf++) { | 
					
						
							|  |  |  |         buf2 = buf; | 
					
						
							| 
									
										
										
										
											2007-02-08 23:41:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-18 19:32:22 +00:00
										 |  |  |         for(frames = 0; buf2 < end; frames++) { | 
					
						
							| 
									
										
										
										
											2008-04-22 11:14:01 +00:00
										 |  |  |             init_get_bits(&gbc, buf2, 54); | 
					
						
							|  |  |  |             if(ff_ac3_parse_header(&gbc, &hdr) < 0) | 
					
						
							| 
									
										
										
										
											2007-03-18 19:32:22 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2008-04-21 15:20:53 +00:00
										 |  |  |             if(buf2 + hdr.frame_size > end || | 
					
						
							|  |  |  |                av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, buf2 + 2, hdr.frame_size - 2)) | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2008-09-01 14:33:54 +00:00
										 |  |  |             if (hdr.bitstream_id > 10) | 
					
						
							| 
									
										
										
										
											2008-09-01 15:31:14 +00:00
										 |  |  |                 codec_id = CODEC_ID_EAC3; | 
					
						
							| 
									
										
										
										
											2007-03-18 19:32:22 +00:00
										 |  |  |             buf2 += hdr.frame_size; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         max_frames = FFMAX(max_frames, frames); | 
					
						
							|  |  |  |         if(buf == p->buf) | 
					
						
							|  |  |  |             first_frames = frames; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-09-01 15:31:14 +00:00
										 |  |  |     if(codec_id != expected_codec_id) return 0; | 
					
						
							| 
									
										
										
										
											2007-03-18 19:32:22 +00:00
										 |  |  |     if   (first_frames>=3) return AVPROBE_SCORE_MAX * 3 / 4; | 
					
						
							| 
									
										
										
										
											2007-08-05 03:36:50 +00:00
										 |  |  |     else if(max_frames>=3) return AVPROBE_SCORE_MAX / 2; | 
					
						
							| 
									
										
										
										
											2007-03-18 19:32:22 +00:00
										 |  |  |     else if(max_frames>=1) return 1; | 
					
						
							|  |  |  |     else                   return 0; | 
					
						
							| 
									
										
										
										
											2007-02-08 23:41:08 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-08-15 19:24:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-02-08 23:41:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_AC3_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-09-01 14:33:54 +00:00
										 |  |  | static int ac3_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-01 15:31:14 +00:00
										 |  |  |     return ac3_eac3_probe(p, CODEC_ID_AC3); | 
					
						
							| 
									
										
										
										
											2008-09-01 14:33:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_EAC3_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-09-01 14:33:54 +00:00
										 |  |  | static int eac3_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-09-01 15:31:14 +00:00
										 |  |  |     return ac3_eac3_probe(p, CODEC_ID_EAC3); | 
					
						
							| 
									
										
										
										
											2008-09-01 14:33:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_AAC_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-12-02 15:43:47 +00:00
										 |  |  | static int adts_aac_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int max_frames = 0, first_frames = 0; | 
					
						
							|  |  |  |     int fsize, frames; | 
					
						
							| 
									
										
										
										
											2009-01-19 21:54:06 +00:00
										 |  |  |     uint8_t *buf0 = p->buf; | 
					
						
							| 
									
										
										
										
											2008-12-02 15:43:47 +00:00
										 |  |  |     uint8_t *buf2; | 
					
						
							| 
									
										
										
										
											2009-01-19 21:54:06 +00:00
										 |  |  |     uint8_t *buf; | 
					
						
							|  |  |  |     uint8_t *end = buf0 + p->buf_size - 7; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ff_id3v2_match(buf0)) { | 
					
						
							|  |  |  |         buf0 += ff_id3v2_tag_len(buf0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     buf = buf0; | 
					
						
							| 
									
										
										
										
											2008-12-02 15:43:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for(; buf < end; buf= buf2+1) { | 
					
						
							|  |  |  |         buf2 = buf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for(frames = 0; buf2 < end; frames++) { | 
					
						
							|  |  |  |             uint32_t header = AV_RB16(buf2); | 
					
						
							|  |  |  |             if((header&0xFFF6) != 0xFFF0) | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             fsize = (AV_RB32(buf2+3)>>13) & 0x8FFF; | 
					
						
							|  |  |  |             if(fsize < 7) | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             buf2 += fsize; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         max_frames = FFMAX(max_frames, frames); | 
					
						
							| 
									
										
										
										
											2009-01-19 21:54:06 +00:00
										 |  |  |         if(buf == buf0) | 
					
						
							| 
									
										
										
										
											2008-12-02 15:43:47 +00:00
										 |  |  |             first_frames= frames; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if   (first_frames>=3) return AVPROBE_SCORE_MAX/2+1; | 
					
						
							|  |  |  |     else if(max_frames>500)return AVPROBE_SCORE_MAX/2; | 
					
						
							|  |  |  |     else if(max_frames>=3) return AVPROBE_SCORE_MAX/4; | 
					
						
							|  |  |  |     else if(max_frames>=1) return 1; | 
					
						
							|  |  |  |     else                   return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-07-07 10:45:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Note: Do not forget to add new entries to the Makefile as well. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_AAC_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVInputFormat aac_demuxer = { | 
					
						
							|  |  |  |     "aac", | 
					
						
							| 
									
										
										
										
											2009-02-16 01:55:28 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw ADTS AAC"), | 
					
						
							| 
									
										
										
										
											2008-05-30 16:05:56 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-12-02 15:43:47 +00:00
										 |  |  |     adts_aac_probe, | 
					
						
							| 
									
										
										
										
											2008-05-30 16:05:56 +00:00
										 |  |  |     audio_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2008-05-30 16:05:56 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     .extensions = "aac", | 
					
						
							|  |  |  |     .value = CODEC_ID_AAC, | 
					
						
							| 
									
										
										
										
											2006-05-12 15:13:51 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-05-12 15:13:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_AC3_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat ac3_demuxer = { | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     "ac3", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw AC-3"), | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2007-02-08 23:41:08 +00:00
										 |  |  |     ac3_probe, | 
					
						
							| 
									
										
										
										
											2008-04-28 14:14:44 +00:00
										 |  |  |     audio_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2002-10-06 23:06:06 +00:00
										 |  |  |     .extensions = "ac3", | 
					
						
							| 
									
										
										
										
											2008-04-28 14:14:44 +00:00
										 |  |  |     .value = CODEC_ID_AC3, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2007-04-15 12:35:44 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_AC3_MUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat ac3_muxer = { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     "ac3", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw AC-3"), | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     "audio/x-ac3", | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     "ac3", | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     CODEC_ID_AC3, | 
					
						
							| 
									
										
										
										
											2008-05-12 10:30:40 +00:00
										 |  |  |     CODEC_ID_NONE, | 
					
						
							| 
									
										
										
										
											2007-08-05 00:47:07 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     raw_write_packet, | 
					
						
							| 
									
										
										
										
											2006-08-08 20:31:19 +00:00
										 |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_DIRAC_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-05-02 14:52:39 +00:00
										 |  |  | AVInputFormat dirac_demuxer = { | 
					
						
							|  |  |  |     "dirac", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw Dirac"), | 
					
						
							| 
									
										
										
										
											2008-05-02 14:52:39 +00:00
										 |  |  |     0, | 
					
						
							|  |  |  |     dirac_probe, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2008-05-02 14:52:39 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							|  |  |  |     .value = CODEC_ID_DIRAC, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-05-02 14:52:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_DIRAC_MUXER
 | 
					
						
							| 
									
										
										
										
											2008-05-02 14:52:39 +00:00
										 |  |  | AVOutputFormat dirac_muxer = { | 
					
						
							|  |  |  |     "dirac", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw Dirac"), | 
					
						
							| 
									
										
										
										
											2008-05-02 14:52:39 +00:00
										 |  |  |     NULL, | 
					
						
							|  |  |  |     "drc", | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-05-12 10:30:40 +00:00
										 |  |  |     CODEC_ID_NONE, | 
					
						
							| 
									
										
										
										
											2008-05-02 14:52:39 +00:00
										 |  |  |     CODEC_ID_DIRAC, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     raw_write_packet, | 
					
						
							|  |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_DNXHD_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-10-24 01:42:57 +00:00
										 |  |  | AVInputFormat dnxhd_demuxer = { | 
					
						
							|  |  |  |     "dnxhd", | 
					
						
							|  |  |  |     NULL_IF_CONFIG_SMALL("raw DNxHD (SMPTE VC-3)"), | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     dnxhd_probe, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2008-10-24 01:42:57 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							|  |  |  |     .value = CODEC_ID_DNXHD, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_DNXHD_MUXER
 | 
					
						
							| 
									
										
										
										
											2008-10-24 01:42:57 +00:00
										 |  |  | AVOutputFormat dnxhd_muxer = { | 
					
						
							|  |  |  |     "dnxhd", | 
					
						
							|  |  |  |     NULL_IF_CONFIG_SMALL("raw DNxHD (SMPTE VC-3)"), | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     "dnxhd", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     CODEC_ID_NONE, | 
					
						
							|  |  |  |     CODEC_ID_DNXHD, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     raw_write_packet, | 
					
						
							|  |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_DTS_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat dts_demuxer = { | 
					
						
							| 
									
										
										
										
											2004-07-14 01:32:14 +00:00
										 |  |  |     "dts", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw DTS"), | 
					
						
							| 
									
										
										
										
											2004-07-14 01:32:14 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-05-03 00:12:32 +00:00
										 |  |  |     dts_probe, | 
					
						
							| 
									
										
										
										
											2008-04-28 14:14:44 +00:00
										 |  |  |     audio_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2004-07-14 01:32:14 +00:00
										 |  |  |     .extensions = "dts", | 
					
						
							| 
									
										
										
										
											2008-04-28 14:14:44 +00:00
										 |  |  |     .value = CODEC_ID_DTS, | 
					
						
							| 
									
										
										
										
											2004-07-14 01:32:14 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-07-14 01:32:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_DTS_MUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVOutputFormat dts_muxer = { | 
					
						
							|  |  |  |     "dts", | 
					
						
							|  |  |  |     NULL_IF_CONFIG_SMALL("raw DTS"), | 
					
						
							|  |  |  |     "audio/x-dca", | 
					
						
							|  |  |  |     "dts", | 
					
						
							| 
									
										
										
										
											2006-02-08 00:51:55 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     CODEC_ID_DTS, | 
					
						
							|  |  |  |     CODEC_ID_NONE, | 
					
						
							| 
									
										
										
										
											2006-02-08 00:51:55 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     raw_write_packet, | 
					
						
							|  |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_EAC3_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-09-01 14:33:54 +00:00
										 |  |  | AVInputFormat eac3_demuxer = { | 
					
						
							|  |  |  |     "eac3", | 
					
						
							|  |  |  |     NULL_IF_CONFIG_SMALL("raw E-AC-3"), | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     eac3_probe, | 
					
						
							|  |  |  |     audio_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2008-09-01 14:33:54 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							|  |  |  |     .extensions = "eac3", | 
					
						
							|  |  |  |     .value = CODEC_ID_EAC3, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_EAC3_MUXER
 | 
					
						
							| 
									
										
										
										
											2008-09-01 14:33:54 +00:00
										 |  |  | AVOutputFormat eac3_muxer = { | 
					
						
							|  |  |  |     "eac3", | 
					
						
							|  |  |  |     NULL_IF_CONFIG_SMALL("raw E-AC-3"), | 
					
						
							|  |  |  |     "audio/x-eac3", | 
					
						
							|  |  |  |     "eac3", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     CODEC_ID_EAC3, | 
					
						
							|  |  |  |     CODEC_ID_NONE, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     raw_write_packet, | 
					
						
							|  |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_GSM_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-04-28 18:29:42 +00:00
										 |  |  | AVInputFormat gsm_demuxer = { | 
					
						
							|  |  |  |     "gsm", | 
					
						
							| 
									
										
										
										
											2009-02-16 01:55:28 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw GSM"), | 
					
						
							| 
									
										
										
										
											2008-04-28 18:29:42 +00:00
										 |  |  |     0, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     audio_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2008-04-28 18:29:42 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							|  |  |  |     .extensions = "gsm", | 
					
						
							|  |  |  |     .value = CODEC_ID_GSM, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-04-28 18:29:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_H261_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat h261_demuxer = { | 
					
						
							| 
									
										
										
										
											2004-05-30 20:37:15 +00:00
										 |  |  |     "h261", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw H.261"), | 
					
						
							| 
									
										
										
										
											2004-05-30 20:37:15 +00:00
										 |  |  |     0, | 
					
						
							|  |  |  |     h261_probe, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2004-05-30 20:37:15 +00:00
										 |  |  |     .extensions = "h261", | 
					
						
							|  |  |  |     .value = CODEC_ID_H261, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-05-30 20:37:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_H261_MUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat h261_muxer = { | 
					
						
							| 
									
										
										
										
											2004-10-28 10:12:57 +00:00
										 |  |  |     "h261", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw H.261"), | 
					
						
							| 
									
										
										
										
											2004-10-28 10:12:57 +00:00
										 |  |  |     "video/x-h261", | 
					
						
							|  |  |  |     "h261", | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-05-12 10:30:40 +00:00
										 |  |  |     CODEC_ID_NONE, | 
					
						
							| 
									
										
										
										
											2004-10-28 10:12:57 +00:00
										 |  |  |     CODEC_ID_H261, | 
					
						
							| 
									
										
										
										
											2007-08-05 00:47:07 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2004-10-28 10:12:57 +00:00
										 |  |  |     raw_write_packet, | 
					
						
							| 
									
										
										
										
											2006-08-08 20:31:19 +00:00
										 |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							| 
									
										
										
										
											2004-10-28 10:12:57 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-10-28 10:12:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_H263_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat h263_demuxer = { | 
					
						
							| 
									
										
										
										
											2003-05-22 14:12:22 +00:00
										 |  |  |     "h263", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw H.263"), | 
					
						
							| 
									
										
										
										
											2003-05-22 14:12:22 +00:00
										 |  |  |     0, | 
					
						
							|  |  |  |     h263_probe, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2003-05-22 14:12:22 +00:00
										 |  |  | //    .extensions = "h263", //FIXME remove after writing mpeg4_probe
 | 
					
						
							|  |  |  |     .value = CODEC_ID_H263, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-05-22 14:12:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_H263_MUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat h263_muxer = { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     "h263", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw H.263"), | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     "video/x-h263", | 
					
						
							|  |  |  |     "h263", | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-05-12 10:30:40 +00:00
										 |  |  |     CODEC_ID_NONE, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     CODEC_ID_H263, | 
					
						
							| 
									
										
										
										
											2007-08-05 00:47:07 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     raw_write_packet, | 
					
						
							| 
									
										
										
										
											2006-08-08 20:31:19 +00:00
										 |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_H264_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVInputFormat h264_demuxer = { | 
					
						
							|  |  |  |     "h264", | 
					
						
							|  |  |  |     NULL_IF_CONFIG_SMALL("raw H.264 video format"), | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-07-12 19:50:48 +00:00
										 |  |  |     h264_probe, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							|  |  |  |     .extensions = "h26l,h264,264", //FIXME remove after writing mpeg4_probe
 | 
					
						
							|  |  |  |     .value = CODEC_ID_H264, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_H264_MUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVOutputFormat h264_muxer = { | 
					
						
							|  |  |  |     "h264", | 
					
						
							|  |  |  |     NULL_IF_CONFIG_SMALL("raw H.264 video format"), | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     "h264", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     CODEC_ID_NONE, | 
					
						
							|  |  |  |     CODEC_ID_H264, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     raw_write_packet, | 
					
						
							|  |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_INGENIENT_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVInputFormat ingenient_demuxer = { | 
					
						
							|  |  |  |     "ingenient", | 
					
						
							| 
									
										
										
										
											2009-02-16 01:55:28 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw Ingenient MJPEG"), | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     0, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							|  |  |  |     ingenient_read_packet, | 
					
						
							|  |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							|  |  |  |     .extensions = "cgi", // FIXME
 | 
					
						
							|  |  |  |     .value = CODEC_ID_MJPEG, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_M4V_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat m4v_demuxer = { | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  |     "m4v", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw MPEG-4 video format"), | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-08-15 16:33:12 +00:00
										 |  |  |     mpeg4video_probe, /** probing for MPEG-4 data */ | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2008-12-14 14:01:12 +00:00
										 |  |  |     .extensions = "m4v", | 
					
						
							| 
									
										
										
										
											2002-10-06 23:06:06 +00:00
										 |  |  |     .value = CODEC_ID_MPEG4, | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_M4V_MUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat m4v_muxer = { | 
					
						
							| 
									
										
										
										
											2002-09-11 18:46:47 +00:00
										 |  |  |     "m4v", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw MPEG-4 video format"), | 
					
						
							| 
									
										
										
										
											2002-09-11 18:46:47 +00:00
										 |  |  |     NULL, | 
					
						
							|  |  |  |     "m4v", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     CODEC_ID_NONE, | 
					
						
							|  |  |  |     CODEC_ID_MPEG4, | 
					
						
							| 
									
										
										
										
											2007-08-05 00:47:07 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2002-09-11 18:46:47 +00:00
										 |  |  |     raw_write_packet, | 
					
						
							| 
									
										
										
										
											2006-08-08 20:31:19 +00:00
										 |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							| 
									
										
										
										
											2002-09-11 18:46:47 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-09-11 18:46:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_MJPEG_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVInputFormat mjpeg_demuxer = { | 
					
						
							|  |  |  |     "mjpeg", | 
					
						
							| 
									
										
										
										
											2009-02-16 01:55:28 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw MJPEG video"), | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     .extensions = "mjpg,mjpeg", | 
					
						
							|  |  |  |     .value = CODEC_ID_MJPEG, | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_MJPEG_MUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVOutputFormat mjpeg_muxer = { | 
					
						
							|  |  |  |     "mjpeg", | 
					
						
							| 
									
										
										
										
											2009-02-16 01:55:28 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw MJPEG video"), | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     "video/x-mjpeg", | 
					
						
							|  |  |  |     "mjpg,mjpeg", | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  |     0, | 
					
						
							|  |  |  |     CODEC_ID_NONE, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     CODEC_ID_MJPEG, | 
					
						
							| 
									
										
										
										
											2007-08-05 00:47:07 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  |     raw_write_packet, | 
					
						
							| 
									
										
										
										
											2006-08-08 20:31:19 +00:00
										 |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_MLP_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVInputFormat mlp_demuxer = { | 
					
						
							|  |  |  |     "mlp", | 
					
						
							|  |  |  |     NULL_IF_CONFIG_SMALL("raw MLP"), | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     NULL, | 
					
						
							|  |  |  |     audio_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     .extensions = "mlp", | 
					
						
							|  |  |  |     .value = CODEC_ID_MLP, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_MPEG1VIDEO_MUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat mpeg1video_muxer = { | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     "mpeg1video", | 
					
						
							| 
									
										
										
										
											2009-02-16 01:55:28 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw MPEG-1 video"), | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     "video/x-mpeg", | 
					
						
							| 
									
										
										
										
											2005-07-11 01:16:47 +00:00
										 |  |  |     "mpg,mpeg,m1v", | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-05-12 10:30:40 +00:00
										 |  |  |     CODEC_ID_NONE, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     CODEC_ID_MPEG1VIDEO, | 
					
						
							| 
									
										
										
										
											2007-08-05 00:47:07 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     raw_write_packet, | 
					
						
							| 
									
										
										
										
											2006-08-08 20:31:19 +00:00
										 |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_MPEG2VIDEO_MUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat mpeg2video_muxer = { | 
					
						
							| 
									
										
										
										
											2005-01-04 18:32:38 +00:00
										 |  |  |     "mpeg2video", | 
					
						
							| 
									
										
										
										
											2009-02-16 01:55:28 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw MPEG-2 video"), | 
					
						
							| 
									
										
										
										
											2005-01-04 18:32:38 +00:00
										 |  |  |     NULL, | 
					
						
							|  |  |  |     "m2v", | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-05-12 10:30:40 +00:00
										 |  |  |     CODEC_ID_NONE, | 
					
						
							| 
									
										
										
										
											2005-01-04 18:32:38 +00:00
										 |  |  |     CODEC_ID_MPEG2VIDEO, | 
					
						
							| 
									
										
										
										
											2007-08-05 00:47:07 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2005-01-04 18:32:38 +00:00
										 |  |  |     raw_write_packet, | 
					
						
							| 
									
										
										
										
											2006-08-08 20:31:19 +00:00
										 |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							| 
									
										
										
										
											2005-01-04 18:32:38 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-01-04 18:32:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_MPEGVIDEO_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVInputFormat mpegvideo_demuxer = { | 
					
						
							|  |  |  |     "mpegvideo", | 
					
						
							| 
									
										
										
										
											2009-02-16 01:55:28 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw MPEG video"), | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     mpegvideo_probe, | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     .value = CODEC_ID_MPEG1VIDEO, | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-21 10:34:29 +00:00
										 |  |  | #if CONFIG_CAVSVIDEO_DEMUXER
 | 
					
						
							|  |  |  | AVInputFormat cavsvideo_demuxer = { | 
					
						
							|  |  |  |     "cavsvideo", | 
					
						
							| 
									
										
										
										
											2009-02-22 14:27:50 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw Chinese AVS video"), | 
					
						
							| 
									
										
										
										
											2009-02-21 10:34:29 +00:00
										 |  |  |     0, | 
					
						
							|  |  |  |     cavsvideo_probe, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2009-02-21 10:34:29 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							|  |  |  |     .value = CODEC_ID_CAVS, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_NULL_MUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVOutputFormat null_muxer = { | 
					
						
							|  |  |  |     "null", | 
					
						
							| 
									
										
										
										
											2009-02-16 01:55:28 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw null video format"), | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     NULL, | 
					
						
							|  |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | #ifdef WORDS_BIGENDIAN
 | 
					
						
							|  |  |  |     CODEC_ID_PCM_S16BE, | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     CODEC_ID_PCM_S16LE, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     CODEC_ID_RAWVIDEO, | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     null_write_packet, | 
					
						
							|  |  |  |     .flags = AVFMT_NOFILE | AVFMT_RAWPICTURE | AVFMT_NOTIMESTAMPS, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_RAWVIDEO_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVInputFormat rawvideo_demuxer = { | 
					
						
							|  |  |  |     "rawvideo", | 
					
						
							|  |  |  |     NULL_IF_CONFIG_SMALL("raw video format"), | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     raw_read_header, | 
					
						
							|  |  |  |     rawvideo_read_packet, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     .extensions = "yuv,cif,qcif,rgb", | 
					
						
							|  |  |  |     .value = CODEC_ID_RAWVIDEO, | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_RAWVIDEO_MUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVOutputFormat rawvideo_muxer = { | 
					
						
							|  |  |  |     "rawvideo", | 
					
						
							|  |  |  |     NULL_IF_CONFIG_SMALL("raw video format"), | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     "yuv,rgb", | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2008-05-12 10:30:40 +00:00
										 |  |  |     CODEC_ID_NONE, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     CODEC_ID_RAWVIDEO, | 
					
						
							| 
									
										
										
										
											2007-08-05 00:47:07 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  |     raw_write_packet, | 
					
						
							| 
									
										
										
										
											2006-08-08 20:31:19 +00:00
										 |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_ROQ_MUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVOutputFormat roq_muxer = | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     "RoQ", | 
					
						
							| 
									
										
										
										
											2009-02-16 01:55:28 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw id RoQ format"), | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     NULL, | 
					
						
							|  |  |  |     "roq", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     CODEC_ID_ROQ_DPCM, | 
					
						
							|  |  |  |     CODEC_ID_ROQ, | 
					
						
							|  |  |  |     roq_write_header, | 
					
						
							|  |  |  |     raw_write_packet, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 16:37:59 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_SHORTEN_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | AVInputFormat shorten_demuxer = { | 
					
						
							|  |  |  |     "shn", | 
					
						
							|  |  |  |     NULL_IF_CONFIG_SMALL("raw Shorten"), | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     audio_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							|  |  |  |     .extensions = "shn", | 
					
						
							|  |  |  |     .value = CODEC_ID_SHORTEN, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if CONFIG_VC1_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2007-02-09 12:10:15 +00:00
										 |  |  | AVInputFormat vc1_demuxer = { | 
					
						
							|  |  |  |     "vc1", | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL("raw VC-1"), | 
					
						
							| 
									
										
										
										
											2007-02-09 12:10:15 +00:00
										 |  |  |     0, | 
					
						
							|  |  |  |     NULL /* vc1_probe */, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2009-02-28 17:24:46 +00:00
										 |  |  |     ff_raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2007-02-09 12:10:15 +00:00
										 |  |  |     .extensions = "vc1", | 
					
						
							|  |  |  |     .value = CODEC_ID_VC1, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-08-15 17:28:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-02-09 12:10:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-15 16:33:12 +00:00
										 |  |  | /* PCM formats */ | 
					
						
							| 
									
										
										
										
											2003-10-14 04:15:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-10 18:41:45 +00:00
										 |  |  | #define PCMINPUTDEF(name, long_name, ext, codec) \
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat pcm_ ## name ## _demuxer = {\ | 
					
						
							| 
									
										
										
										
											2003-10-14 04:15:53 +00:00
										 |  |  |     #name,\
 | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL(long_name),\ | 
					
						
							| 
									
										
										
										
											2003-10-14 04:15:53 +00:00
										 |  |  |     0,\ | 
					
						
							|  |  |  |     NULL,\ | 
					
						
							|  |  |  |     raw_read_header,\ | 
					
						
							|  |  |  |     raw_read_packet,\ | 
					
						
							| 
									
										
										
										
											2008-06-19 23:25:04 +00:00
										 |  |  |     NULL,\ | 
					
						
							| 
									
										
										
										
											2003-11-10 18:41:45 +00:00
										 |  |  |     pcm_read_seek,\ | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX,\ | 
					
						
							| 
									
										
										
										
											2003-10-14 04:15:53 +00:00
										 |  |  |     .extensions = ext,\ | 
					
						
							|  |  |  |     .value = codec,\ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-16 10:06:57 +00:00
										 |  |  | #define PCMOUTPUTDEF(name, long_name, ext, codec) \
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat pcm_ ## name ## _muxer = {\ | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     #name,\
 | 
					
						
							| 
									
										
										
										
											2008-06-03 16:20:54 +00:00
										 |  |  |     NULL_IF_CONFIG_SMALL(long_name),\ | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     NULL,\ | 
					
						
							|  |  |  |     ext,\ | 
					
						
							|  |  |  |     0,\ | 
					
						
							|  |  |  |     codec,\ | 
					
						
							| 
									
										
										
										
											2008-05-12 10:30:40 +00:00
										 |  |  |     CODEC_ID_NONE,\ | 
					
						
							| 
									
										
										
										
											2007-08-05 00:47:07 +00:00
										 |  |  |     NULL,\ | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     raw_write_packet,\ | 
					
						
							| 
									
										
										
										
											2006-08-08 20:31:19 +00:00
										 |  |  |     .flags= AVFMT_NOTIMESTAMPS,\ | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2006-06-16 10:06:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #if  !CONFIG_MUXERS && CONFIG_DEMUXERS
 | 
					
						
							| 
									
										
										
										
											2006-06-16 10:06:57 +00:00
										 |  |  | #define PCMDEF(name, long_name, ext, codec) \
 | 
					
						
							|  |  |  |         PCMINPUTDEF(name, long_name, ext, codec) | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #elif CONFIG_MUXERS && !CONFIG_DEMUXERS
 | 
					
						
							| 
									
										
										
										
											2006-06-16 10:06:57 +00:00
										 |  |  | #define PCMDEF(name, long_name, ext, codec) \
 | 
					
						
							|  |  |  |         PCMOUTPUTDEF(name, long_name, ext, codec) | 
					
						
							| 
									
										
										
										
											2009-01-13 23:44:16 +00:00
										 |  |  | #elif CONFIG_MUXERS && CONFIG_DEMUXERS
 | 
					
						
							| 
									
										
										
										
											2006-06-16 10:06:57 +00:00
										 |  |  | #define PCMDEF(name, long_name, ext, codec) \
 | 
					
						
							|  |  |  |         PCMINPUTDEF(name, long_name, ext, codec)\ | 
					
						
							|  |  |  |         PCMOUTPUTDEF(name, long_name, ext, codec) | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define PCMDEF(name, long_name, ext, codec)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef WORDS_BIGENDIAN
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  | #define BE_DEF(s) s
 | 
					
						
							|  |  |  | #define LE_DEF(s) NULL
 | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  | #define BE_DEF(s) NULL
 | 
					
						
							|  |  |  | #define LE_DEF(s) s
 | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-23 22:36:35 +00:00
										 |  |  | PCMDEF(f64be, "PCM 64 bit floating-point big-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_F64BE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PCMDEF(f64le, "PCM 64 bit floating-point little-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_F64LE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PCMDEF(f32be, "PCM 32 bit floating-point big-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_F32BE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PCMDEF(f32le, "PCM 32 bit floating-point little-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_F32LE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PCMDEF(s32be, "PCM signed 32 bit big-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_S32BE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PCMDEF(s32le, "PCM signed 32 bit little-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_S32LE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PCMDEF(s24be, "PCM signed 24 bit big-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_S24BE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PCMDEF(s24le, "PCM signed 24 bit little-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_S24LE) | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 10:37:18 +00:00
										 |  |  | PCMDEF(s16be, "PCM signed 16 bit big-endian format", | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |        BE_DEF("sw"), CODEC_ID_PCM_S16BE) | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | PCMDEF(s16le, "PCM signed 16 bit little-endian format", | 
					
						
							|  |  |  |        LE_DEF("sw"), CODEC_ID_PCM_S16LE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PCMDEF(s8, "PCM signed 8 bit format", | 
					
						
							|  |  |  |        "sb", CODEC_ID_PCM_S8) | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-23 22:36:35 +00:00
										 |  |  | PCMDEF(u32be, "PCM unsigned 32 bit big-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_U32BE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PCMDEF(u32le, "PCM unsigned 32 bit little-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_U32LE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PCMDEF(u24be, "PCM unsigned 24 bit big-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_U24BE) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PCMDEF(u24le, "PCM unsigned 24 bit little-endian format", | 
					
						
							|  |  |  |        NULL, CODEC_ID_PCM_U24LE) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 10:37:18 +00:00
										 |  |  | PCMDEF(u16be, "PCM unsigned 16 bit big-endian format", | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |        BE_DEF("uw"), CODEC_ID_PCM_U16BE) | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | PCMDEF(u16le, "PCM unsigned 16 bit little-endian format", | 
					
						
							|  |  |  |        LE_DEF("uw"), CODEC_ID_PCM_U16LE) | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 10:37:18 +00:00
										 |  |  | PCMDEF(u8, "PCM unsigned 8 bit format", | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |        "ub", CODEC_ID_PCM_U8) | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 10:37:18 +00:00
										 |  |  | PCMDEF(alaw, "PCM A-law format", | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |        "al", CODEC_ID_PCM_ALAW) | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 11:11:08 +00:00
										 |  |  | PCMDEF(mulaw, "PCM mu-law format", | 
					
						
							|  |  |  |        "ul", CODEC_ID_PCM_MULAW) |