summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* 100l forgot return type.Michael Niedermayer2008-10-04
| | | | Originally committed as revision 15539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indention of NAL type enum.Michael Niedermayer2008-10-04
| | | | Originally committed as revision 15538 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_parse_close() is not the correct function for H264Context.Michael Niedermayer2008-10-03
| | | | Originally committed as revision 15537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set sample rate for amr to allow stream copy since no decoder is present,Baptiste Coudurier2008-10-03
| | | | | | 3gp does not store sample rate in stsd in fact. Fixes #674. Originally committed as revision 15536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FFmpeg is not made for bats: Fix 22050Hz vs. 22050kHz typo.Diego Biurrun2008-10-03
| | | | Originally committed as revision 15535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move nal unit types enum and EXTENDED_SAR #define from h264data.h to h264.h.Michael Niedermayer2008-10-03
| | | | Originally committed as revision 15534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove offset_t typedef and use int64_t directly instead.Diego Biurrun2008-10-03
| | | | | | | The name offset_t is easily confused with the standard off_t type and *_t is POSIX reserved namespace if any POSIX header is included. Originally committed as revision 15533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Stop Sun Studio from issuing a warning during configure when passedDiego Pettenò2008-10-03
| | | | | | | the --version option. patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com Originally committed as revision 15532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure strcasecmp() is declared.Diego Pettenò2008-10-03
| | | | | | | | On recent glibc versions strings.h is not included by default, so the compiler will issue a warning for implicit declaration of strcasecmp(). patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com Originally committed as revision 15531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* atrac3dec: cosmetics: indentationAurelien Jacobs2008-10-02
| | | | Originally committed as revision 15530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: cosmetics: indentationAurelien Jacobs2008-10-02
| | | | Originally committed as revision 15529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: don't merge packets which have no timestampAurelien Jacobs2008-10-02
| | | | Originally committed as revision 15528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use __typeof__ instead of GCC-specific typeof keyword.Diego Pettenò2008-10-02
| | | | | | | | | | The typeof keyword is disabled by default when building with -std=c99 as it's a GNU extension. ICC supports the __typeof__ keyword as well as typeof. Patch by Diego 'Flameeyes' Pettenò %flameeyes A gmail P com% Originally committed as revision 15527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix warning reported by Intel C compiler:Diego Pettenò2008-10-02
| | | | | | | | | | | | libavcodec/h264_parser.c(77): warning #589: transfer of control bypasses initialization of: variable "v" (declared at line 58) goto found; This new form also improves readability. Patch by Diego 'Flameeyes' Pettenò %flameeyes A gmail P com% Originally committed as revision 15526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Intel C compiler warns on this assignment in this if(), probablyDiego Pettenò2008-10-02
| | | | | | | | | because it's being assigned as a constant. To avoid a spurious warning, split it into two instructions, which should also make it more logical once the FIXME is resolved. patch by Diego 'Flameeyes' Pettenò %flameeyes A gmail P com% Originally committed as revision 15525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicate "const" qualifier for *matrix.Diego Pettenò2008-10-02
| | | | | | | This silences out a warning when compiling with Intel C Compiler. Patch by Diego 'Flameeyes' Pettenò %flameeyes A gmail P com% Originally committed as revision 15524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* x264 has removed the b-rdo and bime options, and instead integratedJason Garrett-Glaser2008-10-02
| | | | | | | | them into the subme number to attempt to reduce the number of unnecessary options. subme now scales up to 9. Patch by Jason Garett-Glaser %darkshikari A gmail P com% Originally committed as revision 15523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MinGW runtime 3.15 has a wrapper for usleep().Ramiro Polla2008-10-02
| | | | Originally committed as revision 15522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Specify minimum version for some MinGW packages.Ramiro Polla2008-10-02
| | | | Originally committed as revision 15521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use M_PI from libavutil/mathematics.h instead of defining PI ourselvesReimar Döffinger2008-10-02
| | | | | | in libavcodec/apiexample.c. Originally committed as revision 15520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make 8svx codec context table pointer const to match the type of theReimar Döffinger2008-10-02
| | | | | | array. Originally committed as revision 15519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2008-10-02
| | | | Originally committed as revision 15518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum typers instead of int.Diego Pettenò2008-10-02
| | | | | | Patch by Diego 'Flameeyes' Pettenò: flameeyes gmail Originally committed as revision 15517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless cyuv_decode_end functionReimar Döffinger2008-10-02
| | | | Originally committed as revision 15516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add (additional) const to many global tables.Reimar Döffinger2008-10-02
| | | | Originally committed as revision 15515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use "static const" instead of "const static"Reimar Döffinger2008-10-02
| | | | Originally committed as revision 15514 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Change comment style for consistency.Diego Biurrun2008-10-02
| | | | Originally committed as revision 15513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update copyright years.Diego Biurrun2008-10-02
| | | | Originally committed as revision 15512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally set LC_ALL=C to prevent locale issues from breaking tests.Diego Biurrun2008-10-02
| | | | Originally committed as revision 15511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename some variables and add some comments to try to be a bit more clear.Benoit Fouet2008-10-02
| | | | Originally committed as revision 15510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow using DECLARE_ALIGNED with Sun cc.Carl Eugen Hoyos2008-10-02
| | | | Originally committed as revision 15509 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename copy_picture to ff_copy_picture.Carl Eugen Hoyos2008-10-02
| | | | Originally committed as revision 15508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memleak for currupt input.Carl Eugen Hoyos2008-10-01
| | | | Originally committed as revision 15507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove useless spacesBaptiste Coudurier2008-10-01
| | | | Originally committed as revision 15506 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindentDavid Conrad2008-10-01
| | | | Originally committed as revision 15505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unneeded elseDavid Conrad2008-10-01
| | | | Originally committed as revision 15504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unneeded bracesDavid Conrad2008-10-01
| | | | Originally committed as revision 15503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return if unpacking motion vectors for a keyframeDavid Conrad2008-10-01
| | | | Originally committed as revision 15502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: indentationDavid Conrad2008-10-01
| | | | Originally committed as revision 15501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Visible width/height fields were added in Theora 3.2David Conrad2008-10-01
| | | | Originally committed as revision 15500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* filter_limit_values only needs 7 bits, make its tables smallerDavid Conrad2008-10-01
| | | | Originally committed as revision 15499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation.Benoit Fouet2008-10-01
| | | | Originally committed as revision 15498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use parse_packet vfunc in RTPDynamicProtocolHandler instead of hardcodingRonald S. Bultje2008-10-01
| | | | | | the use of rdt_parse_packet(). See "RDT/Realmedia patches #2" thread on ML. Originally committed as revision 15497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* This patch refactors RDT packet header parsing so that it can be used inRonald S. Bultje2008-10-01
| | | | | | | | rtsp.c to detect the ID of the packet source also in case of TCP streams. This allows proper playback of RDT streams with multiple stream types, e.g. audio + video. Accepted by LucaB in "RDT/Realmedia patches #2" thread on ML. Originally committed as revision 15496 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless context variable.Benoit Fouet2008-10-01
| | | | Originally committed as revision 15495 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge declaration and assignment.Benoit Fouet2008-10-01
| | | | Originally committed as revision 15494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Interleaved forward/backward channels processing in order to increase chancesSiarhei Siamashka2008-10-01
| | | | | | | | of stepping on already cached data for the cores with extremely small data cache. Patch by Siarhei Siamashka: name dot surname at gmail Originally committed as revision 15493 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: indentationDavid Conrad2008-09-30
| | | | Originally committed as revision 15492 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge (vp3|theora)_calculate_pixel_addressesDavid Conrad2008-09-30
| | | | Originally committed as revision 15491 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Missed hunks of last commitDavid Conrad2008-09-30
| | | | Originally committed as revision 15490 to svn://svn.ffmpeg.org/ffmpeg/trunk