aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-31Replace url_* functions by their avio_* counterparts.Alexis Ballier
2012-03-31Replace dump_format by av_dump_format.Alexis Ballier
2012-03-31Replace init_put_byte by avio_alloc_context.Alexis Ballier
The former is deprecated as of ffmpeg 0.9 and is gone in libavformat 54.
2012-03-31Merge av_close_input_{file,stream} into avformat_close_input.Alexis Ballier
The formers are deprecated and gone in libavformat 54. Moreover, this allows removing some code because avformat_close_input takes care of freeing relevant structures.
2012-03-31Replace av_metadata_(get/set2) by av_dict_(get/set).Alexis Ballier
The former is deprecated and gone in ffmpeg git.
2012-03-31Remove av_set_parameters.Alexis Ballier
It is gone in libavformat 54 and avformat_write_header takes care of allocating data as needed.
2012-03-31Replace av_write_header by avformat_write_header.Alexis Ballier
The former is gone in libavformat 54.
2012-03-31Do not map url_fdopen as it is deprecated and gone in libavformat 54. It is ↵Alexis Ballier
unused in xbmc code.
2012-03-31Drop url_set_interrupt_cb usage which was removed in libavformat 54 and set ↵Alexis Ballier
the callback directly in the AVFormatContext, which was added in libavformat-53.15.0
2012-03-31changed: replace old swscale pixel format conversion with libavfilter automaticelupus
2012-03-31changed: replace old libavfilter integration with null output filter with ↵elupus
buffersink
2012-03-31Remove old code depending on deprecated file_sizeelupus
This may need some testing for growing files
2012-03-31Replace deprecated is_streamed with new seekable flagselupus
2012-03-31Drop support for ffmpeg version older than our built in versionelupus
2012-03-31Replace more depreciated ffmpeg functionselupus
2012-03-31Replace depreciated av_find_stream_info with avformat_find_stream_infoelupus
2012-03-31Don't use depreciated avcodec_thread_initelupus
2012-03-31Don't listen to depreciated return value of av_read_frameelupus
2012-03-31replace depreciated AVMetadata(Tag) with AVDictionary(Entry)elupus
2012-03-31replace depreciated ByteIOContext with AVIOContextelupus
2012-03-31replace depreciated av_open_input_stream/file with new avformat_open_inputelupus
2012-03-31Drop now merged or redundant patcheselupus
2012-03-31Drop patch for cdxa probe, it causes missdetections of certain streamselupus
Sadly i can't remember an example
2012-03-31Drop patch for win32 buildelupus
These scripts should not be in the ffmpeg build dir
2012-03-31Drop neon patch that doesn't apply anymoreelupus
2012-03-31Update patcheselupus
2012-03-31Update ffmpeg to n0.10.2 (f139838d6473c7b5152178f602cb953a824c2ff9)elupus
xbmc ffmpeg 05f8b5549c5e20cf9a417069838edd6841d7bd40
2012-03-31[osx] - check the number of available screens before accessing the NSScreen ↵Memphiz
array with a bogus index
2012-03-31the return false here was supposed to indicate successJonathan Marshall
2012-03-31return -1 rather than false if no file provider is found in CFile::StatJonathan Marshall
2012-03-31IsInteger/IsNaturalNumber should ignore whitespaceJonathan Marshall
2012-03-30Merge pull request #622 from CrHasher/leakfixjmarshallnz
Memory leak when scanning for USB devices every second
2012-03-31change texture caching functions to not re-cache on Gets, rather re-cache ↵Jonathan Marshall
using a separate background job.
2012-03-31remove hacks for checking auto-thumbs that fail to cache (0-byte file) for ↵Jonathan Marshall
whatever reason, now that the infomanager can return the icon in those instances
2012-03-31add a fallback to the infomanager, specifically for thumbs that fail to loadJonathan Marshall
2012-03-31reorganise code so that CTextureCache::CheckAndCacheImage() is done as ↵Jonathan Marshall
little as possible
2012-03-31drop previously cached path->texture lookups to get rid of previously cached ↵Jonathan Marshall
stuff
2012-03-31save picture/program thumbs using their original urls, not cached urlsJonathan Marshall
2012-03-31use image://picturefolder@ urls for picture folder thumbs, rather than ↵Jonathan Marshall
storing cached thumb URLs in the path->texture db table
2012-03-31cosmetics: cleanup variable names, and some minor refactor to make the code ↵Jonathan Marshall
clearer
2012-03-31changed: format thumb urls as ↵Jonathan Marshall
image://[type@]<url_encoded_path_to_file>?<options> so it can be reused for generic image caching
2012-03-30Merge pull request #820 from ScudLee/stubfile_titlesjmarshallnz
Disc stubs: Use label for a better default title, and allow the user to override via specifying <title> in the .stub file.
2012-03-30Disc stubs: Changes to the displayed title in the dialogLee Pollock
2012-03-31ensure we reset the invalidated state immediately after reading it ↵Jonathan Marshall
(minimizes another thread changing it)
2012-03-31refactor - use a class for retrieving setinfo so it's easily extendableJonathan Marshall
2012-03-31cosmetic, rename strThumb->thumbURLs in AddActorJonathan Marshall
2012-03-31refactor fetching of cast to a common functionJonathan Marshall
2012-03-31cosmetic rearrangement of the SQL query in GetSeasonsNavJonathan Marshall
2012-03-31cosmetic - improve layout of view creationJonathan Marshall
2012-03-31updating thumb urls in AddActor wasn't working due to a missing exec()Jonathan Marshall