- 11 Aug, 2010 8 commits
-
-
Stefano Sabatini authored
AVFilterContext *avfilter_open(AVFilter *filter, const char *inst_name); to: int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name); This way it is possible to propagate an error code telling the reason of the failure. Originally committed as revision 24765 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 24764 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
S.N. Hemanth Meenakshisundaram authored
Define a new struct AVFilterBufferRefVideoProps and add a type field to AVFilterBufferRef. Video specific properties in AVFilterBufferRefVideoProps are now referred to by *video pointer in AVFilterBufferRef. Patch by S.N. Hemanth Meenakshisundaram smeenaks->ucsd.edu. Originally committed as revision 24763 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 24762 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
readability. Originally committed as revision 24761 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Pascal Massimino authored
correct mb_xy to use mb_width. tighten allocations. reduce the amount of zeroing. Originally committed as revision 24760 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Pete Eberlein authored
video4linux2 devices. This is used by Sensoray Model 2253 cards. Patch by Pete Eberlein (pete AT sensoray DOT com) Originally committed as revision 24759 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Pascal Massimino authored
Originally committed as revision 24758 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 10 Aug, 2010 4 commits
-
-
Przemysław Sobala authored
Patch by Przemysław Sobala, psobala wp-sa pl Originally committed as revision 24757 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Aurelien Jacobs authored
and may avoid some confusion for patch submitters Originally committed as revision 24756 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Aurelien Jacobs authored
Originally committed as revision 24755 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Martin Storsjö authored
Originally committed as revision 24754 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 09 Aug, 2010 9 commits
-
-
Aurelien Jacobs authored
Originally committed as revision 24753 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Aurelien Jacobs authored
Originally committed as revision 24752 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Aurelien Jacobs authored
Originally committed as revision 24751 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Ronald S. Bultje authored
two padding zeroes before it. Should fix fate failures on openBSD and crashes on MacOSX (that I cannot reproduce). Originally committed as revision 24750 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Martin Storsjö authored
Originally committed as revision 24749 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Martin Storsjö authored
Originally committed as revision 24748 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Martin Storsjö authored
This is useful for other future RTP depacketizers Originally committed as revision 24747 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Martin Storsjö authored
We do request Connection: close, but some servers ignore it. Originally committed as revision 24746 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Vitor Sessak authored
Originally committed as revision 24745 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 08 Aug, 2010 5 commits
-
-
Ramiro Polla authored
Originally committed as revision 31949 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-
Ramiro Polla authored
Originally committed as revision 31948 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-
Diego Biurrun authored
Originally committed as revision 24744 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Ramiro Polla authored
Originally committed as revision 24743 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Frank Barchard authored
This allows using a libvpx that has been configured as decoder/encoder only. patch by Frank Barchard, fbarchard google com Originally committed as revision 24742 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 07 Aug, 2010 14 commits
-
-
Jason Garrett-Glaser authored
Many H.264 derivatives, like RV40 and VP8, use the H.264 prediction functions but not the weight/loopfilter functions. This should reduce the size of builds with one of these derivatives but without H.264 decoding itself. Originally committed as revision 24741 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Alex Converse authored
Originally committed as revision 24740 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 24739 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 24738 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Reinhard Tartler authored
Originally committed as revision 24737 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Jason Garrett-Glaser authored
Originally committed as revision 24736 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Josh Allmann authored
Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 24735 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
including libavcore/imgutils.h, which was required since the recent avcodec_check_dimensions() -> av_check_image_size() transition. Originally committed as revision 24734 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 24733 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
S.N. Hemanth Meenakshisundaram authored
AVFilterLink.srcpic -> AVFilterLink.src_buf AVFilterLink.cur_pic -> AVFilterLink.cur_buf AVFilterLink.outpic -> AVFilterLink.out_buf The new names are more generic and more consistent, since the struct they contain, which was named AVFilterPicRef, has been renamed to AVFilterBufferRef. Patch by S.N. Hemanth Meenakshisundaram %smeenaks%ucsd%edu%. Originally committed as revision 24732 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
S.N. Hemanth Meenakshisundaram authored
avfilter_(un)ref_pic -> avfilter_(un)ref_buffer avfilter_copy_picref_props -> avfilter_copy_buffer_ref_props AVFilterBufferRef.pic -> AVFilterBufferRef.buffer They have been renamed to allow sharing with audio. Patch by S.N. Hemanth Meenakshisundaram $smeenaks$ucsd$edu$. Originally committed as revision 24731 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
S.N. Hemanth Meenakshisundaram authored
The struct is going to be used for storing audio buffer references as well, and the new name is more generic. Patch by S.N. Hemanth Meenakshisundaram @smeenaks@ucsd@edu@. Originally committed as revision 24730 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 24729 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
S.N. Hemanth Meenakshisundaram authored
Patch by S.N. Hemanth Meenakshisundaram |smeenaks|ucsd|edu|. Originally committed as revision 24728 to svn://svn.ffmpeg.org/ffmpeg/trunk
-