aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* * emms-browser.el: add-to-list -> cl-pushnewYoni Rabkin2021-03-051-1/+1
|
* * emms-browser.el: fix unused lexical variables and argumentsYoni Rabkin2021-03-051-15/+11
|
* * emms-player-mplayer.el: lexical declaration, deprecate ↵Mike Kazantsev2021-03-041-14/+19
| | | | emms-player-mpv-cmd-prog macro
* lexical declarationYoni Rabkin2021-03-0313-15/+15
|
* * emms-playlist-mode.el:Yoni Rabkin2021-03-031-3/+3
|
* * emms-playing-time.el: add lexical and fixYoni Rabkin2021-03-031-3/+3
|
* add lexical declarationsYoni Rabkin2021-03-032-2/+2
|
* * emms-player-simple.el: lexical declaration and fixYoni Rabkin2021-03-031-1/+2
|
* * emms-player-mplayer.el: lexical declarationYoni Rabkin2021-03-031-1/+1
|
* * emms-player-mpg321-remote.el: add lexical and fixYoni Rabkin2021-03-031-2/+6
|
* * emms-player-mpd.el: add lexical and fixYoni Rabkin2021-03-031-5/+16
| | | | | This code is too smart for its own good and had left a lot of unused lexical variables.
* * emms-mode-line-icon.el: add lexicalYoni Rabkin2021-03-031-1/+1
|
* * emms-mode-line.el: add lexical and fixYoni Rabkin2021-03-031-1/+2
| | | | Explicit ignore.
* add lexical declarationsYoni Rabkin2021-03-033-3/+3
|
* * emms-librefm-stream.el: add lexical and fix warningsYoni Rabkin2021-03-021-26/+19
|
* * emms-librefm-scrobbler.el: add lexical declarationYoni Rabkin2021-03-021-1/+6
| | | | Explicitly ignore variables that are implicitly not used.
* * emms-later-do.el: tell the compiler that we knowYoni Rabkin2021-03-021-1/+1
|
* * emms-later-do.el: add lexical declarationYoni Rabkin2021-03-021-1/+1
|
* Add lexical declarationsYoni Rabkin2021-03-023-3/+3
|
* * emms-info-mp3info.el: lexical declarationYoni Rabkin2021-03-021-1/+1
|
* * emms-info-metaflac.el: lexical declarationYoni Rabkin2021-03-021-1/+1
|
* * emms-info-libtag.el: lexical declarationYoni Rabkin2021-03-021-1/+1
|
* * emms-info.el: add lexical and remove unused lexical variableYoni Rabkin2021-03-021-3/+2
|
* * emms-i18n.el: calm down the compilerYoni Rabkin2021-03-021-1/+1
|
* * emms-i18n.el: lexical declarationYoni Rabkin2021-03-021-1/+1
|
* * emms-history.el: lexical declarationYoni Rabkin2021-03-021-1/+1
|
* * emms.el: explicit ignoreYoni Rabkin2021-03-021-0/+1
|
* add lexical declarationsYoni Rabkin2021-03-022-2/+2
|
* * emms-compat.el: lexicalYoni Rabkin2021-03-021-1/+1
|
* * emms-cache.el: explicit ignoreYoni Rabkin2021-03-021-1/+2
|
* * emms-cache.el: lexicalYoni Rabkin2021-03-021-1/+1
|
* * emms-bookmarks.el: lexical scoping declarationYoni Rabkin2021-03-021-1/+1
|
* * emms.info: update datesYoni Rabkin2021-03-021-59/+59
|
* Merge branch 'info-native'Petteri Hintsanen2021-02-281-207/+377
|\
| * Fix byte compilationPetteri Hintsanen2021-02-271-147/+149
| | | | | | | | | | | | | | - Add requires to load seq-... and string-trim-right functions during compilation. - Reorder code to fix warnings about free and undeclared variables.
| * Match id3v1 genres in id3v2.4 framePetteri Hintsanen2021-02-261-5/+6
| | | | | | | | v2.4 does not enclose genre references in parentheses.
| * Add support for id3v1 genresPetteri Hintsanen2021-02-241-1/+141
| |
| * Decode id3v2 user-defined text framesPetteri Hintsanen2021-02-241-59/+86
| | | | | | | | | | Frames are assumed to be key/value pairs. If key is an info-field identifier, return the value for that info-field.
* | Merge branch 'info-native'Petteri Hintsanen2021-02-231-155/+193
|\|
| * Fix id3v2 frame id to info-field mappingPetteri Hintsanen2021-02-231-16/+24
| | | | | | | | | | Use TDRC for info-date. Also add some more well-known tags so that id3v2 can provide the same info-fields than Vorbis.
| * Replace curved quotes with ASCII quotesPetteri Hintsanen2021-02-231-46/+46
| |
| * Fix whitespace trimmingPetteri Hintsanen2021-02-231-6/+7
| | | | | | | | Don't try to trim nil.
| * Trim trailing whitespace from all info-fieldsPetteri Hintsanen2021-02-211-6/+5
| |
| * Put some id3v2.4 frame data to info-date instead of info-yearPetteri Hintsanen2021-02-211-3/+3
| | | | | | | | | | | | | | TDRC (‘Recording time’), TDRL (‘Release time’) and TDOR (‘Original release time’) frames in id3v2.4 are time stamps, not years, so they should go to info-date and info-originaldate fields instead of info-year and info-originalyear.
| * Trim trailing whitespace from id3v2 stringsPetteri Hintsanen2021-02-211-5/+7
| |
| * Improve id3v2 validity checksPetteri Hintsanen2021-02-211-40/+48
| | | | | | | | | | | | | | | | | | - Remove id3v2 size checks agains emms-info-native--max-peek-size. Decoded sizes do not guide memory reservation anymore so checks are in that sense redundant. Trigger errors on zero-sized elements though, because they are always wrong. - Verify frame identifiers.
| * Improve id3v2 error handlingPetteri Hintsanen2021-02-191-41/+51
| | | | | | | | | | | | | | | | | | | | - Allow zero-sized frames; in practice they mean start of padding. - Do not try to read frame headers going over tag boundary. These cases also mean start of padding in practice. - Return nil from emms-info-native--decode-id3v2 in case of errors *or* if there were no useful metadata.
| * Read and parse id3v2 frames individuallyPetteri Hintsanen2021-02-181-62/+72
| | | | | | | | | | | | | | Instead of reading the whole tag and then parsing it, do reading and parsing one frame at a time, and skip uninteresting frames. This may conserve memory and give better performance in some cases.
* | Merge branch 'info-native'Petteri Hintsanen2021-02-171-237/+509
|\|
| * Add mappings for more id3v2 text framesPetteri Hintsanen2021-02-161-0/+6
| | | | | | | | | | Extract "artistsort", "titlesort", "albumsort" and few more "year" and "originalyear" frames.