5d6e4c160a 
								
							
								 
							
						 
						
							
							
								
								Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enum  
							
							SampleFormat with AVSampleFormat.
Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						15 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								c7310b7b2b 
								
							
								 
							
						 
						
							
							
								
								Silence warning "new qualifiers in middle of multi-level  
							
							non-const cast are unsafe".
Patch by Eli Friedman, eli d friedman a gmail
Originally committed as revision 24080 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						15 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								ba87f0801d 
								
							
								 
							
						 
						
							
							
								
								Remove explicit filename from Doxygen  @file  commands.  
							
							Passing an explicit filename to this command is only necessary if the
documentation in the @file  block refers to a file different from the
one the block resides in.
Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						15 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								72415b2adb 
								
							
								 
							
						 
						
							
							
								
								Define AVMediaType enum, and use it instead of enum CodecType, which  
							
							is deprecated and will be dropped at the next major bump.
Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						15 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								2cbc1ec676 
								
							
								 
							
						 
						
							
							
								
								Fix indentation after r22414.  
							
							Originally committed as revision 22415 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						15 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								d00261a34b 
								
							
								 
							
						 
						
							
							
								
								SIMD optimization using float_to_int16_interleave.  
							
							Patch by Zhou Zongyi, zhouzy A os D pku D edu D cn
Originally committed as revision 22414 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						15 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								3a201bd04f 
								
							
								 
							
						 
						
							
							
								
								remove a Huffman table from WMA which also exists in AAC  
							
							Originally committed as revision 21902 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						15 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								f28f146473 
								
							
								 
							
						 
						
							
							
								
								Flush the bitreservour.  
							
							Fixes issue1716
Originally committed as revision 21559 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						15 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								445a9deea6 
								
							
								 
							
						 
						
							
							
								
								Print error messages on errors.  
							
							Originally committed as revision 20757 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								f78501b264 
								
							
								 
							
						 
						
							
							
								
								Fix apparent 10l typos introduced in r8627.  
							
							These typos moved the exponent pointer too far ahead.
Fixes issue1055.
Originally committed as revision 20756 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								8b4a6d47b2 
								
							
								 
							
						 
						
							
							
								
								WMA: extend exponent range to 95  
							
							Hopefully this will be enough.  Fixes issue 1565 (again).
Originally committed as revision 20598 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								168f92ffaa 
								
							
								 
							
						 
						
							
							
								
								WMA: extend exponent table up to 75  
							
							Fixes issue 1565.
Originally committed as revision 20593 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								0e71841b05 
								
							
								 
							
						 
						
							
							
								
								WMA: fix loop unrolling in decode_exp_vlc()  
							
							The count can be a non-multiple of 4 after all.
Originally committed as revision 20081 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								ff00b94e9d 
								
							
								 
							
						 
						
							
							
								
								WMA: use type punning and unroll loops in decode_exp_vlc()  
							
							GCC does stupid things if these assignments are done using floats
directly, so fill the runs using integer operations instead.  Also
unroll the loops since the length is always a multiple of 4.
Originally committed as revision 20077 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								c0d1463da7 
								
							
								 
							
						 
						
							
							
								
								WMA: use a table instead of pow() in decode_exp_vlc  
							
							Originally committed as revision 20076 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								952e872198 
								
							
								 
							
						 
						
							
							
								
								Drop unused args from vector_fmul_add_add, simpify code, and rename  
							
							The src3 and step arguments to vector_fmul_add_add() are always zero
and one, respectively.  This removes these arguments from the function,
simplifies the code accordingly, and renames the function to better
match the new operation.
Originally committed as revision 20061 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								0a07e9d012 
								
							
								 
							
						 
						
							
							
								
								WMA: remove some unused variables  
							
							Originally committed as revision 20030 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								75bbed517f 
								
							
								 
							
						 
						
							
							
								
								Remove unused variables, fixes the warnings:  
							
							libavcodec/wmadec.c:629: warning: unused variable `i'
libavcodec/wmadec.c:628: warning: unused variable `b'
libavcodec/wmadec.c:628: warning: unused variable `a'
Originally committed as revision 19994 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								6044538b37 
								
							
								 
							
						 
						
							
							
								
								WMA: use DSPContext.butterflies_float  
							
							Originally committed as revision 19981 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								9970c61b4b 
								
							
								 
							
						 
						
							
							
								
								Introduce WMACoef typedef for decoded coefficients  
							
							and change default type to float so that the run level
decoding functionality can be shared with wmapro
Originally committed as revision 19231 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								c0e9b2e84f 
								
							
								 
							
						 
						
							
							
								
								Move run level decode functionality to ff_wma_run_level_decode  
							
							so that it can be reused for wmapro
Originally committed as revision 19171 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								7d485f165f 
								
							
								 
							
						 
						
							
							
								
								Support for getting (i)MDCT output multiplied by a constant scaling factor.  
							
							Scaling (i)MDCT output has no runtime overhead and can be used to improve
performance of audio codecs. All the changes are only needed in
'ff_mdct_init' function and slow down initialization a bit.
Originally committed as revision 18855 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								110baa2e99 
								
							
								 
							
						 
						
							
							
								
								Remove unused variable from wma_decode_block() found by CSA.  
							
							Originally committed as revision 18568 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								7a00bbad21 
								
							
								 
							
						 
						
							
							
								
								Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an  
							
							AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows
passing of packet-specific flags from demuxer to decoder, such as the keyframe
flag, which appears necessary to playback corePNG P-frames.
Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread
"Google Summer of Code participation" on the mailinglist.
Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								bad5537e2c 
								
							
								 
							
						 
						
							
							
								
								Use full internal pathname in doxygen  @file  directives.  
							
							Otherwise doxygen complains about ambiguous filenames when files exist
under the same name in different subdirectories.
Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						16 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								406792e7b0 
								
							
								 
							
						 
						
							
							
								
								cosmetics: Remove pointless period after copyright statement non-sentences.  
							
							Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								29ca668f0a 
								
							
								 
							
						 
						
							
							
								
								Fix mid/side stereo buggy output zeroing, fixes issue264 part 2.  
							
							Originally committed as revision 15004 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								d46ac5bfde 
								
							
								 
							
						 
						
							
							
								
								mdct wrapper function to match fft  
							
							Originally committed as revision 14703 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								0a570e826d 
								
							
								 
							
						 
						
							
							
								
								remove mdct tmp buffer  
							
							Originally committed as revision 14702 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								fd76c37fd9 
								
							
								 
							
						 
						
							
							
								
								Modify all codecs to report their supported input and output sample format(s).  
							
							Originally committed as revision 14482 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								4972a2464b 
								
							
								 
							
						 
						
							
							
								
								indent  
							
							Originally committed as revision 14172 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								7ee18c1781 
								
							
								 
							
						 
						
							
							
								
								Fix not coded channels / silence decoding.  
							
							Fixes issue264 WMV audio stutter
Originally committed as revision 14171 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								362aba4be7 
								
							
								 
							
						 
						
							
							
								
								Check that we have enough output space available.  
							
							Originally committed as revision 14170 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								fe4bf37455 
								
							
								 
							
						 
						
							
							
								
								Make AVCodec long_names definition conditional depending on CONFIG_SMALL.  
							
							Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								d5202e4fda 
								
							
								 
							
						 
						
							
							
								
								Add long names to many AVCodec declarations.  
							
							patch by Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 13005 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						17 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								74dc744850 
								
							
								 
							
						 
						
							
							
								
								const  
							
							Originally committed as revision 11790 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								4c1e509c11 
								
							
								 
							
						 
						
							
							
								
								wma_decode_superframe always returns s->block_align, so make  
							
							sure we actually consume exactly that amount.
Fixes sound artefacts (mostly blips) that mysteriously disappeared
after e.g. remuxing with mencoder.
Originally committed as revision 11115 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								295f373792 
								
							
								 
							
						 
						
							
							
								
								various simplifications around recent av_clip_int16() usage  
							
							Originally committed as revision 10080 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								aee481cebe 
								
							
								 
							
						 
						
							
							
								
								use av_clip_int16() where it makes sense  
							
							Originally committed as revision 10078 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								7ae7300ee3 
								
							
								 
							
						 
						
							
							
								
								use skip_bits where appropriate  
							
							Originally committed as revision 10004 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								7f95d9f620 
								
							
								 
							
						 
						
							
							
								
								fix compilation with TRACE enabled  
							
							Originally committed as revision 10003 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								5fc32c275e 
								
							
								 
							
						 
						
							
							
								
								use get_bits1(..) instead get_bits(.., 1)  
							
							Originally committed as revision 9999 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								2c124cb65c 
								
							
								 
							
						 
						
							
							
								
								Use AV_xx throughout libavcodec  
							
							Originally committed as revision 9169 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								47b777ceed 
								
							
								 
							
						 
						
							
							
								
								sanity checks (should prevent hypothetical div by zero issue)  
							
							should fix sf bug #1547313 
Originally committed as revision 9164 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								5bd526d9ad 
								
							
								 
							
						 
						
							
							
								
								WMA decoder improvement, output closer to the dmo binary.  
							
							Patch by Ian Braithwaite ian braithwaite dot dk
[Ffmpeg-devel] WMA decoder improvement, 2007-03-28 15:50
Originally committed as revision 8627 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								1890c2acf4 
								
							
								 
							
						 
						
							
							
								
								Optimize by building the mdct window and multipying/adding at the same time.  
							
							Patch by Ian Braithwaite ian .. braithwaite . dk
[Ffmpeg-devel] WMA decoder speedup 2007-03-22 22:56
Originally committed as revision 8526 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								911b9faf31 
								
							
								 
							
						 
						
							
							
								
								Rename WMADecodeContext to WMACodecContext  
							
							Originally committed as revision 8143 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								a9c9a2400b 
								
							
								 
							
						 
						
							
							
								
								Supply context to tprintf  
							
							Originally committed as revision 8142 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						18 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								6836af5250 
								
							
								 
							
						 
						
							
							
								
								doxygenize  
							
							Originally committed as revision 7872 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago  
				
					
						
							
							
								 
						
							
							
							
								
							
								e8ebd57360 
								
							
								 
							
						 
						
							
							
								
								kill debuging code  
							
							Originally committed as revision 7856 to svn://svn.ffmpeg.org/ffmpeg/trunk 
							
						 
						19 years ago