aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback
AgeCommit message (Collapse)Author
2020-08-03actually remove MediaBrowser.Apicrobibero
2020-08-03Merge remote-tracking branch 'upstream/master' into api-migrationcrobibero
2020-08-01Merge remote-tracking branch 'jellyfin/api-migration' into api-universal-audioDavid
2020-08-01Move UniversalAudioService to Jellyfin.ApiDavid
2020-07-31Move DynamicHlsService to Jellyfin.Apicrobibero
2020-07-31Merge pull request #3764 from Ullmie02/api-videohlsPatrick Barron
Move VideoHlsService to Jellyfin.Api
2020-07-31Merge remote-tracking branch 'upstream/api-migration' into api-videocrobibero
2020-07-31Move VideoHlsService to Jellyfin.ApiDavid
2020-07-29Optimize Substring and StringBuilder usageBond_009
2020-07-27Move HlsSegmentService to Jellyfin.ApiDavid Ullmer
2020-07-24move VideoService.cs to Jellyfin.Apicrobibero
2020-07-22Review usage of string.Substring (part 1)Bond_009
Reduced allocations by replacing string.Substring with ReadOnlySpan<char>.Slice
2020-07-22Merge remote-tracking branch 'remotes/jellyfin/api-migration' into api-audioDavid
# Conflicts: # Emby.Server.Implementations/ApplicationHost.cs # Jellyfin.Api/Helpers/TranscodingJobHelper.cs
2020-07-20Merge remote-tracking branch 'upstream/master' into api-migration-mergecrobibero
2020-07-19Continute workDavid
2020-06-28Remove routes in old serviceDavid
2020-06-16Merge pull request #3343 from telans/comment-stopsBond-009
Add full stop at end of comments (SA1629)
2020-06-16fix SA1513/SA1516telans
2020-06-16Add full stop at end of comments (SA1629)telans
2020-06-15fix SA1508telans
2020-06-15fix SA1005telans
2020-06-05Merge branch 'master' into userdb-efcorePatrick Barron
2020-06-05Fix incorrect HLS master playlist fieldsAndreas B
Resolves: #3224
2020-06-04Merge branch 'master' into userdb-efcorePatrick Barron
# Conflicts: # Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs # Emby.Server.Implementations/Library/UserManager.cs # Emby.Server.Implementations/Sorting/IsFavoriteOrLikeComparer.cs # Emby.Server.Implementations/Sorting/IsPlayedComparer.cs # Emby.Server.Implementations/Sorting/IsUnplayedComparer.cs # Emby.Server.Implementations/TV/TVSeriesManager.cs # Jellyfin.Server.Implementations/Users/DefaultAuthenticationProvider.cs
2020-06-03Merge pull request #3180 from xumix/masterAnthony Lavado
Refactor copy codec checks
2020-05-27fix issue with audio transcodingdkanada
2020-05-26Refactor copy codec checksxumix
2020-05-15Merge branch 'master' into userdb-efcorePatrick Barron
# Conflicts: # Emby.Server.Implementations/Activity/ActivityLogEntryPoint.cs # Emby.Server.Implementations/ApplicationHost.cs # Emby.Server.Implementations/Devices/DeviceManager.cs # Jellyfin.Server/Jellyfin.Server.csproj # Jellyfin.Server/Migrations/MigrationRunner.cs # MediaBrowser.Controller/Devices/IDeviceManager.cs
2020-05-14Fix regressions introduced by #3098Patrick Barron
2020-05-12Merge branch 'master' into userdb-efcorePatrick Barron
# Conflicts: # Emby.Server.Implementations/Data/SqliteUserDataRepository.cs # Emby.Server.Implementations/Library/UserManager.cs # Jellyfin.Data/Entities/User.cs # Jellyfin.Data/ISavingChanges.cs # Jellyfin.Server.Implementations/Jellyfin.Server.Implementations.csproj # Jellyfin.Server.Implementations/JellyfinDb.cs # Jellyfin.Server/Migrations/MigrationRunner.cs # MediaBrowser.Model/Notifications/NotificationOptions.cs # MediaBrowser.sln
2020-05-12Initial migration codePatrick Barron
2020-05-06Merge pull request #2837 from Bond-009/async2dkanada
Minor IAsyncDisposable improvements
2020-05-01Merge pull request #2573 from YouKnowBlom/add-hls-fieldsBond-009
Add codecs, resolution and frame-rate fields to HLS master playlist
2020-04-25Fix error in HLS codecs field when level is nullAndreas B
2020-04-20Add some simple testsBond_009
2020-04-19Merge pull request #2849 from lyonzy/patch-1Joshua M. Boniface
Handle null outputFileExtension in GetOutputFilePath
2020-04-17Handle null outputFileExtension with null-conditional operatorMatt Lyons
2020-04-15Merge pull request #2745 from Artiume/patch-6Bond-009
Force Audio Transcoding for LiveTV Transcoding
2020-04-15Minor IAsyncDisposable improvementsBond_009
2020-04-13Handle null outputFileExtension in GetOutputFilePathMatt Lyons
2020-04-12Merge pull request #2782 from JustAMan/fix-ssa-deliveryVasily
Fix support for attachments with baseURL set
2020-04-06Fix support for attachments with baseURL setVasily
* Revert "Add baseURL to attachments" * This is properly handled by jellyfin-web#1020
2020-04-05Implement various suggestionsPatrick Barron
2020-04-05Miscellaneous code cleanupPatrick Barron
2020-04-05Simplified Conditionals and returnsPatrick Barron
2020-04-05Remove unnecessary casts and explicit array typesPatrick Barron
2020-04-05Use ? and ?? where applicablePatrick Barron
2020-04-05Convert using statements to using declarations where applicablePatrick Barron
2020-04-05Convert type checks and null checks into pattern matchingPatrick Barron
2020-04-02Force Audio Transcoding for LiveTV Transcodingartiume
Noticing some sync issues when transcoding livetv, the only thing I was able to do to fix it was to force the audio stream to be transcoded as well. This was how I originally wrote the code and we changed it during the review process. I am reverting it back to the original code.