| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2006-10-23 08:57:54 +00:00
										 |  |  |  * RAW muxer and demuxer | 
					
						
							| 
									
										
										
										
											2002-05-25 22:34:32 +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
										 |  |  |  */ | 
					
						
							|  |  |  | #include "avformat.h"
 | 
					
						
							| 
									
										
										
										
											2007-05-08 23:25:31 +00:00
										 |  |  | #include "ac3_parser.h"
 | 
					
						
							| 
									
										
										
										
											2007-09-11 09:27:46 +00:00
										 |  |  | #include "raw.h"
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | /* simple formats */ | 
					
						
							| 
									
										
										
										
											2006-05-12 15:13:51 +00:00
										 |  |  | static int flac_write_header(struct AVFormatContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     static const uint8_t header[8] = { | 
					
						
							|  |  |  |         0x66, 0x4C, 0x61, 0x43, 0x80, 0x00, 0x00, 0x22 | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     uint8_t *streaminfo = s->streams[0]->codec->extradata; | 
					
						
							|  |  |  |     int len = s->streams[0]->codec->extradata_size; | 
					
						
							|  |  |  |     if(streaminfo != NULL && len > 0) { | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |         put_buffer(s->pb, header, 8); | 
					
						
							|  |  |  |         put_buffer(s->pb, streaminfo, len); | 
					
						
							| 
									
										
										
										
											2006-05-12 15:13:51 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #endif //CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  |             st->codec->channels = ap->channels; | 
					
						
							|  |  |  |             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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  | static int raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  |     url_fskip(s->pb, 22); // ascii timestamp
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  |     av_log(NULL, 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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-10 09:35:32 +00:00
										 |  |  | static int raw_read_close(AVFormatContext *s) | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  |     int block_align, byte_rate; | 
					
						
							|  |  |  |     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); | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     url_fseek(s->pb, pos + s->data_offset, SEEK_SET); | 
					
						
							| 
									
										
										
										
											2003-11-10 18:41:45 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-09 18:07:16 +00:00
										 |  |  | /* ac3 read */ | 
					
						
							|  |  |  | static int ac3_read_header(AVFormatContext *s, | 
					
						
							|  |  |  |                            AVFormatParameters *ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     st = av_new_stream(s, 0); | 
					
						
							|  |  |  |     if (!st) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:21:30 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2003-02-09 18:07:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     st->codec->codec_type = CODEC_TYPE_AUDIO; | 
					
						
							|  |  |  |     st->codec->codec_id = CODEC_ID_AC3; | 
					
						
							| 
									
										
										
										
											2007-04-15 13:51:57 +00:00
										 |  |  |     st->need_parsing = AVSTREAM_PARSE_FULL; | 
					
						
							| 
									
										
										
										
											2003-02-09 18:07:16 +00:00
										 |  |  |     /* the parameters will be extracted from the compressed bitstream */ | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-02-26 03:36:04 +00:00
										 |  |  | static int shorten_read_header(AVFormatContext *s, | 
					
						
							|  |  |  |                                AVFormatParameters *ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     st = av_new_stream(s, 0); | 
					
						
							|  |  |  |     if (!st) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:21:30 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     st->codec->codec_type = CODEC_TYPE_AUDIO; | 
					
						
							|  |  |  |     st->codec->codec_id = CODEC_ID_SHORTEN; | 
					
						
							| 
									
										
										
										
											2007-04-15 13:51:57 +00:00
										 |  |  |     st->need_parsing = AVSTREAM_PARSE_FULL; | 
					
						
							| 
									
										
										
										
											2005-02-26 03:36:04 +00:00
										 |  |  |     /* the parameters will be extracted from the compressed bitstream */ | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-09 12:34:35 +00:00
										 |  |  | /* flac read */ | 
					
						
							|  |  |  | static int flac_read_header(AVFormatContext *s, | 
					
						
							|  |  |  |                             AVFormatParameters *ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     st = av_new_stream(s, 0); | 
					
						
							|  |  |  |     if (!st) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:21:30 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2006-05-09 12:34:35 +00:00
										 |  |  |     st->codec->codec_type = CODEC_TYPE_AUDIO; | 
					
						
							|  |  |  |     st->codec->codec_id = CODEC_ID_FLAC; | 
					
						
							| 
									
										
										
										
											2007-04-15 13:51:57 +00:00
										 |  |  |     st->need_parsing = AVSTREAM_PARSE_FULL; | 
					
						
							| 
									
										
										
										
											2006-05-09 12:34:35 +00:00
										 |  |  |     /* the parameters will be extracted from the compressed bitstream */ | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-14 01:32:14 +00:00
										 |  |  | /* dts read */ | 
					
						
							|  |  |  | static int dts_read_header(AVFormatContext *s, | 
					
						
							|  |  |  |                            AVFormatParameters *ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     st = av_new_stream(s, 0); | 
					
						
							|  |  |  |     if (!st) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:21:30 +00:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2004-07-14 01:32:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     st->codec->codec_type = CODEC_TYPE_AUDIO; | 
					
						
							|  |  |  |     st->codec->codec_id = CODEC_ID_DTS; | 
					
						
							| 
									
										
										
										
											2007-04-15 13:51:57 +00:00
										 |  |  |     st->need_parsing = AVSTREAM_PARSE_FULL; | 
					
						
							| 
									
										
										
										
											2004-07-14 01:32:14 +00:00
										 |  |  |     /* the parameters will be extracted from the compressed bitstream */ | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-08 00:51:55 +00:00
										 |  |  | /* aac read */ | 
					
						
							|  |  |  | static int aac_read_header(AVFormatContext *s, | 
					
						
							|  |  |  |                            AVFormatParameters *ap) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AVStream *st; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     st = av_new_stream(s, 0); | 
					
						
							|  |  |  |     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; | 
					
						
							|  |  |  |     st->codec->codec_id = CODEC_ID_AAC; | 
					
						
							| 
									
										
										
										
											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 */ | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | /* mpeg1/h263 input */ | 
					
						
							|  |  |  | 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  |     /* for mjpeg, specify frame rate */ | 
					
						
							| 
									
										
										
										
											2007-06-12 09:29:25 +00:00
										 |  |  |     /* for mpeg4 specify it too (most mpeg4 streams do not have the fixed_vop_rate set ...)*/ | 
					
						
							| 
									
										
										
										
											2006-03-11 00:22:21 +00:00
										 |  |  |     if (ap->time_base.num) { | 
					
						
							| 
									
										
										
										
											2005-05-06 14:19:17 +00:00
										 |  |  |         av_set_pts_info(st, 64, ap->time_base.num, ap->time_base.den); | 
					
						
							| 
									
										
										
										
											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 || | 
					
						
							|  |  |  |                 st->codec->codec_id == CODEC_ID_H264) { | 
					
						
							| 
									
										
										
										
											2005-05-06 14:19:17 +00:00
										 |  |  |         av_set_pts_info(st, 64, 1, 25); | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-05-06 14:19:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-08 23:41:08 +00:00
										 |  |  | static int ac3_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											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++) { | 
					
						
							|  |  |  |             if(ff_ac3_parse_header(buf2, &hdr) < 0) | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             buf2 += hdr.frame_size; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         max_frames = FFMAX(max_frames, frames); | 
					
						
							|  |  |  |         if(buf == p->buf) | 
					
						
							|  |  |  |             first_frames = frames; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-10 16:06:18 +00:00
										 |  |  | static int flac_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if(memcmp(p->buf, "fLaC", 4)) return 0; | 
					
						
							| 
									
										
										
										
											2007-08-10 17:05:12 +00:00
										 |  |  |     else                          return AVPROBE_SCORE_MAX / 2; | 
					
						
							| 
									
										
										
										
											2007-08-10 16:06:18 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat shorten_demuxer = { | 
					
						
							| 
									
										
										
										
											2005-02-26 03:36:04 +00:00
										 |  |  |     "shn", | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  |     "raw shorten", | 
					
						
							| 
									
										
										
										
											2005-02-26 03:36:04 +00:00
										 |  |  |     0, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     shorten_read_header, | 
					
						
							|  |  |  |     raw_read_partial_packet, | 
					
						
							|  |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2005-02-26 03:36:04 +00:00
										 |  |  |     .extensions = "shn", | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat flac_demuxer = { | 
					
						
							| 
									
										
										
										
											2006-05-09 12:34:35 +00:00
										 |  |  |     "flac", | 
					
						
							|  |  |  |     "raw flac", | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2007-08-10 16:06:18 +00:00
										 |  |  |     flac_probe, | 
					
						
							| 
									
										
										
										
											2006-05-09 12:34:35 +00:00
										 |  |  |     flac_read_header, | 
					
						
							|  |  |  |     raw_read_partial_packet, | 
					
						
							|  |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2006-05-09 12:34:35 +00:00
										 |  |  |     .extensions = "flac", | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-12 15:13:51 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat flac_muxer = { | 
					
						
							| 
									
										
										
										
											2006-05-12 15:13:51 +00:00
										 |  |  |     "flac", | 
					
						
							|  |  |  |     "raw flac", | 
					
						
							|  |  |  |     "audio/x-flac", | 
					
						
							|  |  |  |     "flac", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     CODEC_ID_FLAC, | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     flac_write_header, | 
					
						
							|  |  |  |     raw_write_packet, | 
					
						
							| 
									
										
										
										
											2006-08-08 20:31:19 +00:00
										 |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							| 
									
										
										
										
											2006-05-12 15:13:51 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | #endif //CONFIG_MUXERS
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-15 12:35:44 +00:00
										 |  |  | #ifdef CONFIG_AC3_DEMUXER
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat ac3_demuxer = { | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     "ac3", | 
					
						
							|  |  |  |     "raw ac3", | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2007-02-08 23:41:08 +00:00
										 |  |  |     ac3_probe, | 
					
						
							| 
									
										
										
										
											2003-02-09 18:07:16 +00:00
										 |  |  |     ac3_read_header, | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  |     raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2002-10-06 23:06:06 +00:00
										 |  |  |     .extensions = "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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat ac3_muxer = { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     "ac3", | 
					
						
							|  |  |  |     "raw ac3", | 
					
						
							| 
									
										
										
										
											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, | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											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-04-20 20:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | AVOutputFormat dts_muxer = { | 
					
						
							|  |  |  |     "dts", | 
					
						
							|  |  |  |     "raw dts", | 
					
						
							|  |  |  |     "audio/x-dca", | 
					
						
							|  |  |  |     "dts", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     CODEC_ID_DTS, | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     raw_write_packet, | 
					
						
							|  |  |  |     .flags= AVFMT_NOTIMESTAMPS, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #endif //CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat dts_demuxer = { | 
					
						
							| 
									
										
										
										
											2004-07-14 01:32:14 +00:00
										 |  |  |     "dts", | 
					
						
							|  |  |  |     "raw dts", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     dts_read_header, | 
					
						
							|  |  |  |     raw_read_partial_packet, | 
					
						
							|  |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2004-07-14 01:32:14 +00:00
										 |  |  |     .extensions = "dts", | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat aac_demuxer = { | 
					
						
							| 
									
										
										
										
											2006-02-08 00:51:55 +00:00
										 |  |  |     "aac", | 
					
						
							|  |  |  |     "ADTS AAC", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     aac_read_header, | 
					
						
							|  |  |  |     raw_read_partial_packet, | 
					
						
							|  |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2006-02-08 00:51:55 +00:00
										 |  |  |     .extensions = "aac", | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-09 23:07:40 +00:00
										 |  |  | #ifdef CONFIG_ROQ_MUXER
 | 
					
						
							|  |  |  | AVOutputFormat roq_muxer = | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     "RoQ", | 
					
						
							|  |  |  |     "Id RoQ format", | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     "roq", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     CODEC_ID_ROQ_DPCM, | 
					
						
							|  |  |  |     CODEC_ID_ROQ, | 
					
						
							|  |  |  |     roq_write_header, | 
					
						
							|  |  |  |     raw_write_packet, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif //CONFIG_ROQ_MUXER
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat h261_demuxer = { | 
					
						
							| 
									
										
										
										
											2004-05-30 20:37:15 +00:00
										 |  |  |     "h261", | 
					
						
							|  |  |  |     "raw h261", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     h261_probe, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							|  |  |  |     raw_read_partial_packet, | 
					
						
							|  |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											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, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat h261_muxer = { | 
					
						
							| 
									
										
										
										
											2004-10-28 10:12:57 +00:00
										 |  |  |     "h261", | 
					
						
							|  |  |  |     "raw h261", | 
					
						
							|  |  |  |     "video/x-h261", | 
					
						
							|  |  |  |     "h261", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     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
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #endif //CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2004-10-28 10:12:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat h263_demuxer = { | 
					
						
							| 
									
										
										
										
											2003-05-22 14:12:22 +00:00
										 |  |  |     "h263", | 
					
						
							|  |  |  |     "raw h263", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     h263_probe, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  |     raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2003-05-22 14:12:22 +00:00
										 |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											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, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat h263_muxer = { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     "h263", | 
					
						
							|  |  |  |     "raw h263", | 
					
						
							|  |  |  |     "video/x-h263", | 
					
						
							|  |  |  |     "h263", | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											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
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #endif //CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat m4v_demuxer = { | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  |     "m4v", | 
					
						
							|  |  |  |     "raw MPEG4 video format", | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2006-11-08 01:21:23 +00:00
										 |  |  |     mpeg4video_probe, /** probing for mpeg4 data */ | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  |     raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2002-10-06 23:06:06 +00:00
										 |  |  |     .extensions = "m4v", //FIXME remove after writing mpeg4_probe
 | 
					
						
							|  |  |  |     .value = CODEC_ID_MPEG4, | 
					
						
							| 
									
										
										
										
											2002-09-12 11:10:33 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat m4v_muxer = { | 
					
						
							| 
									
										
										
										
											2002-09-11 18:46:47 +00:00
										 |  |  |     "m4v", | 
					
						
							|  |  |  |     "raw MPEG4 video format", | 
					
						
							|  |  |  |     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
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #endif //CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2002-09-11 18:46:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat h264_demuxer = { | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  |     "h264", | 
					
						
							|  |  |  |     "raw H264 video format", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     NULL /*mpegvideo_probe*/, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  |     raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2005-07-03 14:57:23 +00:00
										 |  |  |     .extensions = "h26l,h264,264", //FIXME remove after writing mpeg4_probe
 | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  |     .value = CODEC_ID_H264, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat h264_muxer = { | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  |     "h264", | 
					
						
							|  |  |  |     "raw H264 video format", | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     "h264", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     CODEC_ID_NONE, | 
					
						
							|  |  |  |     CODEC_ID_H264, | 
					
						
							| 
									
										
										
										
											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
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #endif //CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2003-04-04 14:42:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat mpegvideo_demuxer = { | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     "mpegvideo", | 
					
						
							|  |  |  |     "MPEG video", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     mpegvideo_probe, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  |     raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2002-10-06 23:06:06 +00:00
										 |  |  |     .value = CODEC_ID_MPEG1VIDEO, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat mpeg1video_muxer = { | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     "mpeg1video", | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     "MPEG video", | 
					
						
							|  |  |  |     "video/x-mpeg", | 
					
						
							| 
									
										
										
										
											2005-07-11 01:16:47 +00:00
										 |  |  |     "mpg,mpeg,m1v", | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											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
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #endif //CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat mpeg2video_muxer = { | 
					
						
							| 
									
										
										
										
											2005-01-04 18:32:38 +00:00
										 |  |  |     "mpeg2video", | 
					
						
							|  |  |  |     "MPEG2 video", | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     "m2v", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     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
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #endif //CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2005-01-04 18:32:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat mjpeg_demuxer = { | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  |     "mjpeg", | 
					
						
							|  |  |  |     "MJPEG video", | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  |     video_read_header, | 
					
						
							| 
									
										
										
										
											2004-03-15 03:29:32 +00:00
										 |  |  |     raw_read_partial_packet, | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2002-10-06 23:06:06 +00:00
										 |  |  |     .extensions = "mjpg,mjpeg", | 
					
						
							|  |  |  |     .value = CODEC_ID_MJPEG, | 
					
						
							| 
									
										
										
										
											2001-08-15 13:06:33 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat ingenient_demuxer = { | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  |     "ingenient", | 
					
						
							|  |  |  |     "Ingenient MJPEG", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							|  |  |  |     ingenient_read_packet, | 
					
						
							|  |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2005-10-29 00:52:02 +00:00
										 |  |  |     .extensions = "cgi", // FIXME
 | 
					
						
							|  |  |  |     .value = CODEC_ID_MJPEG, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat mjpeg_muxer = { | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     "mjpeg", | 
					
						
							|  |  |  |     "MJPEG video", | 
					
						
							|  |  |  |     "video/x-mjpeg", | 
					
						
							|  |  |  |     "mjpg,mjpeg", | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  |     0, | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     CODEC_ID_MJPEG, | 
					
						
							| 
									
										
										
										
											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
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #endif //CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-09 12:10:15 +00:00
										 |  |  | AVInputFormat vc1_demuxer = { | 
					
						
							|  |  |  |     "vc1", | 
					
						
							|  |  |  |     "raw vc1", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     NULL /* vc1_probe */, | 
					
						
							|  |  |  |     video_read_header, | 
					
						
							|  |  |  |     raw_read_partial_packet, | 
					
						
							|  |  |  |     raw_read_close, | 
					
						
							|  |  |  |     .extensions = "vc1", | 
					
						
							|  |  |  |     .value = CODEC_ID_VC1, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +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,\
 | 
					
						
							|  |  |  |     long_name,\ | 
					
						
							|  |  |  |     0,\ | 
					
						
							|  |  |  |     NULL,\ | 
					
						
							|  |  |  |     raw_read_header,\ | 
					
						
							|  |  |  |     raw_read_packet,\ | 
					
						
							|  |  |  |     raw_read_close,\ | 
					
						
							| 
									
										
										
										
											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,\
 | 
					
						
							|  |  |  |     long_name,\ | 
					
						
							|  |  |  |     NULL,\ | 
					
						
							|  |  |  |     ext,\ | 
					
						
							|  |  |  |     0,\ | 
					
						
							|  |  |  |     codec,\ | 
					
						
							|  |  |  |     0,\ | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(CONFIG_MUXERS) && defined(CONFIG_DEMUXERS)
 | 
					
						
							|  |  |  | #define PCMDEF(name, long_name, ext, codec) \
 | 
					
						
							|  |  |  |         PCMINPUTDEF(name, long_name, ext, codec) | 
					
						
							|  |  |  | #elif defined(CONFIG_MUXERS) && !defined(CONFIG_DEMUXERS)
 | 
					
						
							|  |  |  | #define PCMDEF(name, long_name, ext, codec) \
 | 
					
						
							|  |  |  |         PCMOUTPUTDEF(name, long_name, ext, codec) | 
					
						
							|  |  |  | #elif defined(CONFIG_MUXERS) && defined(CONFIG_DEMUXERS)
 | 
					
						
							|  |  |  | #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
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | PCMDEF(s16le, "pcm signed 16 bit little endian format", | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |        LE_DEF("sw"), CODEC_ID_PCM_S16LE) | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | PCMDEF(u16le, "pcm unsigned 16 bit little endian format", | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |        LE_DEF("uw"), CODEC_ID_PCM_U16LE) | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | PCMDEF(s8, "pcm signed 8 bit format", | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |        "sb", CODEC_ID_PCM_S8) | 
					
						
							| 
									
										
										
										
											2001-09-23 17:19:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | PCMDEF(mulaw, "pcm mu law format", | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |        "ul", CODEC_ID_PCM_MULAW) | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-10 09:35:32 +00:00
										 |  |  | static int rawvideo_read_packet(AVFormatContext *s, AVPacket *pkt) | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int packet_size, ret, width, height; | 
					
						
							|  |  |  |     AVStream *st = s->streams[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     width = st->codec->width; | 
					
						
							|  |  |  |     height = st->codec->height; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 22:24:36 +00:00
										 |  |  |     packet_size = avpicture_get_size(st->codec->pix_fmt, width, height); | 
					
						
							| 
									
										
										
										
											2003-05-07 19:01:45 +00:00
										 |  |  |     if (packet_size < 0) | 
					
						
							| 
									
										
										
										
											2004-10-01 13:16:16 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-21 07:41:00 +00:00
										 |  |  |     ret= av_get_packet(s->pb, pkt, packet_size); | 
					
						
							| 
									
										
										
										
											2008-01-12 00:24:10 +00:00
										 |  |  |     pkt->pts= | 
					
						
							|  |  |  |     pkt->dts= pkt->pos / packet_size; | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     pkt->stream_index = 0; | 
					
						
							| 
									
										
										
										
											2005-05-26 20:17:12 +00:00
										 |  |  |     if (ret != packet_size) { | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |         return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVInputFormat rawvideo_demuxer = { | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     "rawvideo", | 
					
						
							|  |  |  |     "raw video format", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     raw_read_header, | 
					
						
							|  |  |  |     rawvideo_read_packet, | 
					
						
							|  |  |  |     raw_read_close, | 
					
						
							| 
									
										
										
										
											2007-02-05 23:04:48 +00:00
										 |  |  |     .flags= AVFMT_GENERIC_INDEX, | 
					
						
							| 
									
										
										
										
											2007-05-23 07:17:17 +00:00
										 |  |  |     .extensions = "yuv,cif,qcif,rgb", | 
					
						
							| 
									
										
										
										
											2002-10-06 23:06:06 +00:00
										 |  |  |     .value = CODEC_ID_RAWVIDEO, | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat rawvideo_muxer = { | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     "rawvideo", | 
					
						
							|  |  |  |     "raw video format", | 
					
						
							|  |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2007-04-25 09:01:54 +00:00
										 |  |  |     "yuv,rgb", | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  |     0, | 
					
						
							| 
									
										
										
										
											2001-07-22 14:18:56 +00:00
										 |  |  |     CODEC_ID_NONE, | 
					
						
							|  |  |  |     CODEC_ID_RAWVIDEO, | 
					
						
							| 
									
										
										
										
											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
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #endif //CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2002-05-20 16:31:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #ifdef CONFIG_MUXERS
 | 
					
						
							| 
									
										
										
										
											2004-05-29 02:06:32 +00:00
										 |  |  | static int null_write_packet(struct AVFormatContext *s, AVPacket *pkt) | 
					
						
							| 
									
										
										
										
											2002-10-14 17:55:34 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 23:40:53 +00:00
										 |  |  | AVOutputFormat null_muxer = { | 
					
						
							| 
									
										
										
										
											2002-10-14 17:55:34 +00:00
										 |  |  |     "null", | 
					
						
							|  |  |  |     "null video format", | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  | #ifdef WORDS_BIGENDIAN
 | 
					
						
							|  |  |  |     CODEC_ID_PCM_S16BE, | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     CODEC_ID_PCM_S16LE, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     CODEC_ID_RAWVIDEO, | 
					
						
							| 
									
										
										
										
											2007-08-05 00:47:07 +00:00
										 |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2002-10-14 17:55:34 +00:00
										 |  |  |     null_write_packet, | 
					
						
							| 
									
										
										
										
											2006-08-08 20:31:19 +00:00
										 |  |  |     .flags = AVFMT_NOFILE | AVFMT_RAWPICTURE | AVFMT_NOTIMESTAMPS, | 
					
						
							| 
									
										
										
										
											2002-10-14 17:55:34 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-09-23 00:25:41 +00:00
										 |  |  | #endif //CONFIG_MUXERS
 |