summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Cosmetics: remove empty comments.Stefano Sabatini2008-12-14
| | | | Originally committed as revision 16124 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix files with fps between 0.5 and 0.1.Michael Niedermayer2008-12-14
| | | | | | Fixes issue749 Originally committed as revision 16123 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove silly FIXME comment.Michael Niedermayer2008-12-14
| | | | Originally committed as revision 16122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent shift overflow, patch by Anders Grönberg, galileo.m2 gmail com.Anders Grönberg2008-12-14
| | | | Originally committed as revision 16121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a few const qualifiers in appropriate places.Anders Grönberg2008-12-14
| | | | | | patch by Anders Grönberg, galileo.m2 gmail com Originally committed as revision 16120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* undoing revision 16118 for truemotion1.c; commit was prematureMike Melanson2008-12-14
| | | | Originally committed as revision 16119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The POSIX namespace shall be held sacrosanct. To that end,Mike Melanson2008-12-14
| | | | | | continue eliminating _t from structure names in FFmpeg. Originally committed as revision 16118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid POSIX reserved _t suffixAurelien Jacobs2008-12-14
| | | | Originally committed as revision 16117 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of mmx_t.Aurelien Jacobs2008-12-14
| | | | Originally committed as revision 16116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename rtp_payload_data_t to avoid clashes with the POSIX namespaceLuca Abeni2008-12-13
| | | | Originally committed as revision 16115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless typedefLuca Abeni2008-12-13
| | | | Originally committed as revision 16114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused typesLuca Abeni2008-12-13
| | | | Originally committed as revision 16113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid _t in gxf enum type namesReimar Döffinger2008-12-13
| | | | Originally committed as revision 16112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split RMContext into RMDemux/MuxContext and make them private in rmdec/enc.c.Ronald S. Bultje2008-12-13
| | | | | | | | Reason for this is that there are no shared entries in the demuxer/muxer context, making it a mystery as to why it was shared between the two. See "[PATCH] clean rmdemux/muxcontext" patch on mailinglist. Originally committed as revision 16111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't access RMContext directly in rdt.c. Rather, use the return value ofRonald S. Bultje2008-12-13
| | | | | | | | | ff_rm_parse_packet() to indicate whether more audio packets are available in the demuxer from the last RM frame, and save that in the RDT parsing context. See patch/discussion in "[PATCH] rdt.c: don't access RMContext" on ML. Originally committed as revision 16110 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not invade _t POSIX namespace.Diego Biurrun2008-12-13
| | | | Originally committed as revision 16109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Separate the packet fetching from the data reading, so that the data readingRonald S. Bultje2008-12-13
| | | | | | | | | | | | function is assured to parse at most one packet. This makes this function useful for ASF data packet parsing in a "push-mode" in addition to the current "pull-mode", and therefore allows for use of these functions in, for example, the RTSP demuxer (for MS-RTSP support). Tested to give identical output before and after for regular ASF playback, also see discussion in the ML thread "[PATCH] asf.c: move packet_time_start=0 statement". Testsuite also works after the patch, tested by Benoit Fouet. Originally committed as revision 16108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l: Add missing backslashes.Diego Biurrun2008-12-13
| | | | Originally committed as revision 16107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Break some lines for a more aesthetically pleasing result.Diego Biurrun2008-12-13
| | | | Originally committed as revision 16106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove misleading comment, _t is POSIX-reserved namespace.Diego Biurrun2008-12-13
| | | | Originally committed as revision 16105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix $nmMåns Rullgård2008-12-13
| | | | Originally committed as revision 16104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove other shared lib names from linker command line for shared libsMåns Rullgård2008-12-13
| | | | Originally committed as revision 16103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow setting a different nm binary from the configure line.Reimar Döffinger2008-12-13
| | | | Originally committed as revision 16102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make mips64 a separate arch with fast_64bit.Diego Biurrun2008-12-13
| | | | Originally committed as revision 16101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace cosmeticsDiego Biurrun2008-12-13
| | | | Originally committed as revision 16100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace 'typedef struct ustr_t' by 'struct ustr', _t is POSIX namespace.Diego Biurrun2008-12-13
| | | | Originally committed as revision 16099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid _t in identifier names, _t is reserved by POSIX.Jai Menon2008-12-13
| | | | | | patch by Jai Menon, jmenon86 gmail com Originally committed as revision 16098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add img_convert() to imgconvert.h and #include it from imgresample.c.Diego Biurrun2008-12-13
| | | | | | | This fixes an implicit declaration of img_convert() warning. taken from a patchset from Anders Grönberg, galileo.m2 gmail com Originally committed as revision 16097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Matroska uses tables from isom.c, so add the object file to its dependencies.Anders Grönberg2008-12-13
| | | | | | extracted from a patch by Anders Grönberg, galileo.m2 gmail com Originally committed as revision 16096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add mips64 to the architecture list.Diego Biurrun2008-12-13
| | | | | | Taken from the OpenBSD ports tree. Originally committed as revision 16095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add alternative names for sh4 and parisc architectures.Diego Biurrun2008-12-13
| | | | | | Taken from the OpenBSD ports tree. Originally committed as revision 16094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Let imgresample altivec code buildLuca Barbato2008-12-13
| | | | Originally committed as revision 16093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cleanup typesLuca Barbato2008-12-13
| | | | Originally committed as revision 16092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unbreak imgresample altivecLuca Barbato2008-12-13
| | | | Originally committed as revision 16091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename type to be consistentLuca Barbato2008-12-13
| | | | Originally committed as revision 16090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define _BSD_SOURCE in bktr.c, dev/ic/bt8xx.h needs the u_short etc. typedefs,Reimar Döffinger2008-12-13
| | | | | | which sys/types.h will not generate without this. Originally committed as revision 16089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix regression.sh to work on OpenBSD which has md5 instead of md5sumReimar Döffinger2008-12-13
| | | | | | but it is in the path (/bin), not /sbin. Originally committed as revision 16088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove OpenBSD SLIBNAME magic, it seems unnecessary and breaks compilation.Reimar Döffinger2008-12-13
| | | | Originally committed as revision 16087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegts: replace Program_t typedef with "struct Program"Måns Rullgård2008-12-13
| | | | Originally committed as revision 16086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* s/#AVClass/AVClass/, consistent with the rest of the doxy.Stefano Sabatini2008-12-12
| | | | Originally committed as revision 16085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also include sys/types.h when testing for socklen_t, since unfortunatelyReimar Döffinger2008-12-12
| | | | | | | OpenBSD 4.4 defines it there (and sys/socket.h does not compile without it). Originally committed as revision 16084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: clean up .align detectionMåns Rullgård2008-12-12
| | | | Originally committed as revision 16083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some forgotten eax -> REG_a changes.Reimar Döffinger2008-12-12
| | | | | | It seems that binutils >= 2.18 just treat eax as rax but older versions fail. Originally committed as revision 28136 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* More POSIX _t namespace cleanup.Michael Niedermayer2008-12-12
| | | | Originally committed as revision 16082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: sort codec tags listAurelien Jacobs2008-12-12
| | | | Originally committed as revision 16081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: add dirac support (patch by Kurtnoise kurtnoise _at_ free _dot_ fr)Kurtnoise2008-12-12
| | | | Originally committed as revision 16080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add another mpeg4 avi fourcc from uncommon codecs listBen Littler2008-12-12
| | | | Originally committed as revision 16079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add Altivec implementation of clear_blockGuillaume Poirier2008-12-12
| | | | Originally committed as revision 16078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add sys/time.h header #include, fixes compilation on OS/2.Dave Yeo2008-12-12
| | | | | | patch by Dave Yeo, daveryeo telus net Originally committed as revision 16077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename all vorbis encoder related typedefs to not use _t for POSIX compatibilityOded Shimon2008-12-12
| | | | Originally committed as revision 16076 to svn://svn.ffmpeg.org/ffmpeg/trunk