summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* track time can be 64bitBaptiste Coudurier2009-11-29
| | | | Originally committed as revision 20650 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support pcm_f32/64le in movBaptiste Coudurier2009-11-29
| | | | Originally committed as revision 20649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, reindent after last commitBaptiste Coudurier2009-11-29
| | | | Originally committed as revision 20648 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support sample rates > INT16_MAX in mov using stsd v2Baptiste Coudurier2009-11-29
| | | | Originally committed as revision 20647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure field_select is not set to nonsensical values even if unused.Michael Niedermayer2009-11-29
| | | | | | Fixed an assert failure. Originally committed as revision 20646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize "s->first_slice = 1" out.Michael Niedermayer2009-11-28
| | | | Originally committed as revision 20645 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also check the location of the picture start code and picture codingMichael Niedermayer2009-11-28
| | | | | | extension a little. Originally committed as revision 20644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check order of startcodes, ignore some obviously wrong ones.Michael Niedermayer2009-11-28
| | | | | | Fixes issue487. Originally committed as revision 20643 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move mpeg_decode_postinit() out of bitstream decoding functions, it does notMichael Niedermayer2009-11-28
| | | | | | belong in there. Originally committed as revision 20642 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Inline mpeg_decode_extension, will simplify future changes.Michael Niedermayer2009-11-28
| | | | Originally committed as revision 20641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify mpeg_decode_user_data()Michael Niedermayer2009-11-28
| | | | Originally committed as revision 20640 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix put_bits32() doxy.Stefano Sabatini2009-11-28
| | | | Originally committed as revision 20639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently put braces for function definitions.Stefano Sabatini2009-11-28
| | | | Originally committed as revision 20638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo, "Write" -> "Writes".Stefano Sabatini2009-11-28
| | | | Originally committed as revision 20637 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use pixel formats names defined in av_pix_fmt_descriptors rather thanStefano Sabatini2009-11-28
| | | | | | | in those in pix_fmt_info, and remove the not anymore used PixFmtInfo.name field. Originally committed as revision 20636 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused PixFmtInfo.is_hwaccel field.Stefano Sabatini2009-11-28
| | | | Originally committed as revision 20635 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove "frame size must be a multiple of 2" check.Michael Niedermayer2009-11-27
| | | | | | | This check only caught explicitly set sizes from the cmd line and overriding the users wish seems silly, especially as it seems to work. Originally committed as revision 20634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add nomouse option to not record the mouse cursor.Michael Niedermayer2009-11-27
| | | | | | Implements issue877 Originally committed as revision 20633 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused stuff.Michael Niedermayer2009-11-27
| | | | Originally committed as revision 20632 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Real cursor support in x11grab.Roxis2009-11-27
| | | | | | | Patch by Roxis /// roxis list dot ru Slight changes by me to update the patch to current svn. Originally committed as revision 20631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not invent error codes but pass the error code on.Michael Niedermayer2009-11-27
| | | | Originally committed as revision 20630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace very odd and completely broken oss read_packet() by the obvious way toMichael Niedermayer2009-11-27
| | | | | | | read. Fixes issue348. Originally committed as revision 20629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo.Jai Menon2009-11-27
| | | | Originally committed as revision 20628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for hardcoding the motionpixels rgb to yuv table.Reimar Döffinger2009-11-26
| | | | Originally committed as revision 20627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, pix_fmt should be set by the motionpixels decoder, not by the demuxer.Reimar Döffinger2009-11-26
| | | | | | This fixes playback when lavf and lavc are less tightly couples as in e.g. MPlayer. Originally committed as revision 20626 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sws_format_name() use av_pix_fmt_descriptors.Stefano Sabatini2009-11-26
| | | | | | This also introduces a dependency of libswscale on libavutil. Originally committed as revision 29968 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make avcodec_get_pix_fmt_name() use av_pix_fmt_descriptors rather thanStefano Sabatini2009-11-26
| | | | | | pix_fmt_info. Originally committed as revision 20625 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_pix_fmt_descriptors use the same pixel format names as definedStefano Sabatini2009-11-26
| | | | | | | | | in libavcodec/imgconvert.c. Avoid to break compatility when making the functions dealing with pixel format names in imgconvert.c use the names defined in pixdescs. Originally committed as revision 20624 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow decoders to correctly set the sample format by defaulting toJai Menon2009-11-26
| | | | | | SAMPLE_FMT_NONE in avcodec_get_context_defaults2. Originally committed as revision 20623 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove x_chroma_shift and y_chroma_shift fields from PixFmtInfo, useStefano Sabatini2009-11-26
| | | | | | av_pix_fmt_descriptors log2_chroma_w and log2_chroma_h values instead. Originally committed as revision 20622 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update libavformat regression reference checksum for ffm. This change isJai Menon2009-11-26
| | | | | | due to r20601. Originally committed as revision 20621 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert "Add required header #include to fix 'make checkheaders'."Måns Rullgård2009-11-26
| | | | | | | config.h must not be included in that file. The table generator runs on the host system, but config.h describes the target. Originally committed as revision 20620 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: K&R style, prettyprintingDiego Biurrun2009-11-26
| | | | Originally committed as revision 20619 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark apply_mdct() function as static; it is only used within the file.Diego Biurrun2009-11-26
| | | | Originally committed as revision 20618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_pix_fmt_descriptors in avcodec_get_chroma_sub_sample(), ratherStefano Sabatini2009-11-26
| | | | | | than the PixFmtInfo x_chroma_shift and y_chroma_shift fields. Originally committed as revision 20617 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_pix_fmt_descriptors in ff_is_hwaccel_pix_fmt() rather thanStefano Sabatini2009-11-25
| | | | | | access the PixFmtInfo.is_hwaccel field which is going to be removed. Originally committed as revision 20616 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove special case that changed video sync behavior for ↵Michael Niedermayer2009-11-25
| | | | | | | | | av_q2d(enc->time_base) <= 0.001. This should make the default behave more like one would expect and not change behavior at 1000fps. Originally committed as revision 20615 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an entry for the AVFilter.next field removal.Stefano Sabatini2009-11-25
| | | | Originally committed as revision 20614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* -DFRAC_BITS must be added to CPPFLAGS when compiling mpegaudio_tablegen.ho.Diego Biurrun2009-11-25
| | | | Originally committed as revision 20613 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add required header #include to fix 'make checkheaders'.Diego Biurrun2009-11-25
| | | | Originally committed as revision 20612 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove AVFilter.next field, since it is not used and it is not goingStefano Sabatini2009-11-25
| | | | | | | to be used since the implementation of the new filter registration system. Originally committed as revision 20611 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix nv12/nv21 handling. linesize for plane 1 should account for both chromaRamiro Polla2009-11-25
| | | | | | | planes instead of just doubling the height while computing plane sizes. Also adjust avpicture_layout() to copy the correct amount of data for plane 1. Originally committed as revision 20610 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support compiling against libtheora older than 1.1David Conrad2009-11-25
| | | | Originally committed as revision 20609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an entry for the avfilter_next() function addition.Stefano Sabatini2009-11-25
| | | | Originally committed as revision 20608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avfilter_next().Stefano Sabatini2009-11-24
| | | | Originally committed as revision 20607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an entry for the avfilter_register() signature change.Stefano Sabatini2009-11-24
| | | | Originally committed as revision 20606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement a new registration system for filters.Stefano Sabatini2009-11-24
| | | | | | | | | | | | | Create a new static array containing pointers to the AVFilter definitions, so that the non-constant next filter in the AVFilter struct is not anymore required and the AVFilter definitions may be stored in shareable memory. Also change the signature for avfilter_register(), make it return an int since it may fail if there is not enough space in the static array for the registered filters. Originally committed as revision 20605 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an entry for the pixdesc.h API publication.Stefano Sabatini2009-11-24
| | | | Originally committed as revision 20604 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the pixdesc API public.Stefano Sabatini2009-11-24
| | | | Originally committed as revision 20603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make lsp2polyf() function non-static for upcoming usage in SIPRVitor Sessak2009-11-24
| | | | Originally committed as revision 20602 to svn://svn.ffmpeg.org/ffmpeg/trunk