| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | /* Electronic Arts Multimedia File Demuxer
 | 
					
						
							|  |  |  |  * Copyright (c) 2004  The ffmpeg Project | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +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. | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @file electronicarts.c | 
					
						
							|  |  |  |  * Electronic Arts Multimedia file demuxer (WVE/UV2/etc.) | 
					
						
							|  |  |  |  * by Robin Kay (komadori at gekkou.co.uk) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "avformat.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SCHl_TAG MKTAG('S', 'C', 'H', 'l')
 | 
					
						
							| 
									
										
										
										
											2007-10-25 21:10:18 +00:00
										 |  |  | #define ISNh_TAG MKTAG('1', 'S', 'N', 'h')    /* 1SNx header */
 | 
					
						
							| 
									
										
										
										
											2007-10-25 20:38:49 +00:00
										 |  |  | #define EACS_TAG MKTAG('E', 'A', 'C', 'S')
 | 
					
						
							| 
									
										
										
										
											2007-10-25 21:10:18 +00:00
										 |  |  | #define ISNd_TAG MKTAG('1', 'S', 'N', 'd')    /* 1SNx data */
 | 
					
						
							|  |  |  | #define ISNe_TAG MKTAG('1', 'S', 'N', 'e')    /* 1SNx end */
 | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | #define PT00_TAG MKTAG('P', 'T', 0x0, 0x0)
 | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:52 +00:00
										 |  |  | #define GSTR_TAG MKTAG('G', 'S', 'T', 'R')
 | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | #define SCDl_TAG MKTAG('S', 'C', 'D', 'l')
 | 
					
						
							|  |  |  | #define SCEl_TAG MKTAG('S', 'C', 'E', 'l')
 | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:52 +00:00
										 |  |  | #define MVhd_TAG MKTAG('M', 'V', 'h', 'd')
 | 
					
						
							|  |  |  | #define MV0K_TAG MKTAG('M', 'V', '0', 'K')
 | 
					
						
							|  |  |  | #define MV0F_TAG MKTAG('M', 'V', '0', 'F')
 | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct EaDemuxContext { | 
					
						
							| 
									
										
										
										
											2007-10-18 22:39:27 +00:00
										 |  |  |     int big_endian; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 22:23:30 +00:00
										 |  |  |     int video_codec; | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:52 +00:00
										 |  |  |     AVRational time_base; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |     int video_stream_index; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 22:23:30 +00:00
										 |  |  |     int audio_codec; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |     int audio_stream_index; | 
					
						
							|  |  |  |     int audio_frame_counter; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int64_t audio_pts; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 23:36:12 +00:00
										 |  |  |     int bytes; | 
					
						
							| 
									
										
										
										
											2007-10-18 23:13:46 +00:00
										 |  |  |     int sample_rate; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |     int num_channels; | 
					
						
							|  |  |  |     int num_samples; | 
					
						
							|  |  |  | } EaDemuxContext; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static uint32_t read_arbitary(ByteIOContext *pb) { | 
					
						
							|  |  |  |     uint8_t size, byte; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     uint32_t word; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     size = get_byte(pb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     word = 0; | 
					
						
							|  |  |  |     for (i = 0; i < size; i++) { | 
					
						
							|  |  |  |         byte = get_byte(pb); | 
					
						
							|  |  |  |         word <<= 8; | 
					
						
							|  |  |  |         word |= byte; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return word; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2007-10-18 21:55:51 +00:00
										 |  |  |  * Process PT/GSTR sound header | 
					
						
							|  |  |  |  * return 1 if success, 0 if invalid format, otherwise AVERROR_xxx | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-10-18 21:55:51 +00:00
										 |  |  | static int process_audio_header_elements(AVFormatContext *s) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-10-15 22:50:36 +00:00
										 |  |  |     int inHeader = 1; | 
					
						
							| 
									
										
										
										
											2007-04-08 20:24:16 +00:00
										 |  |  |     EaDemuxContext *ea = s->priv_data; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |     ByteIOContext *pb = &s->pb; | 
					
						
							| 
									
										
										
										
											2007-10-18 23:13:46 +00:00
										 |  |  |     int compression_type = -1, revision = -1; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 23:36:12 +00:00
										 |  |  |     ea->bytes = 2; | 
					
						
							| 
									
										
										
										
											2007-10-18 23:13:46 +00:00
										 |  |  |     ea->sample_rate = -1; | 
					
						
							| 
									
										
										
										
											2007-10-18 21:56:44 +00:00
										 |  |  |     ea->num_channels = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |     while (inHeader) { | 
					
						
							|  |  |  |         int inSubheader; | 
					
						
							|  |  |  |         uint8_t byte; | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:15 +00:00
										 |  |  |         byte = get_byte(pb); | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         switch (byte) { | 
					
						
							|  |  |  |         case 0xFD: | 
					
						
							|  |  |  |             av_log (s, AV_LOG_INFO, "entered audio subheader\n"); | 
					
						
							|  |  |  |             inSubheader = 1; | 
					
						
							|  |  |  |             while (inSubheader) { | 
					
						
							|  |  |  |                 uint8_t subbyte; | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:15 +00:00
										 |  |  |                 subbyte = get_byte(pb); | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 switch (subbyte) { | 
					
						
							| 
									
										
										
										
											2007-10-18 23:13:46 +00:00
										 |  |  |                 case 0x80: | 
					
						
							|  |  |  |                     revision = read_arbitary(pb); | 
					
						
							|  |  |  |                     av_log (s, AV_LOG_INFO, "revision (element 0x80) set to 0x%08x\n", revision); | 
					
						
							|  |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |                 case 0x82: | 
					
						
							|  |  |  |                     ea->num_channels = read_arbitary(pb); | 
					
						
							|  |  |  |                     av_log (s, AV_LOG_INFO, "num_channels (element 0x82) set to 0x%08x\n", ea->num_channels); | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 case 0x83: | 
					
						
							| 
									
										
										
										
											2007-10-18 22:47:56 +00:00
										 |  |  |                     compression_type = read_arbitary(pb); | 
					
						
							|  |  |  |                     av_log (s, AV_LOG_INFO, "compression_type (element 0x83) set to 0x%08x\n", compression_type); | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2007-10-18 23:13:46 +00:00
										 |  |  |                 case 0x84: | 
					
						
							|  |  |  |                     ea->sample_rate = read_arbitary(pb); | 
					
						
							|  |  |  |                     av_log (s, AV_LOG_INFO, "sample_rate (element 0x84) set to %i\n", ea->sample_rate); | 
					
						
							|  |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |                 case 0x85: | 
					
						
							|  |  |  |                     ea->num_samples = read_arbitary(pb); | 
					
						
							|  |  |  |                     av_log (s, AV_LOG_INFO, "num_samples (element 0x85) set to 0x%08x\n", ea->num_samples); | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 case 0x8A: | 
					
						
							|  |  |  |                     av_log (s, AV_LOG_INFO, "element 0x%02x set to 0x%08x\n", subbyte, read_arbitary(pb)); | 
					
						
							|  |  |  |                     av_log (s, AV_LOG_INFO, "exited audio subheader\n"); | 
					
						
							|  |  |  |                     inSubheader = 0; | 
					
						
							|  |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:52 +00:00
										 |  |  |                 case 0xFF: | 
					
						
							| 
									
										
										
										
											2007-10-18 21:45:53 +00:00
										 |  |  |                     av_log (s, AV_LOG_INFO, "end of header block reached (within audio subheader)\n"); | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:52 +00:00
										 |  |  |                     inSubheader = 0; | 
					
						
							|  |  |  |                     inHeader = 0; | 
					
						
							|  |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |                 default: | 
					
						
							|  |  |  |                     av_log (s, AV_LOG_INFO, "element 0x%02x set to 0x%08x\n", subbyte, read_arbitary(pb)); | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 0xFF: | 
					
						
							|  |  |  |             av_log (s, AV_LOG_INFO, "end of header block reached\n"); | 
					
						
							|  |  |  |             inHeader = 0; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             av_log (s, AV_LOG_INFO, "header element 0x%02x set to 0x%08x\n", byte, read_arbitary(pb)); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 22:53:37 +00:00
										 |  |  |     switch (compression_type) { | 
					
						
							| 
									
										
										
										
											2007-10-18 23:05:30 +00:00
										 |  |  |     case  0: ea->audio_codec = CODEC_ID_PCM_S16LE; break; | 
					
						
							| 
									
										
										
										
											2007-10-18 22:53:37 +00:00
										 |  |  |     case  7: ea->audio_codec = CODEC_ID_ADPCM_EA; break; | 
					
						
							| 
									
										
										
										
											2007-10-24 20:49:42 +00:00
										 |  |  |     case -1: | 
					
						
							|  |  |  |         switch (revision) { | 
					
						
							|  |  |  |         case  1: ea->audio_codec = CODEC_ID_ADPCM_EA_R1; break; | 
					
						
							|  |  |  |         case  2: ea->audio_codec = CODEC_ID_ADPCM_EA_R2; break; | 
					
						
							|  |  |  |         case  3: ea->audio_codec = CODEC_ID_ADPCM_EA_R3; break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             av_log(s, AV_LOG_ERROR, "unsupported stream type; revision=%i\n", revision); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-10-18 22:53:37 +00:00
										 |  |  |     default: | 
					
						
							|  |  |  |         av_log(s, AV_LOG_ERROR, "unsupported stream type; compression_type=%i\n", compression_type); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-10-18 22:23:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 23:13:46 +00:00
										 |  |  |     if (ea->sample_rate == -1) | 
					
						
							|  |  |  |         ea->sample_rate = revision==3 ? 48000 : 22050; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 21:55:51 +00:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-25 20:38:49 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Process EACS sound header | 
					
						
							|  |  |  |  * return 1 if success, 0 if invalid format, otherwise AVERROR_xxx | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int process_audio_header_eacs(AVFormatContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     EaDemuxContext *ea = s->priv_data; | 
					
						
							|  |  |  |     ByteIOContext *pb = &s->pb; | 
					
						
							|  |  |  |     int compression_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ea->sample_rate  = ea->big_endian ? get_be32(pb) : get_le32(pb); | 
					
						
							|  |  |  |     ea->bytes        = get_byte(pb);   /* 1=8-bit, 2=16-bit */ | 
					
						
							|  |  |  |     ea->num_channels = get_byte(pb); | 
					
						
							|  |  |  |     compression_type = get_byte(pb); | 
					
						
							|  |  |  |     url_fskip(pb, 13); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (compression_type) { | 
					
						
							|  |  |  |     case 0: | 
					
						
							|  |  |  |         switch (ea->bytes) { | 
					
						
							|  |  |  |         case 1: ea->audio_codec = CODEC_ID_PCM_S8;    break; | 
					
						
							|  |  |  |         case 2: ea->audio_codec = CODEC_ID_PCM_S16LE; break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: ea->audio_codec = CODEC_ID_PCM_MULAW; ea->bytes = 1; break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         av_log (s, AV_LOG_ERROR, "unsupported stream type; audio compression_type=%i\n", compression_type); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 22:01:30 +00:00
										 |  |  | static int process_video_header_vp6(AVFormatContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     EaDemuxContext *ea = s->priv_data; | 
					
						
							|  |  |  |     ByteIOContext *pb = &s->pb; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     url_fskip(pb, 16); | 
					
						
							|  |  |  |     ea->time_base.den = get_le32(pb); | 
					
						
							|  |  |  |     ea->time_base.num = get_le32(pb); | 
					
						
							| 
									
										
										
										
											2007-10-18 22:23:30 +00:00
										 |  |  |     ea->video_codec = CODEC_ID_VP6; | 
					
						
							| 
									
										
										
										
											2007-10-18 22:01:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 21:55:51 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Process EA file header | 
					
						
							|  |  |  |  * Returns 1 if the EA file is valid and successfully opened, 0 otherwise | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int process_ea_header(AVFormatContext *s) { | 
					
						
							|  |  |  |     uint32_t blockid, size = 0; | 
					
						
							|  |  |  |     EaDemuxContext *ea = s->priv_data; | 
					
						
							|  |  |  |     ByteIOContext *pb = &s->pb; | 
					
						
							| 
									
										
										
										
											2007-10-18 22:26:23 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i=0; i<5 && (!ea->audio_codec || !ea->video_codec); i++) { | 
					
						
							|  |  |  |         unsigned int startpos = url_ftell(pb); | 
					
						
							| 
									
										
										
										
											2007-10-18 22:32:26 +00:00
										 |  |  |         int err = 0; | 
					
						
							| 
									
										
										
										
											2007-10-18 21:55:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 22:27:27 +00:00
										 |  |  |         blockid = get_le32(pb); | 
					
						
							| 
									
										
										
										
											2007-10-18 21:55:51 +00:00
										 |  |  |         size = get_le32(pb); | 
					
						
							| 
									
										
										
										
											2007-10-18 22:39:27 +00:00
										 |  |  |         if (i == 0) | 
					
						
							|  |  |  |             ea->big_endian = size > 0x000FFFFF; | 
					
						
							|  |  |  |         if (ea->big_endian) | 
					
						
							|  |  |  |             size = bswap_32(size); | 
					
						
							| 
									
										
										
										
											2007-10-18 22:26:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         switch (blockid) { | 
					
						
							| 
									
										
										
										
											2007-10-25 21:10:18 +00:00
										 |  |  |             case ISNh_TAG: | 
					
						
							| 
									
										
										
										
											2007-10-25 20:38:49 +00:00
										 |  |  |                 if (get_le32(pb) != EACS_TAG) { | 
					
						
							|  |  |  |                     av_log (s, AV_LOG_ERROR, "unknown 1SNh headerid\n"); | 
					
						
							|  |  |  |                     return 0; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 err = process_audio_header_eacs(s); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 22:26:23 +00:00
										 |  |  |             case SCHl_TAG : | 
					
						
							| 
									
										
										
										
											2007-10-18 22:27:27 +00:00
										 |  |  |                 blockid = get_le32(pb); | 
					
						
							|  |  |  |                 if (blockid == GSTR_TAG) { | 
					
						
							|  |  |  |                     url_fskip(pb, 4); | 
					
						
							|  |  |  |                 } else if (blockid != PT00_TAG) { | 
					
						
							|  |  |  |                     av_log (s, AV_LOG_ERROR, "unknown SCHl headerid\n"); | 
					
						
							|  |  |  |                     return 0; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2007-10-18 22:32:26 +00:00
										 |  |  |                 err = process_audio_header_elements(s); | 
					
						
							| 
									
										
										
										
											2007-10-18 22:26:23 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             case MVhd_TAG : | 
					
						
							| 
									
										
										
										
											2007-10-18 22:32:26 +00:00
										 |  |  |                 err = process_video_header_vp6(s); | 
					
						
							| 
									
										
										
										
											2007-10-18 22:26:23 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 22:32:26 +00:00
										 |  |  |         if (err < 0) { | 
					
						
							|  |  |  |             av_log(s, AV_LOG_ERROR, "error parsing header: %i\n", err); | 
					
						
							|  |  |  |             return err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 22:26:23 +00:00
										 |  |  |         url_fseek(pb, startpos + size, SEEK_SET); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-10-18 21:55:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 22:26:23 +00:00
										 |  |  |     url_fseek(pb, 0, SEEK_SET); | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ea_probe(AVProbeData *p) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-10-22 21:06:04 +00:00
										 |  |  |     switch (AV_RL32(&p->buf[0])) { | 
					
						
							|  |  |  |     case SCHl_TAG: | 
					
						
							|  |  |  |     case MVhd_TAG: | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:52 +00:00
										 |  |  |         return AVPROBE_SCORE_MAX; | 
					
						
							| 
									
										
										
										
											2007-10-22 21:06:04 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:52 +00:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ea_read_header(AVFormatContext *s, | 
					
						
							|  |  |  |                           AVFormatParameters *ap) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-08 20:24:16 +00:00
										 |  |  |     EaDemuxContext *ea = s->priv_data; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |     AVStream *st; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!process_ea_header(s)) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |         return AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 23:52:08 +00:00
										 |  |  |     if (ea->video_codec) { | 
					
						
							| 
									
										
										
										
											2007-10-15 22:52:22 +00:00
										 |  |  |         /* initialize the video decoder stream */ | 
					
						
							|  |  |  |         st = av_new_stream(s, 0); | 
					
						
							|  |  |  |         if (!st) | 
					
						
							|  |  |  |             return AVERROR(ENOMEM); | 
					
						
							|  |  |  |         ea->video_stream_index = st->index; | 
					
						
							|  |  |  |         st->codec->codec_type = CODEC_TYPE_VIDEO; | 
					
						
							| 
									
										
										
										
											2007-10-18 22:23:30 +00:00
										 |  |  |         st->codec->codec_id = ea->video_codec; | 
					
						
							| 
									
										
										
										
											2007-10-15 22:52:22 +00:00
										 |  |  |         st->codec->codec_tag = 0;  /* no fourcc */ | 
					
						
							|  |  |  |         st->codec->time_base = ea->time_base; | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:52 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 23:42:54 +00:00
										 |  |  |     if (ea->audio_codec) { | 
					
						
							| 
									
										
										
										
											2007-10-18 23:44:05 +00:00
										 |  |  |         /* initialize the audio decoder stream */ | 
					
						
							|  |  |  |         st = av_new_stream(s, 0); | 
					
						
							|  |  |  |         if (!st) | 
					
						
							|  |  |  |             return AVERROR(ENOMEM); | 
					
						
							|  |  |  |         av_set_pts_info(st, 33, 1, ea->sample_rate); | 
					
						
							|  |  |  |         st->codec->codec_type = CODEC_TYPE_AUDIO; | 
					
						
							|  |  |  |         st->codec->codec_id = ea->audio_codec; | 
					
						
							|  |  |  |         st->codec->codec_tag = 0;  /* no tag */ | 
					
						
							|  |  |  |         st->codec->channels = ea->num_channels; | 
					
						
							|  |  |  |         st->codec->sample_rate = ea->sample_rate; | 
					
						
							|  |  |  |         st->codec->bits_per_sample = ea->bytes * 8; | 
					
						
							|  |  |  |         st->codec->bit_rate = st->codec->channels * st->codec->sample_rate * | 
					
						
							|  |  |  |             st->codec->bits_per_sample / 4; | 
					
						
							|  |  |  |         st->codec->block_align = st->codec->channels*st->codec->bits_per_sample; | 
					
						
							|  |  |  |         ea->audio_stream_index = st->index; | 
					
						
							|  |  |  |         ea->audio_frame_counter = 0; | 
					
						
							| 
									
										
										
										
											2007-10-18 23:42:54 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ea_read_packet(AVFormatContext *s, | 
					
						
							|  |  |  |                           AVPacket *pkt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     EaDemuxContext *ea = s->priv_data; | 
					
						
							|  |  |  |     ByteIOContext *pb = &s->pb; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     int packet_read = 0; | 
					
						
							|  |  |  |     unsigned int chunk_type, chunk_size; | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:52 +00:00
										 |  |  |     int key = 0; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     while (!packet_read) { | 
					
						
							| 
									
										
										
										
											2007-10-18 23:21:31 +00:00
										 |  |  |         chunk_type = get_le32(pb); | 
					
						
							| 
									
										
										
										
											2007-10-18 23:22:50 +00:00
										 |  |  |         chunk_size = (ea->big_endian ? get_be32(pb) : get_le32(pb)) - 8; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         switch (chunk_type) { | 
					
						
							|  |  |  |         /* audio data */ | 
					
						
							| 
									
										
										
										
											2007-10-25 21:10:18 +00:00
										 |  |  |         case ISNh_TAG: | 
					
						
							| 
									
										
										
										
											2007-10-25 20:38:49 +00:00
										 |  |  |             /* header chunk also contains data; skip over the header portion*/ | 
					
						
							|  |  |  |             url_fskip(pb, 32); | 
					
						
							|  |  |  |             chunk_size -= 32; | 
					
						
							| 
									
										
										
										
											2007-10-25 21:10:18 +00:00
										 |  |  |         case ISNd_TAG: | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |         case SCDl_TAG: | 
					
						
							| 
									
										
										
										
											2007-10-18 23:50:52 +00:00
										 |  |  |             if (!ea->audio_codec) { | 
					
						
							|  |  |  |                 url_fskip(pb, chunk_size); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-05-26 20:17:12 +00:00
										 |  |  |             ret = av_get_packet(pb, pkt, chunk_size); | 
					
						
							|  |  |  |             if (ret != chunk_size) | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |                 ret = AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |             else { | 
					
						
							|  |  |  |                     pkt->stream_index = ea->audio_stream_index; | 
					
						
							|  |  |  |                     pkt->pts = 90000; | 
					
						
							|  |  |  |                     pkt->pts *= ea->audio_frame_counter; | 
					
						
							| 
									
										
										
										
											2007-10-18 23:13:46 +00:00
										 |  |  |                     pkt->pts /= ea->sample_rate; | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 23:40:03 +00:00
										 |  |  |                     switch (ea->audio_codec) { | 
					
						
							|  |  |  |                     case CODEC_ID_ADPCM_EA: | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |                     /* 2 samples/byte, 1 or 2 samples per frame depending
 | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |                      * on stereo; chunk also has 12-byte header */ | 
					
						
							|  |  |  |                     ea->audio_frame_counter += ((chunk_size - 12) * 2) / | 
					
						
							|  |  |  |                         ea->num_channels; | 
					
						
							| 
									
										
										
										
											2007-10-18 23:40:03 +00:00
										 |  |  |                         break; | 
					
						
							|  |  |  |                     default: | 
					
						
							|  |  |  |                         ea->audio_frame_counter += chunk_size / | 
					
						
							|  |  |  |                             (ea->bytes * ea->num_channels); | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             packet_read = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* ending tag */ | 
					
						
							| 
									
										
										
										
											2007-10-24 21:44:20 +00:00
										 |  |  |         case 0: | 
					
						
							| 
									
										
										
										
											2007-10-25 21:10:18 +00:00
										 |  |  |         case ISNe_TAG: | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |         case SCEl_TAG: | 
					
						
							| 
									
										
										
										
											2007-07-19 15:23:32 +00:00
										 |  |  |             ret = AVERROR(EIO); | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |             packet_read = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-15 22:51:52 +00:00
										 |  |  |         case MV0K_TAG: | 
					
						
							|  |  |  |             key = PKT_FLAG_KEY; | 
					
						
							|  |  |  |         case MV0F_TAG: | 
					
						
							|  |  |  |             ret = av_get_packet(pb, pkt, chunk_size); | 
					
						
							|  |  |  |             if (ret != chunk_size) | 
					
						
							|  |  |  |                 ret = AVERROR_IO; | 
					
						
							|  |  |  |             else { | 
					
						
							|  |  |  |                 pkt->stream_index = ea->video_stream_index; | 
					
						
							|  |  |  |                 pkt->flags |= key; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             packet_read = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |         default: | 
					
						
							|  |  |  |             url_fseek(pb, chunk_size, SEEK_CUR); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-10 21:14:37 +00:00
										 |  |  | AVInputFormat ea_demuxer = { | 
					
						
							| 
									
										
										
										
											2004-10-16 19:33:57 +00:00
										 |  |  |     "ea", | 
					
						
							|  |  |  |     "Electronic Arts Multimedia Format", | 
					
						
							|  |  |  |     sizeof(EaDemuxContext), | 
					
						
							|  |  |  |     ea_probe, | 
					
						
							|  |  |  |     ea_read_header, | 
					
						
							|  |  |  |     ea_read_packet, | 
					
						
							|  |  |  | }; |