Michael Niedermayer [Sat, 12 Jul 2008 20:01:23 +0000 (20:01 +0000)]
Use strcmp() instead of strncmp() in set_codec_from_probe_data().
Originally committed as revision 14190 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 12 Jul 2008 19:57:57 +0000 (19:57 +0000)]
indent
Originally committed as revision 14189 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 12 Jul 2008 19:57:30 +0000 (19:57 +0000)]
Only try to probe the codec when the available data has roughly doubled
relative to the last attempt.
Originally committed as revision 14188 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 12 Jul 2008 19:56:25 +0000 (19:56 +0000)]
Add mpegvideo and H.264 to the codec probe.
Originally committed as revision 14187 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 12 Jul 2008 19:50:48 +0000 (19:50 +0000)]
h264_probe()
Originally committed as revision 14186 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 12 Jul 2008 18:43:02 +0000 (18:43 +0000)]
indent
Originally committed as revision 14185 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 12 Jul 2008 18:42:00 +0000 (18:42 +0000)]
New codec probing system try #1.
Originally committed as revision 14184 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 12 Jul 2008 16:43:46 +0000 (16:43 +0000)]
command_streams are type data not unknown.
Originally committed as revision 14183 to svn://svn.ffmpeg.org/ffmpeg/trunk
Reimar Döffinger [Sat, 12 Jul 2008 15:02:40 +0000 (15:02 +0000)]
Use new style static VLC tables for IMC decoder.
Also fixes a memleak due to the previous in-context tables not being freed.
Originally committed as revision 14182 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 12 Jul 2008 14:28:27 +0000 (14:28 +0000)]
Move add_to_pktbuf() before av_read_packet(). My future work on codec identification
cleanup will need this.
Originally committed as revision 14181 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 12 Jul 2008 13:25:26 +0000 (13:25 +0000)]
Move set_codec_from_probe_data() up to where the other probe functions are.
Originally committed as revision 14180 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Sat, 12 Jul 2008 13:15:00 +0000 (13:15 +0000)]
Pass AVPacketList instead of the whole context to add_to_pktbuf as that is
all that is needed.
Originally committed as revision 14179 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ramiro Polla [Sat, 12 Jul 2008 11:43:21 +0000 (11:43 +0000)]
Prevent users from setting -vol and -acodec copy together.
They are incompatible since the frames are not decoded, so they can't be preprocessed.
Originally committed as revision 14178 to svn://svn.ffmpeg.org/ffmpeg/trunk
Robert Swain [Sat, 12 Jul 2008 10:56:12 +0000 (10:56 +0000)]
Typo and grammar fix
Originally committed as revision 14177 to svn://svn.ffmpeg.org/ffmpeg/trunk
Robert Swain [Sat, 12 Jul 2008 09:48:19 +0000 (09:48 +0000)]
Correct a couple of typos
Originally committed as revision 14176 to svn://svn.ffmpeg.org/ffmpeg/trunk
Reimar Döffinger [Sat, 12 Jul 2008 09:23:37 +0000 (09:23 +0000)]
100l, fix MS ADPCM decoding for e.g. samples.mplayerhq.hu/mov/qtaudio/surge-2-16-L-ms02.mov
First coefficient array must be unsigned to fit in 8 bits
Originally committed as revision 14175 to svn://svn.ffmpeg.org/ffmpeg/trunk
Reimar Döffinger [Sat, 12 Jul 2008 07:28:45 +0000 (07:28 +0000)]
10l, forgot to replace a / 256 for r14173.
Fixes MS ADPCM regression test.
Originally committed as revision 14174 to svn://svn.ffmpeg.org/ffmpeg/trunk
Reimar Döffinger [Fri, 11 Jul 2008 21:38:42 +0000 (21:38 +0000)]
Change MS ADPCM table so they fit into int8_t and change array type.
Originally committed as revision 14173 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Fri, 11 Jul 2008 19:54:02 +0000 (19:54 +0000)]
indent
Originally committed as revision 14172 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Fri, 11 Jul 2008 19:51:36 +0000 (19:51 +0000)]
Fix not coded channels / silence decoding.
Fixes issue264 WMV audio stutter
Originally committed as revision 14171 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Fri, 11 Jul 2008 19:45:52 +0000 (19:45 +0000)]
Check that we have enough output space available.
Originally committed as revision 14170 to svn://svn.ffmpeg.org/ffmpeg/trunk
Andreas Öman [Fri, 11 Jul 2008 15:25:12 +0000 (15:25 +0000)]
Deprecate avcodec_build(), it returns the same value as
avcodec_version().
Originally committed as revision 14169 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Fri, 11 Jul 2008 15:12:44 +0000 (15:12 +0000)]
simplify
Originally committed as revision 14168 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Fri, 11 Jul 2008 15:10:58 +0000 (15:10 +0000)]
Fix misdetection of MPEG-PS (AVSEQ03.DAT and AVSEQ06.DAT) as psxstr.
Originally committed as revision 14167 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Fri, 11 Jul 2008 07:48:37 +0000 (07:48 +0000)]
Move #ifdef CONFIG_DVVIDEO_ENCODER up to cover all functions used for encoding.
Originally committed as revision 14166 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Fri, 11 Jul 2008 07:45:49 +0000 (07:45 +0000)]
Make preprocessor condition more specific and useful by changing
#ifdef CONFIG_ENCODERS --> #ifdef CONFIG_DVVIDEO_ENCODER.
Originally committed as revision 14165 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Fri, 11 Jul 2008 07:41:11 +0000 (07:41 +0000)]
Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.
Originally committed as revision 14164 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Fri, 11 Jul 2008 07:39:33 +0000 (07:39 +0000)]
Move a function and an #ifdef CONFIG_MUXERS so that functions used only for
muxing get disabled when compiling with --disable-muxers.
Originally committed as revision 14163 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Fri, 11 Jul 2008 07:37:22 +0000 (07:37 +0000)]
Move functions only used for muxing below #ifdef CONFIG_YUV4MPEGPIPE_MUXER,
fixes some warnings when compiling with muxers disabled.
Originally committed as revision 14162 to svn://svn.ffmpeg.org/ffmpeg/trunk
Kostya Shishkov [Fri, 11 Jul 2008 04:48:38 +0000 (04:48 +0000)]
SSE2 optimizations for Monkey's Audio decoder vector functions
Originally committed as revision 14161 to svn://svn.ffmpeg.org/ffmpeg/trunk
Jason Garrett-Glaser [Fri, 11 Jul 2008 02:07:57 +0000 (02:07 +0000)]
H264: Fix decoding with CABAC/delta_qp/PCM macroblocks.
Patch by Jason Garrett-Glaser (darkshikari gmail com)
Originally committed as revision 14160 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ramiro Polla [Fri, 11 Jul 2008 00:59:27 +0000 (00:59 +0000)]
Add a checklist about new codecs or formats to the documentation.
Originally committed as revision 14159 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ramiro Polla [Thu, 10 Jul 2008 18:01:21 +0000 (18:01 +0000)]
Update Changelog and documentation for MVI demuxer and decoder.
Originally committed as revision 14158 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Thu, 10 Jul 2008 16:37:46 +0000 (16:37 +0000)]
Update info for Sonic, add Dirac to supported formats list.
Originally committed as revision 14157 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Thu, 10 Jul 2008 16:33:10 +0000 (16:33 +0000)]
Sort lists ignoring case.
Originally committed as revision 14156 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Thu, 10 Jul 2008 16:31:11 +0000 (16:31 +0000)]
cosmetics: Fix inconsistent indentation.
Originally committed as revision 14155 to svn://svn.ffmpeg.org/ffmpeg/trunk
Luca Barbato [Thu, 10 Jul 2008 15:37:06 +0000 (15:37 +0000)]
100L, avoption splited code added, I should double check with svn status...
Originally committed as revision 27245 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
avcoder [Thu, 10 Jul 2008 11:52:51 +0000 (11:52 +0000)]
Remove useless casts.
Patch by avcoder ffmpeg at gmail d0t com
Originally committed as revision 14154 to svn://svn.ffmpeg.org/ffmpeg/trunk
avcoder [Thu, 10 Jul 2008 11:49:53 +0000 (11:49 +0000)]
Remove useless casts.
Patch by avcoder ffmpeg at gmail d0t com
Originally committed as revision 14153 to svn://svn.ffmpeg.org/ffmpeg/trunk
Anuradha Suraparaju [Thu, 10 Jul 2008 11:44:01 +0000 (11:44 +0000)]
Parse frames to feed the decoder with individual parse units.
Patch by Anuradha Suraparaju anuradha rd bbc co uk
Original thread: [PATCH] Patches to fix issue453 individuallibdiracschroedinger
Date: 05/22/2008 04:26 AM
Originally committed as revision 14152 to svn://svn.ffmpeg.org/ffmpeg/trunk
Anuradha Suraparaju [Thu, 10 Jul 2008 11:41:06 +0000 (11:41 +0000)]
Add entry for Dirac codec.
Patch by Anuradha Suraparaju anuradha rd bbc co uk
Originally committed as revision 14151 to svn://svn.ffmpeg.org/ffmpeg/trunk
Anuradha Suraparaju [Thu, 10 Jul 2008 11:40:19 +0000 (11:40 +0000)]
Add a parameter for queue size.
Patch by Anuradha Suraparaju anuradha rd bbc co uk
Originally committed as revision 14150 to svn://svn.ffmpeg.org/ffmpeg/trunk
Luca Abeni [Thu, 10 Jul 2008 07:40:54 +0000 (07:40 +0000)]
Fix MPEG video packetization for RTP
Originally committed as revision 14149 to svn://svn.ffmpeg.org/ffmpeg/trunk
Kostya Shishkov [Thu, 10 Jul 2008 06:15:13 +0000 (06:15 +0000)]
Monkey's Audio decoder vector functions work on input with length
a multiple of 16. Reflect that fact in the documentation for them.
Originally committed as revision 14148 to svn://svn.ffmpeg.org/ffmpeg/trunk
Gregory Montoir [Thu, 10 Jul 2008 03:02:19 +0000 (03:02 +0000)]
Motion Pixels MVI Demuxer.
Patch by Gregory Montoir <cyx <at> users <dot> sourceforge <dot> net>
Originally committed as revision 14147 to svn://svn.ffmpeg.org/ffmpeg/trunk
Gregory Montoir [Thu, 10 Jul 2008 03:01:39 +0000 (03:01 +0000)]
Motion Pixels Video Decoder.
Patch by Gregory Montoir <cyx <at> users <dot> sourceforge <dot> net>
Originally committed as revision 14146 to svn://svn.ffmpeg.org/ffmpeg/trunk
Luca Barbato [Wed, 9 Jul 2008 22:43:08 +0000 (22:43 +0000)]
Split AVOption/AVClass in a separate file. SoC Patch from Keiji Costantini
Originally committed as revision 27244 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Stefano Sabatini [Wed, 9 Jul 2008 21:51:40 +0000 (21:51 +0000)]
Fix a warning in ffserver.c caused by the use of the function
av_set_string() deprecated since r14134.
Originally committed as revision 14145 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Wed, 9 Jul 2008 19:21:08 +0000 (19:21 +0000)]
Remove ancient code that hasnt worked in many years.
Originally committed as revision 14144 to svn://svn.ffmpeg.org/ffmpeg/trunk
Måns Rullgård [Wed, 9 Jul 2008 19:09:50 +0000 (19:09 +0000)]
regenerate dependencies when building object files
Originally committed as revision 14143 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Wed, 9 Jul 2008 18:59:52 +0000 (18:59 +0000)]
New full search ME
Originally committed as revision 14142 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Wed, 9 Jul 2008 18:45:33 +0000 (18:45 +0000)]
Print the program_name rather than always "FFmpeg" when showing the
commandline tools license.
Originally committed as revision 14141 to svn://svn.ffmpeg.org/ffmpeg/trunk
Alexander Strange [Wed, 9 Jul 2008 17:51:57 +0000 (17:51 +0000)]
Make the function prototype visible to comply with C99 inline.
Fixes building with gcc -std=gnu99.
Originally committed as revision 14140 to svn://svn.ffmpeg.org/ffmpeg/trunk
Peter Ross [Wed, 9 Jul 2008 08:34:43 +0000 (08:34 +0000)]
increment minor version for commit r14110 (Electronic Arts CMV decoder)
Originally committed as revision 14139 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Wed, 9 Jul 2008 07:21:12 +0000 (07:21 +0000)]
float_to_int16_sse2()
20% faster than sse
Originally committed as revision 14138 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Wed, 9 Jul 2008 06:57:19 +0000 (06:57 +0000)]
indent
Originally committed as revision 14137 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Wed, 9 Jul 2008 06:56:26 +0000 (06:56 +0000)]
Allow setting codecs through preset files
Originally committed as revision 14136 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Wed, 9 Jul 2008 06:03:59 +0000 (06:03 +0000)]
fix IPCM_decode_error.h264
Originally committed as revision 14135 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Tue, 8 Jul 2008 23:50:03 +0000 (23:50 +0000)]
Fix the av_set_string() free / alloc issue.
Originally committed as revision 14134 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Tue, 8 Jul 2008 23:26:26 +0000 (23:26 +0000)]
indent
Originally committed as revision 14133 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Tue, 8 Jul 2008 23:25:01 +0000 (23:25 +0000)]
10000l for myself, my last change was incomplete.
This one also reverts the libav mpeg ts regression test score change.
Originally committed as revision 14132 to svn://svn.ffmpeg.org/ffmpeg/trunk
Erik Hovland [Tue, 8 Jul 2008 23:20:22 +0000 (23:20 +0000)]
One-bit bitfields should probably be unsigned. Unfortunately, it is left
up to the compiler on how one bit fields are treated. gcc treats one-bit
bitfields as signed and allows for the -funsigned-field parameter. Other
compilers (like Sun C) treat one-bit bitfields as unsigned no matter what.
Patch by Erik Hovland erik hovland org
Originally committed as revision 14131 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 17:33:16 +0000 (17:33 +0000)]
Add FFMPEG_CONFIGURATION to config.mak as well, it sometimes helps debugging.
Originally committed as revision 14130 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 16:02:20 +0000 (16:02 +0000)]
Remove wrong casts from vector declarations, this would cause errors when
compiling with -std=gnu99. Blessed by Luca Barbato.
Originally committed as revision 14129 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 15:05:59 +0000 (15:05 +0000)]
Ignore case when sorting.
Originally committed as revision 14128 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 15:04:41 +0000 (15:04 +0000)]
List QuickTime container as MOV/QuickTime.
Originally committed as revision 14127 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 15:04:00 +0000 (15:04 +0000)]
Remove redundant Macromedia Flash entry in supported formats list.
Originally committed as revision 14126 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 15:01:44 +0000 (15:01 +0000)]
format name cosmetics, spelling cosmetics
Originally committed as revision 14125 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 14:47:22 +0000 (14:47 +0000)]
Sort and prettyprint audio codecs table.
Originally committed as revision 14124 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 14:41:12 +0000 (14:41 +0000)]
Sort and prettyprint video codecs table.
Originally committed as revision 14123 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 14:34:15 +0000 (14:34 +0000)]
Sort and prettyprint the file formats table.
Originally committed as revision 14122 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 14:24:08 +0000 (14:24 +0000)]
Remove file extension from some formats, it's never mentioned consistently.
Originally committed as revision 14121 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 14:09:14 +0000 (14:09 +0000)]
liba52 is not always used for AC-3 decoding.
Originally committed as revision 14120 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 14:08:45 +0000 (14:08 +0000)]
Sort image formats table.
Originally committed as revision 14119 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Tue, 8 Jul 2008 14:07:37 +0000 (14:07 +0000)]
Set cur_dts to 0 only during creating new streams and not every time cur_dts happens
to be AV_NOPTS_VALUE.
Originally committed as revision 14118 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 14:03:28 +0000 (14:03 +0000)]
WMV8 is fully supported now.
Originally committed as revision 14117 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 14:03:05 +0000 (14:03 +0000)]
spelling cosmetics and format name fixes
Originally committed as revision 14116 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 13:53:28 +0000 (13:53 +0000)]
liba52 is no longer necessary for AC-3 decoding.
Originally committed as revision 14115 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Tue, 8 Jul 2008 13:52:48 +0000 (13:52 +0000)]
spelling cosmetics
Originally committed as revision 14114 to svn://svn.ffmpeg.org/ffmpeg/trunk
Peter Ross [Tue, 8 Jul 2008 13:40:29 +0000 (13:40 +0000)]
Electronic Arts CMV latent dox entry
Originally committed as revision 14113 to svn://svn.ffmpeg.org/ffmpeg/trunk
Peter Ross [Tue, 8 Jul 2008 13:29:11 +0000 (13:29 +0000)]
Electronic Arts CMV latent changelog entry
Originally committed as revision 14112 to svn://svn.ffmpeg.org/ffmpeg/trunk
Peter Ross [Tue, 8 Jul 2008 13:24:13 +0000 (13:24 +0000)]
Electronic Arts CMV demuxer
Originally committed as revision 14111 to svn://svn.ffmpeg.org/ffmpeg/trunk
Peter Ross [Tue, 8 Jul 2008 13:22:23 +0000 (13:22 +0000)]
Electronic Arts CMV decoder
Originally committed as revision 14110 to svn://svn.ffmpeg.org/ffmpeg/trunk
Peter Ross [Tue, 8 Jul 2008 12:44:08 +0000 (12:44 +0000)]
Remove AVPaletteControl from ALG MM demuxer/decoder
Originally committed as revision 14109 to svn://svn.ffmpeg.org/ffmpeg/trunk
Victor Pollex [Tue, 8 Jul 2008 09:24:11 +0000 (09:24 +0000)]
Make LOAD4/STORE4 macros more generic.
Patch by Victor Pollex victor pollex web de
Original thread: [PATCH] mmx implementation of vc-1 inverse transformations
Date: 06/21/2008 03:37 PM
Originally committed as revision 14108 to svn://svn.ffmpeg.org/ffmpeg/trunk
Luca Abeni [Tue, 8 Jul 2008 08:22:16 +0000 (08:22 +0000)]
Remove outdated comment
Originally committed as revision 14107 to svn://svn.ffmpeg.org/ffmpeg/trunk
Stefano Sabatini [Tue, 8 Jul 2008 07:05:57 +0000 (07:05 +0000)]
Print libavformat version in outgoing SDPs.
Originally committed as revision 14106 to svn://svn.ffmpeg.org/ffmpeg/trunk
Aurelien Jacobs [Mon, 7 Jul 2008 23:28:32 +0000 (23:28 +0000)]
correct path in *-uninstalled.pc
Originally committed as revision 14105 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Mon, 7 Jul 2008 21:25:18 +0000 (21:25 +0000)]
1 c-asm loop less and 1x unroll of float_to_int16_sse()
25% faster
Originally committed as revision 14104 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Mon, 7 Jul 2008 21:04:29 +0000 (21:04 +0000)]
Fix x86-64
Originally committed as revision 14103 to svn://svn.ffmpeg.org/ffmpeg/trunk
Michael Niedermayer [Mon, 7 Jul 2008 20:46:03 +0000 (20:46 +0000)]
dont use C-asm loops and unroll once float_to_int16_3dnow()
30% faster
Originally committed as revision 14102 to svn://svn.ffmpeg.org/ffmpeg/trunk
Reimar Döffinger [Mon, 7 Jul 2008 16:30:39 +0000 (16:30 +0000)]
10l, fix nuv_header for the case when there is no video stream.
Originally committed as revision 14101 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Mon, 7 Jul 2008 11:11:08 +0000 (11:11 +0000)]
Alphabetically order AVInputFormat/AVOutputFormat declarations.
Originally committed as revision 14100 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Mon, 7 Jul 2008 10:45:36 +0000 (10:45 +0000)]
Add a note to remind people to add new raw formats to the Makefile.
Originally committed as revision 14099 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Mon, 7 Jul 2008 10:44:34 +0000 (10:44 +0000)]
Add missing dependency declaration for raw Dirac demuxer.
Originally committed as revision 14098 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diego Biurrun [Mon, 7 Jul 2008 10:37:18 +0000 (10:37 +0000)]
spelling cosmetics in PCM codec long names
Originally committed as revision 14097 to svn://svn.ffmpeg.org/ffmpeg/trunk
Benjamin Larsson [Mon, 7 Jul 2008 08:29:08 +0000 (08:29 +0000)]
redundant assignment found by Clang
Originally committed as revision 14096 to svn://svn.ffmpeg.org/ffmpeg/trunk
Aurelien Jacobs [Sun, 6 Jul 2008 20:48:47 +0000 (20:48 +0000)]
add some missing dependencies
Originally committed as revision 14095 to svn://svn.ffmpeg.org/ffmpeg/trunk
Vitor Sessak [Sun, 6 Jul 2008 14:23:30 +0000 (14:23 +0000)]
Simplify: glob->phase is always == 3
Originally committed as revision 14094 to svn://svn.ffmpeg.org/ffmpeg/trunk
Vitor Sessak [Sun, 6 Jul 2008 14:16:21 +0000 (14:16 +0000)]
Cosmetics: reindent tables
Originally committed as revision 14093 to svn://svn.ffmpeg.org/ffmpeg/trunk