├── .github ├── FUNDING.yml └── workflows │ └── tests.yml ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── AndroidProjectSystem.xml ├── compiler.xml ├── deploymentTargetSelector.xml ├── gradle.xml ├── jarRepositories.xml ├── migrations.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── CMakeLists.txt ├── COPYING ├── Gemfile ├── Gemfile.lock ├── README.md ├── app ├── .gitignore ├── build.gradle ├── get-version.gradle ├── git-version.gradle ├── gradle.properties ├── libs │ └── .gitignore ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── exifthumbnailadder │ │ └── app │ │ ├── AddThumbs.java │ │ ├── AddThumbsCommon.java │ │ ├── DocUIStrings.java │ │ ├── PermissionsTest.java │ │ ├── Repeat.java │ │ ├── RepeatRule.java │ │ ├── SettingsTest.java │ │ ├── TakeScreenshots.java │ │ ├── TestCommons.java │ │ ├── TestDataCollectionRule.java │ │ ├── TestDataCollectionUtils.java │ │ ├── TestUtil.java │ │ └── zAddThumbs.java │ ├── debug │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_exif_thumbnails_adder_debug.xml │ │ └── ic_exif_thumbnails_adder_foreground_debug.xml │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── Exiv2Helper.cpp │ │ ├── Exiv2Helper.h │ │ ├── exceptions.c │ │ ├── exceptions.h │ │ ├── ffmpeg_helper.c │ │ ├── libexif-helper.c │ │ ├── libexif-helper.h │ │ ├── tests.c │ │ └── timestamp.c │ ├── ic_exif_thumbnails_adder-playstore.png │ ├── java │ │ └── com │ │ │ ├── exifthumbnailadder │ │ │ └── app │ │ │ │ ├── AboutActivity.java │ │ │ │ ├── AddThumbsFragment.java │ │ │ │ ├── AddThumbsLogLiveData.java │ │ │ │ ├── AddThumbsService.java │ │ │ │ ├── ETADoc.java │ │ │ │ ├── ETADocDf.java │ │ │ │ ├── ETADocFile.java │ │ │ │ ├── ETAExifInterface.java │ │ │ │ ├── ETASrcDir.java │ │ │ │ ├── ETASrcDirFile.java │ │ │ │ ├── ETASrcDirUri.java │ │ │ │ ├── FfmpegSwscaleService.java │ │ │ │ ├── FileUtil.java │ │ │ │ ├── IdlingResource │ │ │ │ ├── SimpleIdlingResource.java │ │ │ │ └── SimpleWorkingDirPermIdlingResource.java │ │ │ │ ├── InputDirs.java │ │ │ │ ├── LastServiceLiveData.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ ├── NativeLibHelper.java │ │ │ │ ├── PermissionManager.java │ │ │ │ ├── ServiceUtil.java │ │ │ │ ├── SettingsFragment.java │ │ │ │ ├── SyncFragment.java │ │ │ │ ├── SyncLogLiveData.java │ │ │ │ ├── SyncService.java │ │ │ │ ├── ThumbnailFactory.java │ │ │ │ ├── ThumbnailProject.java │ │ │ │ ├── UriUtil.java │ │ │ │ ├── WorkingDirPermActivity.java │ │ │ │ └── exception │ │ │ │ ├── AEEException.java │ │ │ │ ├── BadOriginalImageException.java │ │ │ │ ├── CopyAttributesFailedException.java │ │ │ │ ├── DestinationFileExistsException.java │ │ │ │ ├── Exiv2ErrorException.java │ │ │ │ ├── Exiv2WarnException.java │ │ │ │ ├── FfmpegHelperException.java │ │ │ │ ├── LibexifException.java │ │ │ │ ├── LibexifHelperException.java │ │ │ │ ├── LibexifUnsupportedOperationException.java │ │ │ │ ├── PixymetaException.java │ │ │ │ ├── PixymetaUnsupportedOperationException.java │ │ │ │ └── TimestampHelperException.java │ │ │ └── schokoladenbrown │ │ │ └── Smooth.java │ └── res │ │ ├── drawable-anydpi │ │ ├── ic_add.xml │ │ ├── ic_notif_status_bar.xml │ │ ├── ic_settings.xml │ │ └── ic_sync.xml │ │ ├── drawable-hdpi │ │ ├── ic_add.png │ │ ├── ic_notif_status_bar.png │ │ ├── ic_settings.png │ │ └── ic_sync.png │ │ ├── drawable-mdpi │ │ ├── ic_add.png │ │ ├── ic_notif_status_bar.png │ │ ├── ic_settings.png │ │ └── ic_sync.png │ │ ├── drawable-v24 │ │ └── .gitignore │ │ ├── drawable-xhdpi │ │ ├── ic_add.png │ │ ├── ic_notif_status_bar.png │ │ ├── ic_settings.png │ │ └── ic_sync.png │ │ ├── drawable-xxhdpi │ │ ├── ic_add.png │ │ ├── ic_notif_status_bar.png │ │ ├── ic_settings.png │ │ └── ic_sync.png │ │ ├── drawable │ │ ├── ic_exif_thumbnails_adder_foreground.xml │ │ └── rounded_corner.xml │ │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_main.xml │ │ ├── activity_working_dir_perm.xml │ │ ├── content_main.xml │ │ ├── delete_path_button.xml │ │ ├── fragment_add_thumbs.xml │ │ ├── fragment_settings.xml │ │ ├── fragment_sync.xml │ │ └── select_path_button.xml │ │ ├── menu │ │ ├── bottom_nav_menu.xml │ │ └── menu_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_exif_thumbnails_adder.xml │ │ └── ic_exif_thumbnails_adder_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_exif_thumbnails_adder.png │ │ └── ic_exif_thumbnails_adder_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_exif_thumbnails_adder.png │ │ └── ic_exif_thumbnails_adder_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_exif_thumbnails_adder.png │ │ └── ic_exif_thumbnails_adder_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_exif_thumbnails_adder.png │ │ └── ic_exif_thumbnails_adder_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_exif_thumbnails_adder.png │ │ └── ic_exif_thumbnails_adder_round.png │ │ ├── navigation │ │ └── nav_graph.xml │ │ ├── raw │ │ └── .gitignore │ │ ├── values-af-rZA │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ar-rSA │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ca-rES │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-cs-rCZ │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-da-rDK │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-de-rDE │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-el-rGR │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-es-rES │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-fi-rFI │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-fr-rFR │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-hi-rIN │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-hu-rHU │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-it-rIT │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-iw-rIL │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ja-rJP │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ko-rKR │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-night │ │ └── themes.xml │ │ ├── values-nl-rNL │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-no-rNO │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-pl-rPL │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-ro-rRO │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-round │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-sr-rSP │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-sv-rSE │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-uk-rUA │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-vi-rVN │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ ├── arrays.xml │ │ └── strings.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_exif_thumbnails_adder_background.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ └── root_preferences.xml │ └── test │ └── java │ └── com │ └── exifthumbnailadder │ └── app │ └── ExampleUnitTest.java ├── cmake ├── exif.cmake ├── exif_CMakeLists.cmake ├── exif_config.h.cmake ├── exiv2.cmake ├── expat.cmake ├── ffmpeg.cmake ├── ffmpeg_AndroidLog.patch ├── ffmpeg_Makefile.patch ├── ffmpeg_build_system.cmake ├── ffmpeg_copy_headers.cmake ├── libexif.cmake ├── libexif_CMakeLists.cmake ├── libexif_config.h.cmake ├── time2038.c └── time2038.cmake ├── crowdin.yml ├── fastlane ├── Appfile ├── Fastfile ├── README.md └── metadata │ └── android │ ├── af │ ├── full_description.txt │ └── short_description.txt │ ├── ar │ ├── full_description.txt │ └── short_description.txt │ ├── ca │ ├── full_description.txt │ └── short_description.txt │ ├── cs-CZ │ ├── full_description.txt │ └── short_description.txt │ ├── da-DK │ ├── full_description.txt │ └── short_description.txt │ ├── de-DE │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ │ └── sevenInchScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ └── short_description.txt │ ├── el-GR │ ├── full_description.txt │ └── short_description.txt │ ├── en-US │ ├── changelogs │ │ ├── 118.txt │ │ ├── 136.txt │ │ ├── 146.txt │ │ ├── 158.txt │ │ ├── 164.txt │ │ ├── 171.txt │ │ ├── 181.txt │ │ ├── 194.txt │ │ ├── 2.txt │ │ ├── 201.txt │ │ ├── 213.txt │ │ ├── 232.txt │ │ ├── 237.txt │ │ ├── 247.txt │ │ ├── 379.txt │ │ ├── 381.txt │ │ ├── 42.txt │ │ ├── 5.txt │ │ ├── 515.txt │ │ ├── 536.txt │ │ ├── 679.txt │ │ ├── 724.txt │ │ └── 767.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ │ └── sevenInchScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ ├── short_description.txt │ └── title.txt │ ├── es-ES │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ │ └── sevenInchScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ └── short_description.txt │ ├── fi-FI │ ├── full_description.txt │ └── short_description.txt │ ├── fr-FR │ ├── changelogs │ │ ├── 118.txt │ │ ├── 136.txt │ │ ├── 146.txt │ │ ├── 158.txt │ │ ├── 164.txt │ │ ├── 171.txt │ │ ├── 181.txt │ │ ├── 194.txt │ │ ├── 201.txt │ │ ├── 213.txt │ │ ├── 42.txt │ │ └── 5.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── phoneScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ │ └── sevenInchScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ ├── short_description.txt │ └── title.txt │ ├── he-IL │ ├── full_description.txt │ └── short_description.txt │ ├── hi-IN │ ├── full_description.txt │ └── short_description.txt │ ├── hu-HU │ ├── full_description.txt │ └── short_description.txt │ ├── it-IT │ ├── full_description.txt │ └── short_description.txt │ ├── ja-JP │ ├── full_description.txt │ └── short_description.txt │ ├── ko-KR │ ├── full_description.txt │ └── short_description.txt │ ├── nl-NL │ ├── full_description.txt │ └── short_description.txt │ ├── no-NO │ ├── full_description.txt │ └── short_description.txt │ ├── pl-PL │ ├── full_description.txt │ └── short_description.txt │ ├── pt-BR │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ │ └── sevenInchScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ └── short_description.txt │ ├── pt-PT │ ├── full_description.txt │ └── short_description.txt │ ├── ro │ ├── full_description.txt │ └── short_description.txt │ ├── ru-RU │ ├── full_description.txt │ └── short_description.txt │ ├── screenshots.html │ ├── sr │ ├── full_description.txt │ └── short_description.txt │ ├── sv-SE │ ├── full_description.txt │ └── short_description.txt │ ├── tr-TR │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ │ └── sevenInchScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ └── short_description.txt │ ├── uk │ ├── full_description.txt │ └── short_description.txt │ ├── vi │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ │ └── sevenInchScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ ├── short_description.txt │ └── title.txt │ ├── zh-CN │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ │ └── sevenInchScreenshots │ │ │ ├── 001.png │ │ │ ├── 002.png │ │ │ ├── 003.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ └── 008.png │ ├── short_description.txt │ └── title.txt │ └── zh-TW │ ├── full_description.txt │ └── short_description.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── Android-Exif-Extended │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.txt │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── it │ │ └── sephiroth │ │ └── android │ │ └── library │ │ └── exif2 │ │ ├── CountedDataInputStream.java │ │ ├── ExifData.java │ │ ├── ExifInterface.java │ │ ├── ExifInvalidFormatException.java │ │ ├── ExifOutputStream.java │ │ ├── ExifParser.java │ │ ├── ExifReader.java │ │ ├── ExifTag.java │ │ ├── ExifUtil.java │ │ ├── IfdData.java │ │ ├── IfdId.java │ │ ├── JpegHeader.java │ │ ├── OrderedDataOutputStream.java │ │ ├── Rational.java │ │ └── StreamUtils.java ├── exif-0.6.22 │ ├── ABOUT-NLS │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── aclocal.m4 │ ├── ar-lib │ ├── auto-m4 │ │ ├── gettext.m4 │ │ ├── iconv.m4 │ │ ├── lib-ld.m4 │ │ ├── lib-link.m4 │ │ ├── lib-prefix.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── nls.m4 │ │ ├── po.m4 │ │ └── progtest.m4 │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.rpath │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── exif.1 │ ├── exif.spec │ ├── exif.spec.in │ ├── exif │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── actions.c │ │ ├── actions.h │ │ ├── exif-i18n.c │ │ ├── exif-i18n.h │ │ ├── main.c │ │ ├── utils.c │ │ └── utils.h │ ├── install-sh │ ├── libjpeg │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── jpeg-data.c │ │ ├── jpeg-data.h │ │ ├── jpeg-marker.c │ │ └── jpeg-marker.h │ ├── ltmain.sh │ ├── m4m │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── gp-byteorder.m4 │ │ ├── gp-check-library.m4 │ │ ├── gp-check-shell-environment.m4 │ │ ├── gp-config-msg.m4 │ │ ├── gp-documentation.m4 │ │ ├── gp-gettext-hack.m4 │ │ ├── gp-packaging.m4 │ │ ├── gp-references.m4 │ │ └── stdint.m4 │ ├── missing │ ├── mkinstalldirs │ ├── po │ │ ├── Makefile.in.in │ │ ├── Makevars │ │ ├── POTFILES.in │ │ ├── Rules-quot │ │ ├── ast.gmo │ │ ├── ast.po │ │ ├── boldquot.sed │ │ ├── cs.gmo │ │ ├── cs.po │ │ ├── da.gmo │ │ ├── da.po │ │ ├── de.gmo │ │ ├── de.po │ │ ├── en@boldquot.header │ │ ├── en@quot.header │ │ ├── eo.gmo │ │ ├── eo.po │ │ ├── es.gmo │ │ ├── es.po │ │ ├── exif.pot │ │ ├── fi.gmo │ │ ├── fi.po │ │ ├── fr.gmo │ │ ├── fr.po │ │ ├── fur.gmo │ │ ├── fur.po │ │ ├── gl.gmo │ │ ├── gl.po │ │ ├── hr.gmo │ │ ├── hr.po │ │ ├── id.gmo │ │ ├── id.po │ │ ├── insert-header.sin │ │ ├── is.gmo │ │ ├── is.po │ │ ├── it.gmo │ │ ├── it.po │ │ ├── ja.gmo │ │ ├── ja.po │ │ ├── ko.gmo │ │ ├── ko.po │ │ ├── lv.gmo │ │ ├── lv.po │ │ ├── ms.gmo │ │ ├── ms.po │ │ ├── nl.gmo │ │ ├── nl.po │ │ ├── pl.gmo │ │ ├── pl.po │ │ ├── pt.gmo │ │ ├── pt.po │ │ ├── pt_BR.gmo │ │ ├── pt_BR.po │ │ ├── quot.sed │ │ ├── remove-potcdate.sin │ │ ├── ro.gmo │ │ ├── ro.po │ │ ├── ru.gmo │ │ ├── ru.po │ │ ├── sk.gmo │ │ ├── sk.po │ │ ├── sr.gmo │ │ ├── sr.po │ │ ├── stamp-po │ │ ├── sv.gmo │ │ ├── sv.po │ │ ├── tr.gmo │ │ ├── tr.po │ │ ├── uk.gmo │ │ ├── uk.po │ │ ├── vi.gmo │ │ ├── vi.po │ │ ├── zh_CN.gmo │ │ └── zh_CN.po │ ├── test-driver │ └── test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── check-add-tags.sh │ │ ├── check-create-tags.sh │ │ ├── check-help.sh │ │ ├── check-init-mandatory-tags.sh │ │ ├── check-no-seek.sh │ │ ├── check-param-validity.sh │ │ ├── check-required-file.sh │ │ ├── check-show-description.sh │ │ ├── check-show-tag.sh │ │ ├── check-tag-description.sh │ │ ├── check-thumbnail.sh │ │ ├── check-vars.sh.in │ │ ├── check-version.sh │ │ └── testdata │ │ └── no-exif.jpg ├── exiv2-0.28.5 │ ├── .clang-format │ ├── .git-blame-ignore-revs │ ├── .github │ │ ├── CODEOWNERS │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ ├── codeql-queries │ │ │ ├── exiv2-code-scanning.qls │ │ │ └── exiv2-cpp-queries │ │ │ │ ├── null_iterator_deref.qhelp │ │ │ │ ├── null_iterator_deref.ql │ │ │ │ ├── qlpack.yml │ │ │ │ ├── signed_shift.ql │ │ │ │ ├── unsafe_vector_access.qhelp │ │ │ │ └── unsafe_vector_access.ql │ │ ├── codeql │ │ │ └── codeql-config.yml │ │ ├── dependabot.yml │ │ └── workflows │ │ │ ├── cifuzz.yml │ │ │ ├── codeql-analysis.yml │ │ │ ├── on_PR_linux_fuzz.yml │ │ │ ├── on_PR_linux_matrix.yml │ │ │ ├── on_PR_linux_special_builds.yml │ │ │ ├── on_PR_linux_staticAnalysis.yml │ │ │ ├── on_PR_mac_matrix.yml │ │ │ ├── on_PR_mac_special_builds.yml │ │ │ ├── on_PR_meson.yaml │ │ │ ├── on_PR_windows_matrix.yml │ │ │ ├── on_push_BasicWinLinMac.yml │ │ │ ├── on_push_clang_format.yml │ │ │ └── release.yml │ ├── .gitignore │ ├── .mergify.yml │ ├── .pvsconfig │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── CMakePresets.json │ ├── CODING_GUIDELINES.md │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── GIT_GUIDELINES.md │ ├── LICENSE.txt │ ├── README-CONAN.md │ ├── README-SAMPLES.md │ ├── README-meson │ ├── README.md │ ├── SECURITY.md │ ├── WORK-IN-PROGRESS │ ├── app │ │ ├── CMakeLists.txt │ │ ├── actions.cpp │ │ ├── actions.hpp │ │ ├── app_utils.cpp │ │ ├── app_utils.hpp │ │ ├── exiv2.cpp │ │ ├── exiv2app.hpp │ │ ├── getopt.cpp │ │ ├── getopt.hpp │ │ └── wmain.cpp │ ├── ci │ │ ├── backup │ │ │ ├── appveyor.yml │ │ │ ├── appveyor_all_vs_versions.yml │ │ │ └── appveyor_mingw_cygwin.yml │ │ ├── install_dependencies.sh │ │ └── test_build.py │ ├── cmake │ │ ├── Doxyfile.in │ │ ├── FindBrotli.cmake │ │ ├── FindFilesystem.cmake │ │ ├── Findinih.cmake │ │ ├── JoinPaths.cmake │ │ ├── compilerFlags.cmake │ │ ├── compilerFlagsExiv2.cmake │ │ ├── config.h.cmake │ │ ├── exiv2.pc.in │ │ ├── exiv2Config.cmake.in │ │ ├── exiv2_uninstall.cmake │ │ ├── findDependencies.cmake │ │ ├── gcovr.cmake │ │ ├── generateConfigFile.cmake │ │ ├── generateDoc.cmake │ │ ├── mainSetup.cmake │ │ ├── msvc_conan_profiles │ │ │ ├── msvc2008Debug32 │ │ │ ├── msvc2008Debug64 │ │ │ ├── msvc2008Release32 │ │ │ ├── msvc2008Release64 │ │ │ ├── msvc2010Debug32 │ │ │ ├── msvc2010Debug64 │ │ │ ├── msvc2010Release32 │ │ │ ├── msvc2010Release64 │ │ │ ├── msvc2012Debug32 │ │ │ ├── msvc2012Debug64 │ │ │ ├── msvc2012Release32 │ │ │ ├── msvc2012Release64 │ │ │ ├── msvc2013Debug32 │ │ │ ├── msvc2013Debug64 │ │ │ ├── msvc2013Release32 │ │ │ ├── msvc2013Release64 │ │ │ ├── msvc2015Debug32 │ │ │ ├── msvc2015Debug64 │ │ │ ├── msvc2015Release32 │ │ │ ├── msvc2015Release64 │ │ │ ├── msvc2017Debug32 │ │ │ ├── msvc2017Debug64 │ │ │ ├── msvc2017Release32 │ │ │ ├── msvc2017Release64 │ │ │ ├── msvc2019Debug │ │ │ ├── msvc2019Debug32 │ │ │ ├── msvc2019Debug64 │ │ │ ├── msvc2019Release │ │ │ ├── msvc2019Release32 │ │ │ └── msvc2019Release64 │ │ ├── packaging.cmake │ │ ├── printSummary.cmake │ │ └── toolchain │ │ │ └── Ubuntu20_04_mingw-w64-x86_64.cmake │ ├── codecov.yml │ ├── conanfile.py │ ├── doc │ │ ├── COPYING-XMPSDK │ │ ├── ChangeLog │ │ ├── README-XMP │ │ ├── cmd.txt │ │ ├── cmdxmp.txt │ │ ├── include │ │ │ ├── ascending.png │ │ │ ├── blank.png │ │ │ ├── descending.png │ │ │ ├── exiv2-components.png │ │ │ ├── sortabletable.css │ │ │ └── sortabletable.js │ │ ├── index.html │ │ ├── readme-pvs-studio.md │ │ └── templates │ │ │ ├── Makefile │ │ │ ├── __CrwMapping__ │ │ │ ├── __doctype__ │ │ │ ├── __header2__ │ │ │ ├── __index1__ │ │ │ ├── __index2__ │ │ │ ├── __index3__ │ │ │ ├── __intro__ │ │ │ ├── __maintitle__ │ │ │ ├── __makernotes__ │ │ │ ├── crw-mapping.html.in │ │ │ ├── exiv2.dot │ │ │ ├── gen.py │ │ │ ├── getting-started.html.in │ │ │ ├── gpl-license.html.in │ │ │ ├── iptc.py │ │ │ ├── iptc.xsl │ │ │ ├── makernote.html.in │ │ │ ├── tags-canon.html.in │ │ │ ├── tags-casio.html.in │ │ │ ├── tags-exif.html.in │ │ │ ├── tags-fujifilm.html.in │ │ │ ├── tags-iptc.html.in │ │ │ ├── tags-minolta.html.in │ │ │ ├── tags-nikon.html.in │ │ │ ├── tags-olympus.html.in │ │ │ ├── tags-panasonic.html.in │ │ │ ├── tags-pentax.html.in │ │ │ ├── tags-samsung.html.in │ │ │ ├── tags-sigma.html.in │ │ │ ├── tags-sony.html.in │ │ │ ├── tags-xmp-GPano.html.in │ │ │ ├── tags-xmp-MP.html.in │ │ │ ├── tags-xmp-MPRI.html.in │ │ │ ├── tags-xmp-MPReg.html.in │ │ │ ├── tags-xmp-MicrosoftPhoto.html.in │ │ │ ├── tags-xmp-acdsee.html.in │ │ │ ├── tags-xmp-aux.html.in │ │ │ ├── tags-xmp-crs.html.in │ │ │ ├── tags-xmp-crss.html.in │ │ │ ├── tags-xmp-dc.html.in │ │ │ ├── tags-xmp-dcterms.html.in │ │ │ ├── tags-xmp-digiKam.html.in │ │ │ ├── tags-xmp-dwc.html.in │ │ │ ├── tags-xmp-exif.html.in │ │ │ ├── tags-xmp-exifEX.html.in │ │ │ ├── tags-xmp-expressionmedia.html.in │ │ │ ├── tags-xmp-iptc.html.in │ │ │ ├── tags-xmp-iptcExt.html.in │ │ │ ├── tags-xmp-kipi.html.in │ │ │ ├── tags-xmp-lr.html.in │ │ │ ├── tags-xmp-mediapro.html.in │ │ │ ├── tags-xmp-mwg-kw.html.in │ │ │ ├── tags-xmp-mwg-rs.html.in │ │ │ ├── tags-xmp-pdf.html.in │ │ │ ├── tags-xmp-photoshop.html.in │ │ │ ├── tags-xmp-plus.html.in │ │ │ ├── tags-xmp-tiff.html.in │ │ │ ├── tags-xmp-xmp.html.in │ │ │ ├── tags-xmp-xmpBJ.html.in │ │ │ ├── tags-xmp-xmpDM.html.in │ │ │ ├── tags-xmp-xmpMM.html.in │ │ │ ├── tags-xmp-xmpRights.html.in │ │ │ ├── tags-xmp-xmpTPg.html.in │ │ │ ├── tags.py │ │ │ ├── tags.xsl │ │ │ ├── xmp.py │ │ │ └── xmp.xsl │ ├── em.txt │ ├── exiv2.md │ ├── exiv2.png │ ├── include │ │ ├── exiv2 │ │ │ ├── asfvideo.hpp │ │ │ ├── basicio.hpp │ │ │ ├── bmffimage.hpp │ │ │ ├── bmpimage.hpp │ │ │ ├── config.h │ │ │ ├── convert.hpp │ │ │ ├── cr2image.hpp │ │ │ ├── crwimage.hpp │ │ │ ├── datasets.hpp │ │ │ ├── easyaccess.hpp │ │ │ ├── epsimage.hpp │ │ │ ├── error.hpp │ │ │ ├── exif.hpp │ │ │ ├── exiv2.hpp │ │ │ ├── futils.hpp │ │ │ ├── gifimage.hpp │ │ │ ├── http.hpp │ │ │ ├── image.hpp │ │ │ ├── image_types.hpp │ │ │ ├── iptc.hpp │ │ │ ├── jp2image.hpp │ │ │ ├── jpgimage.hpp │ │ │ ├── matroskavideo.hpp │ │ │ ├── metadatum.hpp │ │ │ ├── mrwimage.hpp │ │ │ ├── orfimage.hpp │ │ │ ├── pgfimage.hpp │ │ │ ├── photoshop.hpp │ │ │ ├── pngimage.hpp │ │ │ ├── preview.hpp │ │ │ ├── properties.hpp │ │ │ ├── psdimage.hpp │ │ │ ├── quicktimevideo.hpp │ │ │ ├── rafimage.hpp │ │ │ ├── riffvideo.hpp │ │ │ ├── rw2image.hpp │ │ │ ├── slice.hpp │ │ │ ├── tags.hpp │ │ │ ├── tgaimage.hpp │ │ │ ├── tiffimage.hpp │ │ │ ├── types.hpp │ │ │ ├── value.hpp │ │ │ ├── version.hpp │ │ │ ├── webpimage.hpp │ │ │ ├── xmp_exiv2.hpp │ │ │ └── xmpsidecar.hpp │ │ └── meson.build │ ├── man │ │ └── man1 │ │ │ └── exiv2.1 │ ├── matrix-standard-vector-logo-xs.png │ ├── meson.build │ ├── meson_options.txt │ ├── releasenotes │ │ ├── Cygwin │ │ │ └── ReadMe.txt │ │ ├── Darwin │ │ │ └── ReadMe.txt │ │ ├── Linux │ │ │ └── ReadMe.txt │ │ ├── MSVC │ │ │ └── ReadMe.txt │ │ ├── MinGW │ │ │ └── ReadMe.txt │ │ ├── Unix │ │ │ └── ReadMe.txt │ │ └── releasenotes.txt │ ├── samples │ │ ├── CMakeLists.txt │ │ ├── addmoddel.cpp │ │ ├── conntest.cpp │ │ ├── convert-test.cpp │ │ ├── easyaccess-test.cpp │ │ ├── exifcomment.cpp │ │ ├── exifdata-test.cpp │ │ ├── exifdata.cpp │ │ ├── exifprint.cpp │ │ ├── exifvalue.cpp │ │ ├── geotag.cpp │ │ ├── getopt-test.cpp │ │ ├── ini-test.cpp │ │ ├── ini-test.ini │ │ ├── iotest.cpp │ │ ├── iptceasy.cpp │ │ ├── iptcprint.cpp │ │ ├── iptctest.cpp │ │ ├── jpegparsetest.cpp │ │ ├── key-test.cpp │ │ ├── largeiptc-test.cpp │ │ ├── metacopy.cpp │ │ ├── metacopy.hpp │ │ ├── mmap-test.cpp │ │ ├── mrwthumb.cpp │ │ ├── path-test.cpp │ │ ├── prevtest.cpp │ │ ├── remotetest.cpp │ │ ├── stringto-test.cpp │ │ ├── taglist.cpp │ │ ├── tiff-test.cpp │ │ ├── write-test.cpp │ │ ├── write2-test.cpp │ │ ├── xmpdump.cpp │ │ ├── xmpparse.cpp │ │ ├── xmpparser-test.cpp │ │ ├── xmpprint.cpp │ │ └── xmpsample.cpp │ ├── src │ │ ├── CMakeLists.txt │ │ ├── TODO │ │ ├── asfvideo.cpp │ │ ├── basicio.cpp │ │ ├── bmffimage.cpp │ │ ├── bmpimage.cpp │ │ ├── canonmn_int.cpp │ │ ├── canonmn_int.hpp │ │ ├── casiomn_int.cpp │ │ ├── casiomn_int.hpp │ │ ├── convert.cpp │ │ ├── cr2header_int.cpp │ │ ├── cr2header_int.hpp │ │ ├── cr2image.cpp │ │ ├── crwimage.cpp │ │ ├── crwimage_int.cpp │ │ ├── crwimage_int.hpp │ │ ├── datasets.cpp │ │ ├── doxygen.hpp.in │ │ ├── easyaccess.cpp │ │ ├── enforce.hpp │ │ ├── epsimage.cpp │ │ ├── error.cpp │ │ ├── exif.cpp │ │ ├── fff.h │ │ ├── fujimn_int.cpp │ │ ├── fujimn_int.hpp │ │ ├── futils.cpp │ │ ├── gifimage.cpp │ │ ├── helper_functions.cpp │ │ ├── helper_functions.hpp │ │ ├── http.cpp │ │ ├── i18n.h │ │ ├── image.cpp │ │ ├── image_int.cpp │ │ ├── image_int.hpp │ │ ├── iptc.cpp │ │ ├── jp2image.cpp │ │ ├── jp2image_int.cpp │ │ ├── jp2image_int.hpp │ │ ├── jpgimage.cpp │ │ ├── makernote_int.cpp │ │ ├── makernote_int.hpp │ │ ├── matroskavideo.cpp │ │ ├── meson.build │ │ ├── metadatum.cpp │ │ ├── minoltamn_int.cpp │ │ ├── minoltamn_int.hpp │ │ ├── mrwimage.cpp │ │ ├── nikonmn_int.cpp │ │ ├── nikonmn_int.hpp │ │ ├── olympusmn_int.cpp │ │ ├── olympusmn_int.hpp │ │ ├── orfimage.cpp │ │ ├── orfimage_int.cpp │ │ ├── orfimage_int.hpp │ │ ├── panasonicmn_int.cpp │ │ ├── panasonicmn_int.hpp │ │ ├── pentaxmn_int.cpp │ │ ├── pentaxmn_int.hpp │ │ ├── pgfimage.cpp │ │ ├── photoshop.cpp │ │ ├── pngchunk_int.cpp │ │ ├── pngchunk_int.hpp │ │ ├── pngimage.cpp │ │ ├── preview.cpp │ │ ├── properties.cpp │ │ ├── psdimage.cpp │ │ ├── quicktimevideo.cpp │ │ ├── rafimage.cpp │ │ ├── riffvideo.cpp │ │ ├── rw2image.cpp │ │ ├── rw2image_int.cpp │ │ ├── rw2image_int.hpp │ │ ├── safe_op.hpp │ │ ├── samsungmn_int.cpp │ │ ├── samsungmn_int.hpp │ │ ├── sigmamn_int.cpp │ │ ├── sigmamn_int.hpp │ │ ├── sonymn_int.cpp │ │ ├── sonymn_int.hpp │ │ ├── tags.cpp │ │ ├── tags_int.cpp │ │ ├── tags_int.hpp │ │ ├── tgaimage.cpp │ │ ├── tiffcomposite_int.cpp │ │ ├── tiffcomposite_int.hpp │ │ ├── tifffwd_int.hpp │ │ ├── tiffimage.cpp │ │ ├── tiffimage_int.cpp │ │ ├── tiffimage_int.hpp │ │ ├── tiffvisitor_int.cpp │ │ ├── tiffvisitor_int.hpp │ │ ├── types.cpp │ │ ├── tzfile.h │ │ ├── utils.cpp │ │ ├── utils.hpp │ │ ├── value.cpp │ │ ├── version.cpp │ │ ├── webpimage.cpp │ │ ├── xmp.cpp │ │ └── xmpsidecar.cpp │ ├── subprojects │ │ ├── .gitignore │ │ ├── expat.wrap │ │ ├── google-brotli.wrap │ │ ├── gtest.wrap │ │ ├── inih.wrap │ │ └── zlib.wrap │ ├── unitTests │ │ ├── CMakeLists.txt │ │ ├── meson.build │ │ ├── test_DateValue.cpp │ │ ├── test_Error.cpp │ │ ├── test_FileIo.cpp │ │ ├── test_ImageFactory.cpp │ │ ├── test_IptcKey.cpp │ │ ├── test_LangAltValueRead.cpp │ │ ├── test_Photoshop.cpp │ │ ├── test_TimeValue.cpp │ │ ├── test_XmpKey.cpp │ │ ├── test_asfvideo.cpp │ │ ├── test_basicio.cpp │ │ ├── test_bmpimage.cpp │ │ ├── test_cr2header_int.cpp │ │ ├── test_datasets.cpp │ │ ├── test_enforce.cpp │ │ ├── test_futils.cpp │ │ ├── test_helper_functions.cpp │ │ ├── test_image_int.cpp │ │ ├── test_jp2image.cpp │ │ ├── test_jp2image_int.cpp │ │ ├── test_matroskavideo.cpp │ │ ├── test_pngimage.cpp │ │ ├── test_riffVideo.cpp │ │ ├── test_safe_op.cpp │ │ ├── test_slice.cpp │ │ ├── test_tiffheader.cpp │ │ ├── test_types.cpp │ │ └── test_utils.cpp │ └── xmpsdk │ │ ├── CMakeLists.txt │ │ ├── include │ │ ├── MD5.h │ │ ├── TXMPIterator.hpp │ │ ├── TXMPMeta.hpp │ │ ├── TXMPUtils.hpp │ │ ├── XMP.incl_cpp │ │ ├── XMPSDK.hpp │ │ ├── XMP_Const.h │ │ ├── XMP_Environment.h │ │ ├── XMP_Version.h │ │ └── client-glue │ │ │ ├── TXMPIterator.incl_cpp │ │ │ ├── TXMPMeta.incl_cpp │ │ │ ├── TXMPUtils.incl_cpp │ │ │ ├── WXMPFiles.hpp │ │ │ ├── WXMPIterator.hpp │ │ │ ├── WXMPMeta.hpp │ │ │ ├── WXMPUtils.hpp │ │ │ └── WXMP_Common.hpp │ │ ├── meson.build │ │ └── src │ │ ├── ExpatAdapter.cpp │ │ ├── ExpatAdapter.hpp │ │ ├── MD5.cpp │ │ ├── ParseRDF.cpp │ │ ├── UnicodeConversions.cpp │ │ ├── UnicodeConversions.hpp │ │ ├── UnicodeInlines.incl_cpp │ │ ├── WXMPIterator.cpp │ │ ├── WXMPMeta.cpp │ │ ├── WXMPUtils.cpp │ │ ├── XMLParserAdapter.hpp │ │ ├── XML_Node.cpp │ │ ├── XMPCore_Impl.cpp │ │ ├── XMPCore_Impl.hpp │ │ ├── XMPIterator.cpp │ │ ├── XMPIterator.hpp │ │ ├── XMPMeta-GetSet.cpp │ │ ├── XMPMeta-Parse.cpp │ │ ├── XMPMeta-Serialize.cpp │ │ ├── XMPMeta.cpp │ │ ├── XMPMeta.hpp │ │ ├── XMPUtils-FileInfo.cpp │ │ ├── XMPUtils.cpp │ │ ├── XMPUtils.hpp │ │ └── XMP_BuildInfo.h ├── expat-2.7.1 │ ├── AUTHORS │ ├── CMake.README │ ├── CMakeLists.txt │ ├── COPYING │ ├── Changes │ ├── ConfigureChecks.cmake │ ├── Makefile.am │ ├── Makefile.in │ ├── README.md │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── buildconf.sh │ ├── cmake │ │ ├── autotools │ │ │ ├── expat-config-version.cmake.in │ │ │ ├── expat-noconfig__linux.cmake.in │ │ │ ├── expat-noconfig__macos.cmake.in │ │ │ ├── expat-noconfig__windows.cmake.in │ │ │ ├── expat-package-init.cmake │ │ │ └── expat.cmake │ │ ├── expat-config.cmake.in │ │ └── mingw-toolchain.cmake │ ├── configure │ ├── configure.ac │ ├── conftools │ │ ├── ar-lib │ │ ├── ax-append-compile-flags.m4 │ │ ├── ax-append-flag.m4 │ │ ├── ax-append-link-flags.m4 │ │ ├── ax-check-compile-flag.m4 │ │ ├── ax-check-link-flag.m4 │ │ ├── ax-cxx-compile-stdcxx-11.m4 │ │ ├── ax-cxx-compile-stdcxx.m4 │ │ ├── ax-require-defined.m4 │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── expat.m4 │ │ ├── expatcfg-compiler-supports-visibility.m4 │ │ ├── get-version.sh │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── missing │ │ └── test-driver │ ├── doc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ok.min.css │ │ ├── reference.html │ │ ├── style.css │ │ ├── xmlwf.1 │ │ └── xmlwf.xml │ ├── examples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── element_declarations.c │ │ ├── elements.c │ │ └── outline.c │ ├── expat.pc.cmake │ ├── expat.pc.in │ ├── expat_config.h │ ├── expat_config.h.cmake │ ├── expat_config.h.in │ ├── fix-xmltest-log.sh │ ├── fuzz │ │ ├── xml_lpm_fuzzer.cpp │ │ ├── xml_lpm_fuzzer.proto │ │ ├── xml_parse_fuzzer.c │ │ └── xml_parsebuffer_fuzzer.c │ ├── lib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ascii.h │ │ ├── asciitab.h │ │ ├── expat.h │ │ ├── expat_external.h │ │ ├── iasciitab.h │ │ ├── internal.h │ │ ├── latin1tab.h │ │ ├── libexpat.def.cmake │ │ ├── nametab.h │ │ ├── siphash.h │ │ ├── utf8tab.h │ │ ├── winconfig.h │ │ ├── xmlparse.c │ │ ├── xmlrole.c │ │ ├── xmlrole.h │ │ ├── xmltok.c │ │ ├── xmltok.h │ │ ├── xmltok_impl.c │ │ ├── xmltok_impl.h │ │ └── xmltok_ns.c │ ├── m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── run.sh.in │ ├── test-driver-wrapper.sh │ ├── tests │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.md │ │ ├── acc_tests.c │ │ ├── acc_tests.h │ │ ├── acc_tests_cxx.cpp │ │ ├── alloc_tests.c │ │ ├── alloc_tests.h │ │ ├── alloc_tests_cxx.cpp │ │ ├── basic_tests.c │ │ ├── basic_tests.h │ │ ├── basic_tests_cxx.cpp │ │ ├── benchmark │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.txt │ │ │ └── benchmark.c │ │ ├── chardata.c │ │ ├── chardata.h │ │ ├── chardata_cxx.cpp │ │ ├── common.c │ │ ├── common.h │ │ ├── common_cxx.cpp │ │ ├── dummy.c │ │ ├── dummy.h │ │ ├── dummy_cxx.cpp │ │ ├── handlers.c │ │ ├── handlers.h │ │ ├── handlers_cxx.cpp │ │ ├── memcheck.c │ │ ├── memcheck.h │ │ ├── memcheck_cxx.cpp │ │ ├── minicheck.c │ │ ├── minicheck.h │ │ ├── minicheck_cxx.cpp │ │ ├── misc_tests.c │ │ ├── misc_tests.h │ │ ├── misc_tests_cxx.cpp │ │ ├── ns_tests.c │ │ ├── ns_tests.h │ │ ├── ns_tests_cxx.cpp │ │ ├── nsalloc_tests.c │ │ ├── nsalloc_tests.h │ │ ├── nsalloc_tests_cxx.cpp │ │ ├── runtests.c │ │ ├── runtests_cxx.cpp │ │ ├── structdata.c │ │ ├── structdata.h │ │ ├── structdata_cxx.cpp │ │ ├── udiffer.py │ │ ├── xmltest.log.expected │ │ └── xmltest.sh │ ├── win32 │ │ ├── MANIFEST.txt │ │ ├── README.txt │ │ ├── build_expat_iss.bat │ │ ├── expat.iss │ │ └── version.rc.cmake │ └── xmlwf │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── codepage.c │ │ ├── codepage.h │ │ ├── ct.c │ │ ├── filemap.h │ │ ├── readfilemap.c │ │ ├── unixfilemap.c │ │ ├── win32filemap.c │ │ ├── xmlfile.c │ │ ├── xmlfile.h │ │ ├── xmlmime.c │ │ ├── xmlmime.h │ │ ├── xmltchar.h │ │ ├── xmlwf.c │ │ ├── xmlwf_helpgen.py │ │ └── xmlwf_helpgen.sh ├── ffmpeg-4.4 │ ├── .mailmap │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── COPYING.GPLv2 │ ├── COPYING.GPLv3 │ ├── COPYING.LGPLv2.1 │ ├── COPYING.LGPLv3 │ ├── CREDITS │ ├── Changelog │ ├── INSTALL.md │ ├── LICENSE.md │ ├── MAINTAINERS │ ├── Makefile │ ├── README.md │ ├── RELEASE │ ├── RELEASE_NOTES │ ├── VERSION │ ├── compat │ │ ├── aix │ │ │ └── math.h │ │ ├── atomics │ │ │ ├── dummy │ │ │ │ └── stdatomic.h │ │ │ ├── gcc │ │ │ │ └── stdatomic.h │ │ │ ├── pthread │ │ │ │ ├── stdatomic.c │ │ │ │ └── stdatomic.h │ │ │ ├── suncc │ │ │ │ └── stdatomic.h │ │ │ └── win32 │ │ │ │ └── stdatomic.h │ │ ├── cuda │ │ │ ├── cuda_runtime.h │ │ │ ├── dynlink_loader.h │ │ │ └── ptx2c.sh │ │ ├── dispatch_semaphore │ │ │ └── semaphore.h │ │ ├── djgpp │ │ │ ├── math.c │ │ │ └── math.h │ │ ├── float │ │ │ ├── float.h │ │ │ └── limits.h │ │ ├── getopt.c │ │ ├── msvcrt │ │ │ ├── snprintf.c │ │ │ └── snprintf.h │ │ ├── os2threads.h │ │ ├── solaris │ │ │ └── make_sunver.pl │ │ ├── strtod.c │ │ ├── va_copy.h │ │ ├── w32dlfcn.h │ │ ├── w32pthreads.h │ │ └── windows │ │ │ ├── makedef │ │ │ └── mslink │ ├── configure │ ├── ffbuild │ │ ├── arch.mak │ │ ├── common.mak │ │ ├── library.mak │ │ ├── libversion.sh │ │ ├── pkgconfig_generate.sh │ │ └── version.sh │ ├── fftools │ │ ├── Makefile │ │ ├── cmdutils.c │ │ ├── cmdutils.h │ │ ├── ffmpeg.c │ │ ├── ffmpeg.h │ │ ├── ffmpeg_filter.c │ │ ├── ffmpeg_hw.c │ │ ├── ffmpeg_opt.c │ │ ├── ffmpeg_qsv.c │ │ ├── ffmpeg_videotoolbox.c │ │ ├── ffplay.c │ │ └── ffprobe.c │ ├── libavcodec │ │ ├── 012v.c │ │ ├── 4xm.c │ │ ├── 8bps.c │ │ ├── 8svx.c │ │ ├── Makefile │ │ ├── a64colors.h │ │ ├── a64multienc.c │ │ ├── a64tables.h │ │ ├── aac.h │ │ ├── aac_ac3_parser.c │ │ ├── aac_ac3_parser.h │ │ ├── aac_adtstoasc_bsf.c │ │ ├── aac_defines.h │ │ ├── aac_parser.c │ │ ├── aaccoder.c │ │ ├── aaccoder_trellis.h │ │ ├── aaccoder_twoloop.h │ │ ├── aacdec.c │ │ ├── aacdec_fixed.c │ │ ├── aacdec_template.c │ │ ├── aacdectab.h │ │ ├── aacenc.c │ │ ├── aacenc.h │ │ ├── aacenc_is.c │ │ ├── aacenc_is.h │ │ ├── aacenc_ltp.c │ │ ├── aacenc_ltp.h │ │ ├── aacenc_pred.c │ │ ├── aacenc_pred.h │ │ ├── aacenc_quantization.h │ │ ├── aacenc_quantization_misc.h │ │ ├── aacenc_tns.c │ │ ├── aacenc_tns.h │ │ ├── aacenc_utils.h │ │ ├── aacenctab.c │ │ ├── aacenctab.h │ │ ├── aacps.c │ │ ├── aacps.h │ │ ├── aacps_common.c │ │ ├── aacps_fixed.c │ │ ├── aacps_fixed_tablegen.c │ │ ├── aacps_fixed_tablegen.h │ │ ├── aacps_float.c │ │ ├── aacps_tablegen.c │ │ ├── aacps_tablegen.h │ │ ├── aacps_tablegen_template.c │ │ ├── aacpsdata.c │ │ ├── aacpsdsp.h │ │ ├── aacpsdsp_fixed.c │ │ ├── aacpsdsp_float.c │ │ ├── aacpsdsp_template.c │ │ ├── aacpsy.c │ │ ├── aacsbr.c │ │ ├── aacsbr.h │ │ ├── aacsbr_fixed.c │ │ ├── aacsbr_template.c │ │ ├── aacsbrdata.h │ │ ├── aactab.c │ │ ├── aactab.h │ │ ├── aandcttab.c │ │ ├── aandcttab.h │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── aacpsdsp_init_aarch64.c │ │ │ ├── aacpsdsp_neon.S │ │ │ ├── asm-offsets.h │ │ │ ├── cabac.h │ │ │ ├── fft_init_aarch64.c │ │ │ ├── fft_neon.S │ │ │ ├── fmtconvert_init.c │ │ │ ├── fmtconvert_neon.S │ │ │ ├── h264chroma_init_aarch64.c │ │ │ ├── h264cmc_neon.S │ │ │ ├── h264dsp_init_aarch64.c │ │ │ ├── h264dsp_neon.S │ │ │ ├── h264idct_neon.S │ │ │ ├── h264pred_init.c │ │ │ ├── h264pred_neon.S │ │ │ ├── h264qpel_init_aarch64.c │ │ │ ├── h264qpel_neon.S │ │ │ ├── hevcdsp_idct_neon.S │ │ │ ├── hevcdsp_init_aarch64.c │ │ │ ├── hevcdsp_sao_neon.S │ │ │ ├── hpeldsp_init_aarch64.c │ │ │ ├── hpeldsp_neon.S │ │ │ ├── idct.h │ │ │ ├── idctdsp_init_aarch64.c │ │ │ ├── mdct_neon.S │ │ │ ├── mpegaudiodsp_init.c │ │ │ ├── mpegaudiodsp_neon.S │ │ │ ├── neon.S │ │ │ ├── neontest.c │ │ │ ├── opusdsp_init.c │ │ │ ├── opusdsp_neon.S │ │ │ ├── pixblockdsp_init_aarch64.c │ │ │ ├── pixblockdsp_neon.S │ │ │ ├── rv40dsp_init_aarch64.c │ │ │ ├── sbrdsp_init_aarch64.c │ │ │ ├── sbrdsp_neon.S │ │ │ ├── simple_idct_neon.S │ │ │ ├── synth_filter_init.c │ │ │ ├── synth_filter_neon.S │ │ │ ├── vc1dsp_init_aarch64.c │ │ │ ├── videodsp.S │ │ │ ├── videodsp_init.c │ │ │ ├── vorbisdsp_init.c │ │ │ ├── vorbisdsp_neon.S │ │ │ ├── vp8dsp.h │ │ │ ├── vp8dsp_init_aarch64.c │ │ │ ├── vp8dsp_neon.S │ │ │ ├── vp9dsp_init.h │ │ │ ├── vp9dsp_init_10bpp_aarch64.c │ │ │ ├── vp9dsp_init_12bpp_aarch64.c │ │ │ ├── vp9dsp_init_16bpp_aarch64_template.c │ │ │ ├── vp9dsp_init_aarch64.c │ │ │ ├── vp9itxfm_16bpp_neon.S │ │ │ ├── vp9itxfm_neon.S │ │ │ ├── vp9lpf_16bpp_neon.S │ │ │ ├── vp9lpf_neon.S │ │ │ ├── vp9mc_16bpp_neon.S │ │ │ ├── vp9mc_aarch64.S │ │ │ └── vp9mc_neon.S │ │ ├── aasc.c │ │ ├── ac3.c │ │ ├── ac3.h │ │ ├── ac3_parser.c │ │ ├── ac3_parser.h │ │ ├── ac3_parser_internal.h │ │ ├── ac3dec.c │ │ ├── ac3dec.h │ │ ├── ac3dec_data.c │ │ ├── ac3dec_data.h │ │ ├── ac3dec_fixed.c │ │ ├── ac3dec_float.c │ │ ├── ac3dsp.c │ │ ├── ac3dsp.h │ │ ├── ac3enc.c │ │ ├── ac3enc.h │ │ ├── ac3enc_fixed.c │ │ ├── ac3enc_float.c │ │ ├── ac3enc_template.c │ │ ├── ac3tab.c │ │ ├── ac3tab.h │ │ ├── acelp_filters.c │ │ ├── acelp_filters.h │ │ ├── acelp_pitch_delay.c │ │ ├── acelp_pitch_delay.h │ │ ├── acelp_vectors.c │ │ ├── acelp_vectors.h │ │ ├── adpcm.c │ │ ├── adpcm.h │ │ ├── adpcm_data.c │ │ ├── adpcm_data.h │ │ ├── adpcmenc.c │ │ ├── adts_header.c │ │ ├── adts_header.h │ │ ├── adts_parser.c │ │ ├── adts_parser.h │ │ ├── adx.c │ │ ├── adx.h │ │ ├── adx_parser.c │ │ ├── adxdec.c │ │ ├── adxenc.c │ │ ├── agm.c │ │ ├── aic.c │ │ ├── alac.c │ │ ├── alac_data.c │ │ ├── alac_data.h │ │ ├── alacdsp.c │ │ ├── alacdsp.h │ │ ├── alacenc.c │ │ ├── aliaspixdec.c │ │ ├── aliaspixenc.c │ │ ├── allcodecs.c │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── asm.h │ │ │ ├── blockdsp_alpha.c │ │ │ ├── hpeldsp_alpha.c │ │ │ ├── hpeldsp_alpha.h │ │ │ ├── hpeldsp_alpha_asm.S │ │ │ ├── idctdsp_alpha.c │ │ │ ├── idctdsp_alpha.h │ │ │ ├── idctdsp_alpha_asm.S │ │ │ ├── me_cmp_alpha.c │ │ │ ├── me_cmp_mvi_asm.S │ │ │ ├── mpegvideo_alpha.c │ │ │ ├── pixblockdsp_alpha.c │ │ │ ├── regdef.h │ │ │ └── simple_idct_alpha.c │ │ ├── alsdec.c │ │ ├── amfenc.c │ │ ├── amfenc.h │ │ ├── amfenc_h264.c │ │ ├── amfenc_hevc.c │ │ ├── amr.h │ │ ├── amrnbdata.h │ │ ├── amrnbdec.c │ │ ├── amrwbdata.h │ │ ├── amrwbdec.c │ │ ├── anm.c │ │ ├── ansi.c │ │ ├── apedec.c │ │ ├── apng.h │ │ ├── aptx.c │ │ ├── aptx.h │ │ ├── aptxdec.c │ │ ├── aptxenc.c │ │ ├── arbc.c │ │ ├── argo.c │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── aac.h │ │ │ ├── aacpsdsp_init_arm.c │ │ │ ├── aacpsdsp_neon.S │ │ │ ├── ac3dsp_arm.S │ │ │ ├── ac3dsp_armv6.S │ │ │ ├── ac3dsp_init_arm.c │ │ │ ├── ac3dsp_neon.S │ │ │ ├── asm-offsets.h │ │ │ ├── audiodsp_arm.h │ │ │ ├── audiodsp_init_arm.c │ │ │ ├── audiodsp_init_neon.c │ │ │ ├── audiodsp_neon.S │ │ │ ├── blockdsp_arm.h │ │ │ ├── blockdsp_init_arm.c │ │ │ ├── blockdsp_init_neon.c │ │ │ ├── blockdsp_neon.S │ │ │ ├── cabac.h │ │ │ ├── dca.h │ │ │ ├── fft_init_arm.c │ │ │ ├── fft_neon.S │ │ │ ├── fft_vfp.S │ │ │ ├── flacdsp_arm.S │ │ │ ├── flacdsp_init_arm.c │ │ │ ├── fmtconvert_init_arm.c │ │ │ ├── fmtconvert_neon.S │ │ │ ├── fmtconvert_vfp.S │ │ │ ├── g722dsp_init_arm.c │ │ │ ├── g722dsp_neon.S │ │ │ ├── h264chroma_init_arm.c │ │ │ ├── h264cmc_neon.S │ │ │ ├── h264dsp_init_arm.c │ │ │ ├── h264dsp_neon.S │ │ │ ├── h264idct_neon.S │ │ │ ├── h264pred_init_arm.c │ │ │ ├── h264pred_neon.S │ │ │ ├── h264qpel_init_arm.c │ │ │ ├── h264qpel_neon.S │ │ │ ├── hevcdsp_arm.h │ │ │ ├── hevcdsp_deblock_neon.S │ │ │ ├── hevcdsp_idct_neon.S │ │ │ ├── hevcdsp_init_arm.c │ │ │ ├── hevcdsp_init_neon.c │ │ │ ├── hevcdsp_qpel_neon.S │ │ │ ├── hevcdsp_sao_neon.S │ │ │ ├── hpeldsp_arm.S │ │ │ ├── hpeldsp_arm.h │ │ │ ├── hpeldsp_armv6.S │ │ │ ├── hpeldsp_init_arm.c │ │ │ ├── hpeldsp_init_armv6.c │ │ │ ├── hpeldsp_init_neon.c │ │ │ ├── hpeldsp_neon.S │ │ │ ├── idct.h │ │ │ ├── idctdsp_arm.S │ │ │ ├── idctdsp_arm.h │ │ │ ├── idctdsp_armv6.S │ │ │ ├── idctdsp_init_arm.c │ │ │ ├── idctdsp_init_armv5te.c │ │ │ ├── idctdsp_init_armv6.c │ │ │ ├── idctdsp_init_neon.c │ │ │ ├── idctdsp_neon.S │ │ │ ├── int_neon.S │ │ │ ├── jrevdct_arm.S │ │ │ ├── lossless_audiodsp_init_arm.c │ │ │ ├── lossless_audiodsp_neon.S │ │ │ ├── mathops.h │ │ │ ├── mdct_neon.S │ │ │ ├── mdct_vfp.S │ │ │ ├── me_cmp_armv6.S │ │ │ ├── me_cmp_init_arm.c │ │ │ ├── mlpdsp_armv5te.S │ │ │ ├── mlpdsp_armv6.S │ │ │ ├── mlpdsp_init_arm.c │ │ │ ├── mpegaudiodsp_fixed_armv6.S │ │ │ ├── mpegaudiodsp_init_arm.c │ │ │ ├── mpegvideo_arm.c │ │ │ ├── mpegvideo_arm.h │ │ │ ├── mpegvideo_armv5te.c │ │ │ ├── mpegvideo_armv5te_s.S │ │ │ ├── mpegvideo_neon.S │ │ │ ├── mpegvideoencdsp_armv6.S │ │ │ ├── mpegvideoencdsp_init_arm.c │ │ │ ├── neon.S │ │ │ ├── neontest.c │ │ │ ├── pixblockdsp_armv6.S │ │ │ ├── pixblockdsp_init_arm.c │ │ │ ├── pixblockdsp_neon.S │ │ │ ├── rdft_init_arm.c │ │ │ ├── rdft_neon.S │ │ │ ├── rv34dsp_init_arm.c │ │ │ ├── rv34dsp_neon.S │ │ │ ├── rv40dsp_init_arm.c │ │ │ ├── rv40dsp_neon.S │ │ │ ├── sbcdsp_armv6.S │ │ │ ├── sbcdsp_init_arm.c │ │ │ ├── sbcdsp_neon.S │ │ │ ├── sbrdsp_init_arm.c │ │ │ ├── sbrdsp_neon.S │ │ │ ├── simple_idct_arm.S │ │ │ ├── simple_idct_armv5te.S │ │ │ ├── simple_idct_armv6.S │ │ │ ├── simple_idct_neon.S │ │ │ ├── startcode.h │ │ │ ├── startcode_armv6.S │ │ │ ├── synth_filter_init_arm.c │ │ │ ├── synth_filter_neon.S │ │ │ ├── synth_filter_vfp.S │ │ │ ├── vc1dsp.h │ │ │ ├── vc1dsp_init_arm.c │ │ │ ├── vc1dsp_init_neon.c │ │ │ ├── vc1dsp_neon.S │ │ │ ├── videodsp_arm.h │ │ │ ├── videodsp_armv5te.S │ │ │ ├── videodsp_init_arm.c │ │ │ ├── videodsp_init_armv5te.c │ │ │ ├── vorbisdsp_init_arm.c │ │ │ ├── vorbisdsp_neon.S │ │ │ ├── vp3dsp_init_arm.c │ │ │ ├── vp3dsp_neon.S │ │ │ ├── vp56_arith.h │ │ │ ├── vp6dsp_init_arm.c │ │ │ ├── vp6dsp_neon.S │ │ │ ├── vp8.h │ │ │ ├── vp8_armv6.S │ │ │ ├── vp8dsp.h │ │ │ ├── vp8dsp_armv6.S │ │ │ ├── vp8dsp_init_arm.c │ │ │ ├── vp8dsp_init_armv6.c │ │ │ ├── vp8dsp_init_neon.c │ │ │ ├── vp8dsp_neon.S │ │ │ ├── vp9dsp_init.h │ │ │ ├── vp9dsp_init_10bpp_arm.c │ │ │ ├── vp9dsp_init_12bpp_arm.c │ │ │ ├── vp9dsp_init_16bpp_arm_template.c │ │ │ ├── vp9dsp_init_arm.c │ │ │ ├── vp9itxfm_16bpp_neon.S │ │ │ ├── vp9itxfm_neon.S │ │ │ ├── vp9lpf_16bpp_neon.S │ │ │ ├── vp9lpf_neon.S │ │ │ ├── vp9mc_16bpp_neon.S │ │ │ └── vp9mc_neon.S │ │ ├── ass.c │ │ ├── ass.h │ │ ├── ass_split.c │ │ ├── ass_split.h │ │ ├── assdec.c │ │ ├── assenc.c │ │ ├── asv.c │ │ ├── asv.h │ │ ├── asvdec.c │ │ ├── asvenc.c │ │ ├── atrac.c │ │ ├── atrac.h │ │ ├── atrac1.c │ │ ├── atrac1data.h │ │ ├── atrac3.c │ │ ├── atrac3data.h │ │ ├── atrac3plus.c │ │ ├── atrac3plus.h │ │ ├── atrac3plus_data.h │ │ ├── atrac3plusdec.c │ │ ├── atrac3plusdsp.c │ │ ├── atrac9dec.c │ │ ├── atrac9tab.h │ │ ├── atsc_a53.c │ │ ├── atsc_a53.h │ │ ├── audio_frame_queue.c │ │ ├── audio_frame_queue.h │ │ ├── audiodsp.c │ │ ├── audiodsp.h │ │ ├── audiotoolboxdec.c │ │ ├── audiotoolboxenc.c │ │ ├── aura.c │ │ ├── av1.h │ │ ├── av1_frame_merge_bsf.c │ │ ├── av1_frame_split_bsf.c │ │ ├── av1_metadata_bsf.c │ │ ├── av1_parse.c │ │ ├── av1_parse.h │ │ ├── av1_parser.c │ │ ├── av1dec.c │ │ ├── av1dec.h │ │ ├── avcodec.c │ │ ├── avcodec.h │ │ ├── avcodecres.rc │ │ ├── avdct.c │ │ ├── avdct.h │ │ ├── avfft.c │ │ ├── avfft.h │ │ ├── avpacket.c │ │ ├── avpicture.c │ │ ├── avr32 │ │ │ └── mathops.h │ │ ├── avrndec.c │ │ ├── avs.c │ │ ├── avs2_parser.c │ │ ├── avs3.h │ │ ├── avs3_parser.c │ │ ├── avuidec.c │ │ ├── avuienc.c │ │ ├── bethsoftvideo.c │ │ ├── bethsoftvideo.h │ │ ├── bfi.c │ │ ├── bfin │ │ │ └── README │ │ ├── bgmc.c │ │ ├── bgmc.h │ │ ├── bink.c │ │ ├── binkaudio.c │ │ ├── binkdata.h │ │ ├── binkdsp.c │ │ ├── binkdsp.h │ │ ├── bintext.c │ │ ├── bintext.h │ │ ├── bit_depth_template.c │ │ ├── bitpacked.c │ │ ├── bitstream.c │ │ ├── bitstream_filter.c │ │ ├── bitstream_filters.c │ │ ├── blockdsp.c │ │ ├── blockdsp.h │ │ ├── bmp.c │ │ ├── bmp.h │ │ ├── bmp_parser.c │ │ ├── bmpenc.c │ │ ├── bmvaudio.c │ │ ├── bmvvideo.c │ │ ├── brenderpix.c │ │ ├── bsf.c │ │ ├── bsf.h │ │ ├── bsf_internal.h │ │ ├── bswapdsp.c │ │ ├── bswapdsp.h │ │ ├── bytestream.h │ │ ├── c93.c │ │ ├── cabac.c │ │ ├── cabac.h │ │ ├── cabac_functions.h │ │ ├── canopus.c │ │ ├── canopus.h │ │ ├── cavs.c │ │ ├── cavs.h │ │ ├── cavs_parser.c │ │ ├── cavsdata.c │ │ ├── cavsdec.c │ │ ├── cavsdsp.c │ │ ├── cavsdsp.h │ │ ├── cbrt_data.c │ │ ├── cbrt_data.h │ │ ├── cbrt_data_fixed.c │ │ ├── cbrt_fixed_tablegen.c │ │ ├── cbrt_tablegen.c │ │ ├── cbrt_tablegen.h │ │ ├── cbrt_tablegen_template.c │ │ ├── cbs.c │ │ ├── cbs.h │ │ ├── cbs_av1.c │ │ ├── cbs_av1.h │ │ ├── cbs_av1_syntax_template.c │ │ ├── cbs_bsf.c │ │ ├── cbs_bsf.h │ │ ├── cbs_h264.h │ │ ├── cbs_h2645.c │ │ ├── cbs_h2645.h │ │ ├── cbs_h264_syntax_template.c │ │ ├── cbs_h265.h │ │ ├── cbs_h265_syntax_template.c │ │ ├── cbs_internal.h │ │ ├── cbs_jpeg.c │ │ ├── cbs_jpeg.h │ │ ├── cbs_jpeg_syntax_template.c │ │ ├── cbs_mpeg2.c │ │ ├── cbs_mpeg2.h │ │ ├── cbs_mpeg2_syntax_template.c │ │ ├── cbs_sei.c │ │ ├── cbs_sei.h │ │ ├── cbs_sei_syntax_template.c │ │ ├── cbs_vp9.c │ │ ├── cbs_vp9.h │ │ ├── cbs_vp9_syntax_template.c │ │ ├── ccaption_dec.c │ │ ├── cdgraphics.c │ │ ├── cdtoons.c │ │ ├── cdxl.c │ │ ├── celp_filters.c │ │ ├── celp_filters.h │ │ ├── celp_math.c │ │ ├── celp_math.h │ │ ├── cfhd.c │ │ ├── cfhd.h │ │ ├── cfhddata.c │ │ ├── cfhddsp.c │ │ ├── cfhddsp.h │ │ ├── cfhdenc.c │ │ ├── cfhdencdsp.c │ │ ├── cfhdencdsp.h │ │ ├── cga_data.c │ │ ├── cga_data.h │ │ ├── chomp_bsf.c │ │ ├── cinepak.c │ │ ├── cinepakenc.c │ │ ├── clearvideo.c │ │ ├── clearvideodata.h │ │ ├── cljrdec.c │ │ ├── cljrenc.c │ │ ├── cllc.c │ │ ├── cngdec.c │ │ ├── cngenc.c │ │ ├── codec.h │ │ ├── codec2utils.c │ │ ├── codec2utils.h │ │ ├── codec_desc.c │ │ ├── codec_desc.h │ │ ├── codec_id.h │ │ ├── codec_par.c │ │ ├── codec_par.h │ │ ├── cook.c │ │ ├── cook_parser.c │ │ ├── cookdata.h │ │ ├── copy_block.h │ │ ├── cos_tablegen.c │ │ ├── cpia.c │ │ ├── cri.c │ │ ├── cri_parser.c │ │ ├── crystalhd.c │ │ ├── cscd.c │ │ ├── cuviddec.c │ │ ├── cyuv.c │ │ ├── d3d11va.c │ │ ├── d3d11va.h │ │ ├── dca.c │ │ ├── dca.h │ │ ├── dca_core.c │ │ ├── dca_core.h │ │ ├── dca_core_bsf.c │ │ ├── dca_exss.c │ │ ├── dca_exss.h │ │ ├── dca_lbr.c │ │ ├── dca_lbr.h │ │ ├── dca_parser.c │ │ ├── dca_syncwords.h │ │ ├── dca_xll.c │ │ ├── dca_xll.h │ │ ├── dcaadpcm.c │ │ ├── dcaadpcm.h │ │ ├── dcadata.c │ │ ├── dcadata.h │ │ ├── dcadct.c │ │ ├── dcadct.h │ │ ├── dcadec.c │ │ ├── dcadec.h │ │ ├── dcadsp.c │ │ ├── dcadsp.h │ │ ├── dcaenc.c │ │ ├── dcaenc.h │ │ ├── dcahuff.c │ │ ├── dcahuff.h │ │ ├── dcamath.h │ │ ├── dct.c │ │ ├── dct.h │ │ ├── dct32.h │ │ ├── dct32_fixed.c │ │ ├── dct32_float.c │ │ ├── dct32_template.c │ │ ├── dctref.c │ │ ├── dctref.h │ │ ├── dds.c │ │ ├── decode.c │ │ ├── decode.h │ │ ├── dfa.c │ │ ├── dirac.c │ │ ├── dirac.h │ │ ├── dirac_arith.c │ │ ├── dirac_arith.h │ │ ├── dirac_dwt.c │ │ ├── dirac_dwt.h │ │ ├── dirac_dwt_template.c │ │ ├── dirac_parser.c │ │ ├── dirac_vlc.c │ │ ├── dirac_vlc.h │ │ ├── diracdec.c │ │ ├── diracdsp.c │ │ ├── diracdsp.h │ │ ├── diractab.c │ │ ├── diractab.h │ │ ├── dnxhd_parser.c │ │ ├── dnxhddata.c │ │ ├── dnxhddata.h │ │ ├── dnxhddec.c │ │ ├── dnxhdenc.c │ │ ├── dnxhdenc.h │ │ ├── dolby_e.c │ │ ├── dolby_e.h │ │ ├── dolby_e_parse.c │ │ ├── dolby_e_parser.c │ │ ├── dpcm.c │ │ ├── dpx.c │ │ ├── dpx_parser.c │ │ ├── dpxenc.c │ │ ├── dsd.c │ │ ├── dsd.h │ │ ├── dsd_tablegen.h │ │ ├── dsddec.c │ │ ├── dsicinaudio.c │ │ ├── dsicinvideo.c │ │ ├── dss_sp.c │ │ ├── dstdec.c │ │ ├── dump_extradata_bsf.c │ │ ├── dv.c │ │ ├── dv.h │ │ ├── dv_profile.c │ │ ├── dv_profile.h │ │ ├── dv_profile_internal.h │ │ ├── dv_tablegen.c │ │ ├── dv_tablegen.h │ │ ├── dvaudio.h │ │ ├── dvaudio_parser.c │ │ ├── dvaudiodec.c │ │ ├── dvbsub_parser.c │ │ ├── dvbsubdec.c │ │ ├── dvbsubenc.c │ │ ├── dvbtxt.h │ │ ├── dvd_nav_parser.c │ │ ├── dvdata.c │ │ ├── dvdata.h │ │ ├── dvdec.c │ │ ├── dvdsub.c │ │ ├── dvdsub_parser.c │ │ ├── dvdsubdec.c │ │ ├── dvdsubenc.c │ │ ├── dvenc.c │ │ ├── dxa.c │ │ ├── dxtory.c │ │ ├── dxv.c │ │ ├── dxva2.c │ │ ├── dxva2.h │ │ ├── dxva2_av1.c │ │ ├── dxva2_h264.c │ │ ├── dxva2_hevc.c │ │ ├── dxva2_internal.h │ │ ├── dxva2_mpeg2.c │ │ ├── dxva2_vc1.c │ │ ├── dxva2_vp9.c │ │ ├── dynamic_hdr10_plus.c │ │ ├── dynamic_hdr10_plus.h │ │ ├── eac3_core_bsf.c │ │ ├── eac3_data.c │ │ ├── eac3_data.h │ │ ├── eac3dec.c │ │ ├── eac3enc.c │ │ ├── eac3enc.h │ │ ├── eacmv.c │ │ ├── eaidct.c │ │ ├── eaidct.h │ │ ├── eamad.c │ │ ├── eatgq.c │ │ ├── eatgv.c │ │ ├── eatqi.c │ │ ├── elbg.c │ │ ├── elbg.h │ │ ├── elsdec.c │ │ ├── elsdec.h │ │ ├── encode.c │ │ ├── encode.h │ │ ├── error_resilience.c │ │ ├── error_resilience.h │ │ ├── escape124.c │ │ ├── escape130.c │ │ ├── evrcdata.h │ │ ├── evrcdec.c │ │ ├── exif.c │ │ ├── exif.h │ │ ├── exr.c │ │ ├── exrdsp.c │ │ ├── exrdsp.h │ │ ├── exrenc.c │ │ ├── extract_extradata_bsf.c │ │ ├── faandct.c │ │ ├── faandct.h │ │ ├── faanidct.c │ │ ├── faanidct.h │ │ ├── fastaudio.c │ │ ├── faxcompr.c │ │ ├── faxcompr.h │ │ ├── fdctdsp.c │ │ ├── fdctdsp.h │ │ ├── ffjni.c │ │ ├── ffjni.h │ │ ├── fft-internal.h │ │ ├── fft.h │ │ ├── fft_fixed_32.c │ │ ├── fft_float.c │ │ ├── fft_init_table.c │ │ ├── fft_table.h │ │ ├── fft_template.c │ │ ├── ffv1.c │ │ ├── ffv1.h │ │ ├── ffv1_template.c │ │ ├── ffv1dec.c │ │ ├── ffv1dec_template.c │ │ ├── ffv1enc.c │ │ ├── ffv1enc_template.c │ │ ├── ffwavesynth.c │ │ ├── fic.c │ │ ├── file_open.c │ │ ├── filter_units_bsf.c │ │ ├── fits.c │ │ ├── fits.h │ │ ├── fitsdec.c │ │ ├── fitsenc.c │ │ ├── flac.c │ │ ├── flac.h │ │ ├── flac_parser.c │ │ ├── flacdata.c │ │ ├── flacdata.h │ │ ├── flacdec.c │ │ ├── flacdsp.c │ │ ├── flacdsp.h │ │ ├── flacdsp_lpc_template.c │ │ ├── flacdsp_template.c │ │ ├── flacenc.c │ │ ├── flashsv.c │ │ ├── flashsv2enc.c │ │ ├── flashsvenc.c │ │ ├── flicvideo.c │ │ ├── float2half.h │ │ ├── flv.h │ │ ├── flvdec.c │ │ ├── flvenc.c │ │ ├── fmtconvert.c │ │ ├── fmtconvert.h │ │ ├── fmvc.c │ │ ├── frame_thread_encoder.c │ │ ├── frame_thread_encoder.h │ │ ├── fraps.c │ │ ├── frwu.c │ │ ├── g2meet.c │ │ ├── g722.c │ │ ├── g722.h │ │ ├── g722dec.c │ │ ├── g722dsp.c │ │ ├── g722dsp.h │ │ ├── g722enc.c │ │ ├── g723_1.c │ │ ├── g723_1.h │ │ ├── g723_1_parser.c │ │ ├── g723_1dec.c │ │ ├── g723_1enc.c │ │ ├── g726.c │ │ ├── g729.h │ │ ├── g729_parser.c │ │ ├── g729data.h │ │ ├── g729dec.c │ │ ├── g729postfilter.c │ │ ├── g729postfilter.h │ │ ├── gdv.c │ │ ├── get_bits.h │ │ ├── gif.c │ │ ├── gif.h │ │ ├── gif_parser.c │ │ ├── gifdec.c │ │ ├── golomb.c │ │ ├── golomb.h │ │ ├── gsm.h │ │ ├── gsm_parser.c │ │ ├── gsmdec.c │ │ ├── gsmdec_data.c │ │ ├── gsmdec_data.h │ │ ├── gsmdec_template.c │ │ ├── h261.c │ │ ├── h261.h │ │ ├── h261_parser.c │ │ ├── h261data.c │ │ ├── h261dec.c │ │ ├── h261enc.c │ │ ├── h263.c │ │ ├── h263.h │ │ ├── h263_parser.c │ │ ├── h263_parser.h │ │ ├── h263data.c │ │ ├── h263data.h │ │ ├── h263dec.c │ │ ├── h263dsp.c │ │ ├── h263dsp.h │ │ ├── h264.h │ │ ├── h2645_parse.c │ │ ├── h2645_parse.h │ │ ├── h264_cabac.c │ │ ├── h264_cavlc.c │ │ ├── h264_direct.c │ │ ├── h264_levels.c │ │ ├── h264_levels.h │ │ ├── h264_loopfilter.c │ │ ├── h264_mb.c │ │ ├── h264_mb_template.c │ │ ├── h264_mc_template.c │ │ ├── h264_metadata_bsf.c │ │ ├── h264_mp4toannexb_bsf.c │ │ ├── h264_mvpred.h │ │ ├── h264_parse.c │ │ ├── h264_parse.h │ │ ├── h264_parser.c │ │ ├── h264_picture.c │ │ ├── h264_ps.c │ │ ├── h264_ps.h │ │ ├── h264_redundant_pps_bsf.c │ │ ├── h264_refs.c │ │ ├── h264_sei.c │ │ ├── h264_sei.h │ │ ├── h264_slice.c │ │ ├── h264addpx_template.c │ │ ├── h264chroma.c │ │ ├── h264chroma.h │ │ ├── h264chroma_template.c │ │ ├── h264data.c │ │ ├── h264data.h │ │ ├── h264dec.c │ │ ├── h264dec.h │ │ ├── h264dsp.c │ │ ├── h264dsp.h │ │ ├── h264dsp_template.c │ │ ├── h264idct.c │ │ ├── h264idct.h │ │ ├── h264idct_template.c │ │ ├── h264pred.c │ │ ├── h264pred.h │ │ ├── h264pred_template.c │ │ ├── h264qpel.c │ │ ├── h264qpel.h │ │ ├── h264qpel_template.c │ │ ├── h265_metadata_bsf.c │ │ ├── h265_profile_level.c │ │ ├── h265_profile_level.h │ │ ├── half2float.h │ │ ├── hap.c │ │ ├── hap.h │ │ ├── hapdec.c │ │ ├── hapenc.c │ │ ├── hapqa_extract_bsf.c │ │ ├── hca_data.h │ │ ├── hcadec.c │ │ ├── hcom.c │ │ ├── hevc.h │ │ ├── hevc_cabac.c │ │ ├── hevc_data.c │ │ ├── hevc_data.h │ │ ├── hevc_filter.c │ │ ├── hevc_mp4toannexb_bsf.c │ │ ├── hevc_mvs.c │ │ ├── hevc_parse.c │ │ ├── hevc_parse.h │ │ ├── hevc_parser.c │ │ ├── hevc_ps.c │ │ ├── hevc_ps.h │ │ ├── hevc_ps_enc.c │ │ ├── hevc_refs.c │ │ ├── hevc_sei.c │ │ ├── hevc_sei.h │ │ ├── hevcdec.c │ │ ├── hevcdec.h │ │ ├── hevcdsp.c │ │ ├── hevcdsp.h │ │ ├── hevcdsp_template.c │ │ ├── hevcpred.c │ │ ├── hevcpred.h │ │ ├── hevcpred_template.c │ │ ├── hnm4video.c │ │ ├── hpel_template.c │ │ ├── hpeldsp.c │ │ ├── hpeldsp.h │ │ ├── hq_hqa.c │ │ ├── hq_hqa.h │ │ ├── hq_hqadata.c │ │ ├── hq_hqadsp.c │ │ ├── hq_hqadsp.h │ │ ├── hqx.c │ │ ├── hqx.h │ │ ├── hqxdsp.c │ │ ├── hqxdsp.h │ │ ├── hqxvlc.c │ │ ├── htmlsubtitles.c │ │ ├── htmlsubtitles.h │ │ ├── huffman.c │ │ ├── huffman.h │ │ ├── huffyuv.c │ │ ├── huffyuv.h │ │ ├── huffyuvdec.c │ │ ├── huffyuvdsp.c │ │ ├── huffyuvdsp.h │ │ ├── huffyuvenc.c │ │ ├── huffyuvencdsp.c │ │ ├── huffyuvencdsp.h │ │ ├── hwaccels.h │ │ ├── hwconfig.h │ │ ├── idcinvideo.c │ │ ├── idctdsp.c │ │ ├── idctdsp.h │ │ ├── iff.c │ │ ├── iirfilter.c │ │ ├── iirfilter.h │ │ ├── ilbcdata.h │ │ ├── ilbcdec.c │ │ ├── imc.c │ │ ├── imcdata.h │ │ ├── imgconvert.c │ │ ├── imm4.c │ │ ├── imm5.c │ │ ├── imx.c │ │ ├── imx_dump_header_bsf.c │ │ ├── indeo2.c │ │ ├── indeo2data.h │ │ ├── indeo3.c │ │ ├── indeo3data.h │ │ ├── indeo4.c │ │ ├── indeo4data.h │ │ ├── indeo5.c │ │ ├── indeo5data.h │ │ ├── intelh263dec.c │ │ ├── internal.h │ │ ├── interplayacm.c │ │ ├── interplayvideo.c │ │ ├── intrax8.c │ │ ├── intrax8.h │ │ ├── intrax8dsp.c │ │ ├── intrax8dsp.h │ │ ├── intrax8huf.h │ │ ├── ipu_parser.c │ │ ├── ituh263dec.c │ │ ├── ituh263enc.c │ │ ├── ivi.c │ │ ├── ivi.h │ │ ├── ivi_dsp.c │ │ ├── ivi_dsp.h │ │ ├── j2kenc.c │ │ ├── jacosub.h │ │ ├── jacosubdec.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jfdctint_template.c │ │ ├── jni.c │ │ ├── jni.h │ │ ├── jpeg2000.c │ │ ├── jpeg2000.h │ │ ├── jpeg2000_parser.c │ │ ├── jpeg2000dec.c │ │ ├── jpeg2000dsp.c │ │ ├── jpeg2000dsp.h │ │ ├── jpeg2000dwt.c │ │ ├── jpeg2000dwt.h │ │ ├── jpegls.c │ │ ├── jpegls.h │ │ ├── jpeglsdec.c │ │ ├── jpeglsdec.h │ │ ├── jpeglsenc.c │ │ ├── jpegtables.c │ │ ├── jpegtables.h │ │ ├── jrevdct.c │ │ ├── jvdec.c │ │ ├── kbdwin.c │ │ ├── kbdwin.h │ │ ├── kgv1dec.c │ │ ├── kmvc.c │ │ ├── lagarith.c │ │ ├── lagarithrac.c │ │ ├── lagarithrac.h │ │ ├── latm_parser.c │ │ ├── lcl.h │ │ ├── lcldec.c │ │ ├── lclenc.c │ │ ├── libaomdec.c │ │ ├── libaomenc.c │ │ ├── libaribb24.c │ │ ├── libavcodec.v │ │ ├── libcelt_dec.c │ │ ├── libcodec2.c │ │ ├── libdav1d.c │ │ ├── libdavs2.c │ │ ├── libfdk-aacdec.c │ │ ├── libfdk-aacenc.c │ │ ├── libgsmdec.c │ │ ├── libgsmenc.c │ │ ├── libilbc.c │ │ ├── libkvazaar.c │ │ ├── libmp3lame.c │ │ ├── libopencore-amr.c │ │ ├── libopenh264.c │ │ ├── libopenh264.h │ │ ├── libopenh264dec.c │ │ ├── libopenh264enc.c │ │ ├── libopenjpegdec.c │ │ ├── libopenjpegenc.c │ │ ├── libopus.c │ │ ├── libopus.h │ │ ├── libopusdec.c │ │ ├── libopusenc.c │ │ ├── librav1e.c │ │ ├── librsvgdec.c │ │ ├── libshine.c │ │ ├── libspeexdec.c │ │ ├── libspeexenc.c │ │ ├── libsvtav1.c │ │ ├── libtheoraenc.c │ │ ├── libtwolame.c │ │ ├── libuavs3d.c │ │ ├── libvo-amrwbenc.c │ │ ├── libvorbisdec.c │ │ ├── libvorbisenc.c │ │ ├── libvpx.c │ │ ├── libvpx.h │ │ ├── libvpxdec.c │ │ ├── libvpxenc.c │ │ ├── libwebpenc.c │ │ ├── libwebpenc_animencoder.c │ │ ├── libwebpenc_common.c │ │ ├── libwebpenc_common.h │ │ ├── libx264.c │ │ ├── libx265.c │ │ ├── libxavs.c │ │ ├── libxavs2.c │ │ ├── libxvid.c │ │ ├── libzvbi-teletextdec.c │ │ ├── ljpegenc.c │ │ ├── loco.c │ │ ├── log2_tab.c │ │ ├── lossless_audiodsp.c │ │ ├── lossless_audiodsp.h │ │ ├── lossless_videodsp.c │ │ ├── lossless_videodsp.h │ │ ├── lossless_videoencdsp.c │ │ ├── lossless_videoencdsp.h │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lscrdec.c │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── lzf.c │ │ ├── lzf.h │ │ ├── lzw.c │ │ ├── lzw.h │ │ ├── lzwenc.c │ │ ├── m101.c │ │ ├── mace.c │ │ ├── magicyuv.c │ │ ├── magicyuvenc.c │ │ ├── mathops.h │ │ ├── mathtables.c │ │ ├── mdct15.c │ │ ├── mdct15.h │ │ ├── mdct_fixed_32.c │ │ ├── mdct_float.c │ │ ├── mdct_template.c │ │ ├── mdec.c │ │ ├── me_cmp.c │ │ ├── me_cmp.h │ │ ├── mediacodec.c │ │ ├── mediacodec.h │ │ ├── mediacodec_surface.c │ │ ├── mediacodec_surface.h │ │ ├── mediacodec_sw_buffer.c │ │ ├── mediacodec_sw_buffer.h │ │ ├── mediacodec_wrapper.c │ │ ├── mediacodec_wrapper.h │ │ ├── mediacodecdec.c │ │ ├── mediacodecdec_common.c │ │ ├── mediacodecdec_common.h │ │ ├── metasound.c │ │ ├── metasound_data.c │ │ ├── metasound_data.h │ │ ├── mf_utils.c │ │ ├── mf_utils.h │ │ ├── mfenc.c │ │ ├── microdvddec.c │ │ ├── midivid.c │ │ ├── mimic.c │ │ ├── mips │ │ │ ├── Makefile │ │ │ ├── aaccoder_mips.c │ │ │ ├── aacdec_mips.c │ │ │ ├── aacdec_mips.h │ │ │ ├── aacpsdsp_mips.c │ │ │ ├── aacpsy_mips.h │ │ │ ├── aacsbr_mips.c │ │ │ ├── aacsbr_mips.h │ │ │ ├── ac3dsp_mips.c │ │ │ ├── acelp_filters_mips.c │ │ │ ├── acelp_vectors_mips.c │ │ │ ├── amrwbdec_mips.c │ │ │ ├── amrwbdec_mips.h │ │ │ ├── blockdsp_init_mips.c │ │ │ ├── blockdsp_mips.h │ │ │ ├── blockdsp_mmi.c │ │ │ ├── blockdsp_msa.c │ │ │ ├── cabac.h │ │ │ ├── celp_filters_mips.c │ │ │ ├── celp_math_mips.c │ │ │ ├── compute_antialias_fixed.h │ │ │ ├── compute_antialias_float.h │ │ │ ├── constants.c │ │ │ ├── constants.h │ │ │ ├── fft_mips.c │ │ │ ├── fmtconvert_mips.c │ │ │ ├── h263dsp_init_mips.c │ │ │ ├── h263dsp_mips.h │ │ │ ├── h263dsp_msa.c │ │ │ ├── h264chroma_init_mips.c │ │ │ ├── h264chroma_mips.h │ │ │ ├── h264chroma_mmi.c │ │ │ ├── h264chroma_msa.c │ │ │ ├── h264dsp_init_mips.c │ │ │ ├── h264dsp_mips.h │ │ │ ├── h264dsp_mmi.c │ │ │ ├── h264dsp_msa.c │ │ │ ├── h264idct_msa.c │ │ │ ├── h264pred_init_mips.c │ │ │ ├── h264pred_mips.h │ │ │ ├── h264pred_mmi.c │ │ │ ├── h264pred_msa.c │ │ │ ├── h264qpel_init_mips.c │ │ │ ├── h264qpel_mmi.c │ │ │ ├── h264qpel_msa.c │ │ │ ├── hevc_idct_msa.c │ │ │ ├── hevc_lpf_sao_msa.c │ │ │ ├── hevc_macros_msa.h │ │ │ ├── hevc_mc_bi_msa.c │ │ │ ├── hevc_mc_biw_msa.c │ │ │ ├── hevc_mc_uni_msa.c │ │ │ ├── hevc_mc_uniw_msa.c │ │ │ ├── hevcdsp_init_mips.c │ │ │ ├── hevcdsp_mips.h │ │ │ ├── hevcdsp_mmi.c │ │ │ ├── hevcdsp_msa.c │ │ │ ├── hevcpred_init_mips.c │ │ │ ├── hevcpred_mips.h │ │ │ ├── hevcpred_msa.c │ │ │ ├── hpeldsp_init_mips.c │ │ │ ├── hpeldsp_mips.h │ │ │ ├── hpeldsp_mmi.c │ │ │ ├── hpeldsp_msa.c │ │ │ ├── idctdsp_init_mips.c │ │ │ ├── idctdsp_mips.h │ │ │ ├── idctdsp_mmi.c │ │ │ ├── idctdsp_msa.c │ │ │ ├── iirfilter_mips.c │ │ │ ├── lsp_mips.h │ │ │ ├── mathops.h │ │ │ ├── me_cmp_init_mips.c │ │ │ ├── me_cmp_mips.h │ │ │ ├── me_cmp_msa.c │ │ │ ├── mpegaudiodsp_mips_fixed.c │ │ │ ├── mpegaudiodsp_mips_float.c │ │ │ ├── mpegvideo_init_mips.c │ │ │ ├── mpegvideo_mips.h │ │ │ ├── mpegvideo_mmi.c │ │ │ ├── mpegvideo_msa.c │ │ │ ├── mpegvideoencdsp_init_mips.c │ │ │ ├── mpegvideoencdsp_msa.c │ │ │ ├── pixblockdsp_init_mips.c │ │ │ ├── pixblockdsp_mips.h │ │ │ ├── pixblockdsp_mmi.c │ │ │ ├── pixblockdsp_msa.c │ │ │ ├── qpeldsp_init_mips.c │ │ │ ├── qpeldsp_mips.h │ │ │ ├── qpeldsp_msa.c │ │ │ ├── sbrdsp_mips.c │ │ │ ├── simple_idct_mmi.c │ │ │ ├── simple_idct_msa.c │ │ │ ├── vc1dsp_init_mips.c │ │ │ ├── vc1dsp_mips.h │ │ │ ├── vc1dsp_mmi.c │ │ │ ├── vc1dsp_msa.c │ │ │ ├── videodsp_init.c │ │ │ ├── vp3dsp_idct_mmi.c │ │ │ ├── vp3dsp_idct_msa.c │ │ │ ├── vp3dsp_init_mips.c │ │ │ ├── vp3dsp_mips.h │ │ │ ├── vp8_idct_msa.c │ │ │ ├── vp8_lpf_msa.c │ │ │ ├── vp8_mc_msa.c │ │ │ ├── vp8dsp_init_mips.c │ │ │ ├── vp8dsp_mips.h │ │ │ ├── vp8dsp_mmi.c │ │ │ ├── vp9_idct_msa.c │ │ │ ├── vp9_intra_msa.c │ │ │ ├── vp9_lpf_msa.c │ │ │ ├── vp9_mc_mmi.c │ │ │ ├── vp9_mc_msa.c │ │ │ ├── vp9dsp_init_mips.c │ │ │ ├── vp9dsp_mips.h │ │ │ ├── wmv2dsp_init_mips.c │ │ │ ├── wmv2dsp_mips.h │ │ │ ├── wmv2dsp_mmi.c │ │ │ ├── xvid_idct_mmi.c │ │ │ ├── xvididct_init_mips.c │ │ │ └── xvididct_mips.h │ │ ├── mjpeg.h │ │ ├── mjpeg2jpeg_bsf.c │ │ ├── mjpeg_parser.c │ │ ├── mjpega_dump_header_bsf.c │ │ ├── mjpegbdec.c │ │ ├── mjpegdec.c │ │ ├── mjpegdec.h │ │ ├── mjpegdec_common.c │ │ ├── mjpegenc.c │ │ ├── mjpegenc.h │ │ ├── mjpegenc_common.c │ │ ├── mjpegenc_common.h │ │ ├── mjpegenc_huffman.c │ │ ├── mjpegenc_huffman.h │ │ ├── mlp.c │ │ ├── mlp.h │ │ ├── mlp_parse.c │ │ ├── mlp_parse.h │ │ ├── mlp_parser.c │ │ ├── mlpdec.c │ │ ├── mlpdsp.c │ │ ├── mlpdsp.h │ │ ├── mlpenc.c │ │ ├── mlz.c │ │ ├── mlz.h │ │ ├── mmaldec.c │ │ ├── mmvideo.c │ │ ├── mobiclip.c │ │ ├── motion_est.c │ │ ├── motion_est.h │ │ ├── motion_est_template.c │ │ ├── motionpixels.c │ │ ├── motionpixels_tablegen.c │ │ ├── motionpixels_tablegen.h │ │ ├── movsub_bsf.c │ │ ├── movtextdec.c │ │ ├── movtextenc.c │ │ ├── mp3_header_decompress_bsf.c │ │ ├── mpc.c │ │ ├── mpc.h │ │ ├── mpc7.c │ │ ├── mpc7data.h │ │ ├── mpc8.c │ │ ├── mpc8data.h │ │ ├── mpc8huff.h │ │ ├── mpcdata.h │ │ ├── mpeg12.c │ │ ├── mpeg12.h │ │ ├── mpeg12data.c │ │ ├── mpeg12data.h │ │ ├── mpeg12dec.c │ │ ├── mpeg12enc.c │ │ ├── mpeg12framerate.c │ │ ├── mpeg12vlc.h │ │ ├── mpeg2_metadata_bsf.c │ │ ├── mpeg4_unpack_bframes_bsf.c │ │ ├── mpeg4audio.c │ │ ├── mpeg4audio.h │ │ ├── mpeg4data.h │ │ ├── mpeg4video.c │ │ ├── mpeg4video.h │ │ ├── mpeg4video_parser.c │ │ ├── mpeg4video_parser.h │ │ ├── mpeg4videodec.c │ │ ├── mpeg4videoenc.c │ │ ├── mpeg_er.c │ │ ├── mpeg_er.h │ │ ├── mpegaudio.c │ │ ├── mpegaudio.h │ │ ├── mpegaudio_parser.c │ │ ├── mpegaudio_tablegen.c │ │ ├── mpegaudio_tablegen.h │ │ ├── mpegaudiodata.c │ │ ├── mpegaudiodata.h │ │ ├── mpegaudiodec_common.c │ │ ├── mpegaudiodec_common_tablegen.c │ │ ├── mpegaudiodec_common_tablegen.h │ │ ├── mpegaudiodec_fixed.c │ │ ├── mpegaudiodec_float.c │ │ ├── mpegaudiodec_template.c │ │ ├── mpegaudiodecheader.c │ │ ├── mpegaudiodecheader.h │ │ ├── mpegaudiodsp.c │ │ ├── mpegaudiodsp.h │ │ ├── mpegaudiodsp_data.c │ │ ├── mpegaudiodsp_fixed.c │ │ ├── mpegaudiodsp_float.c │ │ ├── mpegaudiodsp_template.c │ │ ├── mpegaudioenc_fixed.c │ │ ├── mpegaudioenc_float.c │ │ ├── mpegaudioenc_template.c │ │ ├── mpegaudiotab.h │ │ ├── mpegpicture.c │ │ ├── mpegpicture.h │ │ ├── mpegutils.c │ │ ├── mpegutils.h │ │ ├── mpegvideo.c │ │ ├── mpegvideo.h │ │ ├── mpegvideo_enc.c │ │ ├── mpegvideo_motion.c │ │ ├── mpegvideo_parser.c │ │ ├── mpegvideo_xvmc.c │ │ ├── mpegvideodata.c │ │ ├── mpegvideodata.h │ │ ├── mpegvideodsp.c │ │ ├── mpegvideodsp.h │ │ ├── mpegvideoencdsp.c │ │ ├── mpegvideoencdsp.h │ │ ├── mpl2dec.c │ │ ├── mqc.c │ │ ├── mqc.h │ │ ├── mqcdec.c │ │ ├── mqcenc.c │ │ ├── mscc.c │ │ ├── msgsmdec.c │ │ ├── msgsmdec.h │ │ ├── msmpeg4.c │ │ ├── msmpeg4.h │ │ ├── msmpeg4data.c │ │ ├── msmpeg4data.h │ │ ├── msmpeg4dec.c │ │ ├── msmpeg4enc.c │ │ ├── msp2dec.c │ │ ├── msrle.c │ │ ├── msrledec.c │ │ ├── msrledec.h │ │ ├── mss1.c │ │ ├── mss12.c │ │ ├── mss12.h │ │ ├── mss2.c │ │ ├── mss2dsp.c │ │ ├── mss2dsp.h │ │ ├── mss3.c │ │ ├── mss34dsp.c │ │ ├── mss34dsp.h │ │ ├── mss4.c │ │ ├── msvideo1.c │ │ ├── msvideo1enc.c │ │ ├── mv30.c │ │ ├── mvcdec.c │ │ ├── mvha.c │ │ ├── mwsc.c │ │ ├── mxpegdec.c │ │ ├── nellymoser.c │ │ ├── nellymoser.h │ │ ├── nellymoserdec.c │ │ ├── nellymoserenc.c │ │ ├── neon │ │ │ ├── Makefile │ │ │ └── mpegvideo.c │ │ ├── noise_bsf.c │ │ ├── notchlc.c │ │ ├── null_bsf.c │ │ ├── nuv.c │ │ ├── nvdec.c │ │ ├── nvdec.h │ │ ├── nvdec_av1.c │ │ ├── nvdec_h264.c │ │ ├── nvdec_hevc.c │ │ ├── nvdec_mjpeg.c │ │ ├── nvdec_mpeg12.c │ │ ├── nvdec_mpeg4.c │ │ ├── nvdec_vc1.c │ │ ├── nvdec_vp8.c │ │ ├── nvdec_vp9.c │ │ ├── nvenc.c │ │ ├── nvenc.h │ │ ├── nvenc_h264.c │ │ ├── nvenc_hevc.c │ │ ├── omx.c │ │ ├── on2avc.c │ │ ├── on2avcdata.c │ │ ├── on2avcdata.h │ │ ├── options.c │ │ ├── options_table.h │ │ ├── opus.c │ │ ├── opus.h │ │ ├── opus_celt.c │ │ ├── opus_celt.h │ │ ├── opus_metadata_bsf.c │ │ ├── opus_parser.c │ │ ├── opus_pvq.c │ │ ├── opus_pvq.h │ │ ├── opus_rc.c │ │ ├── opus_rc.h │ │ ├── opus_silk.c │ │ ├── opusdec.c │ │ ├── opusdsp.c │ │ ├── opusdsp.h │ │ ├── opusenc.c │ │ ├── opusenc.h │ │ ├── opusenc_psy.c │ │ ├── opusenc_psy.h │ │ ├── opusenc_utils.h │ │ ├── opustab.c │ │ ├── opustab.h │ │ ├── packet.h │ │ ├── packet_internal.h │ │ ├── paf.h │ │ ├── pafaudio.c │ │ ├── pafvideo.c │ │ ├── pamenc.c │ │ ├── parser.c │ │ ├── parser.h │ │ ├── parsers.c │ │ ├── pcm-bluray.c │ │ ├── pcm-dvd.c │ │ ├── pcm-dvdenc.c │ │ ├── pcm.c │ │ ├── pcm_rechunk_bsf.c │ │ ├── pcm_tablegen.c │ │ ├── pcm_tablegen.h │ │ ├── pcx.c │ │ ├── pcxenc.c │ │ ├── pel_template.c │ │ ├── pgssubdec.c │ │ ├── pgxdec.c │ │ ├── photocd.c │ │ ├── pictordec.c │ │ ├── pixblockdsp.c │ │ ├── pixblockdsp.h │ │ ├── pixels.h │ │ ├── pixlet.c │ │ ├── png.c │ │ ├── png.h │ │ ├── png_parser.c │ │ ├── pngdec.c │ │ ├── pngdsp.c │ │ ├── pngdsp.h │ │ ├── pngenc.c │ │ ├── pnm.c │ │ ├── pnm.h │ │ ├── pnm_parser.c │ │ ├── pnmdec.c │ │ ├── pnmenc.c │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── asm.S │ │ │ ├── audiodsp.c │ │ │ ├── blockdsp.c │ │ │ ├── fdct.h │ │ │ ├── fdctdsp.c │ │ │ ├── fft_altivec.S │ │ │ ├── fft_init.c │ │ │ ├── fft_vsx.c │ │ │ ├── fft_vsx.h │ │ │ ├── fmtconvert_altivec.c │ │ │ ├── h264chroma_init.c │ │ │ ├── h264chroma_template.c │ │ │ ├── h264dsp.c │ │ │ ├── h264qpel.c │ │ │ ├── h264qpel_template.c │ │ │ ├── hevcdsp.c │ │ │ ├── hevcdsp_template.c │ │ │ ├── hpeldsp_altivec.c │ │ │ ├── hpeldsp_altivec.h │ │ │ ├── idctdsp.c │ │ │ ├── lossless_audiodsp_altivec.c │ │ │ ├── lossless_videodsp_altivec.c │ │ │ ├── mathops.h │ │ │ ├── me_cmp.c │ │ │ ├── mpegaudiodsp_altivec.c │ │ │ ├── mpegvideo_altivec.c │ │ │ ├── mpegvideodsp.c │ │ │ ├── mpegvideoencdsp.c │ │ │ ├── pixblockdsp.c │ │ │ ├── svq1enc_altivec.c │ │ │ ├── vc1dsp_altivec.c │ │ │ ├── videodsp.c │ │ │ ├── vorbisdsp_altivec.c │ │ │ ├── vp3dsp_altivec.c │ │ │ └── vp8dsp_altivec.c │ │ ├── profiles.c │ │ ├── profiles.h │ │ ├── prores_metadata_bsf.c │ │ ├── proresdata.c │ │ ├── proresdata.h │ │ ├── proresdec.h │ │ ├── proresdec2.c │ │ ├── proresdsp.c │ │ ├── proresdsp.h │ │ ├── proresenc_anatoliy.c │ │ ├── proresenc_kostya.c │ │ ├── prosumer.c │ │ ├── psd.c │ │ ├── psymodel.c │ │ ├── psymodel.h │ │ ├── pthread.c │ │ ├── pthread_frame.c │ │ ├── pthread_internal.h │ │ ├── pthread_slice.c │ │ ├── ptx.c │ │ ├── put_bits.h │ │ ├── qcelpdata.h │ │ ├── qcelpdec.c │ │ ├── qdm2.c │ │ ├── qdm2_tablegen.c │ │ ├── qdm2_tablegen.h │ │ ├── qdm2data.h │ │ ├── qdmc.c │ │ ├── qdrw.c │ │ ├── qpeg.c │ │ ├── qpel_template.c │ │ ├── qpeldsp.c │ │ ├── qpeldsp.h │ │ ├── qsv.c │ │ ├── qsv.h │ │ ├── qsv_api.c │ │ ├── qsv_internal.h │ │ ├── qsvdec.c │ │ ├── qsvenc.c │ │ ├── qsvenc.h │ │ ├── qsvenc_h264.c │ │ ├── qsvenc_hevc.c │ │ ├── qsvenc_jpeg.c │ │ ├── qsvenc_mpeg2.c │ │ ├── qsvenc_vp9.c │ │ ├── qtrle.c │ │ ├── qtrleenc.c │ │ ├── r210dec.c │ │ ├── r210enc.c │ │ ├── ra144.c │ │ ├── ra144.h │ │ ├── ra144dec.c │ │ ├── ra144enc.c │ │ ├── ra288.c │ │ ├── ra288.h │ │ ├── ralf.c │ │ ├── ralfdata.h │ │ ├── rangecoder.c │ │ ├── rangecoder.h │ │ ├── rasc.c │ │ ├── ratecontrol.c │ │ ├── ratecontrol.h │ │ ├── raw.c │ │ ├── raw.h │ │ ├── rawdec.c │ │ ├── rawenc.c │ │ ├── rdft.c │ │ ├── rdft.h │ │ ├── realtextdec.c │ │ ├── rectangle.h │ │ ├── remove_extradata_bsf.c │ │ ├── reverse.c │ │ ├── rkmppdec.c │ │ ├── rl.c │ │ ├── rl.h │ │ ├── rl2.c │ │ ├── rle.c │ │ ├── rle.h │ │ ├── rnd_avg.h │ │ ├── roqaudioenc.c │ │ ├── roqvideo.c │ │ ├── roqvideo.h │ │ ├── roqvideodec.c │ │ ├── roqvideoenc.c │ │ ├── rpza.c │ │ ├── rpzaenc.c │ │ ├── rscc.c │ │ ├── rtjpeg.c │ │ ├── rtjpeg.h │ │ ├── rv10.c │ │ ├── rv10.h │ │ ├── rv10enc.c │ │ ├── rv20enc.c │ │ ├── rv30.c │ │ ├── rv30data.h │ │ ├── rv30dsp.c │ │ ├── rv34.c │ │ ├── rv34.h │ │ ├── rv34_parser.c │ │ ├── rv34data.h │ │ ├── rv34dsp.c │ │ ├── rv34dsp.h │ │ ├── rv34vlc.h │ │ ├── rv40.c │ │ ├── rv40data.h │ │ ├── rv40dsp.c │ │ ├── rv40vlc2.h │ │ ├── s302m.c │ │ ├── s302menc.c │ │ ├── samidec.c │ │ ├── sanm.c │ │ ├── sbc.c │ │ ├── sbc.h │ │ ├── sbc_parser.c │ │ ├── sbcdec.c │ │ ├── sbcdec_data.c │ │ ├── sbcdec_data.h │ │ ├── sbcdsp.c │ │ ├── sbcdsp.h │ │ ├── sbcdsp_data.c │ │ ├── sbcdsp_data.h │ │ ├── sbcenc.c │ │ ├── sbr.h │ │ ├── sbrdsp.c │ │ ├── sbrdsp.h │ │ ├── sbrdsp_fixed.c │ │ ├── sbrdsp_template.c │ │ ├── scpr.c │ │ ├── scpr.h │ │ ├── scpr3.c │ │ ├── scpr3.h │ │ ├── screenpresso.c │ │ ├── sei.h │ │ ├── setts_bsf.c │ │ ├── sga.c │ │ ├── sgi.h │ │ ├── sgidec.c │ │ ├── sgienc.c │ │ ├── sgirledec.c │ │ ├── sh4 │ │ │ └── README │ │ ├── sheervideo.c │ │ ├── sheervideodata.h │ │ ├── shorten.c │ │ ├── simple_idct.c │ │ ├── simple_idct.h │ │ ├── simple_idct_template.c │ │ ├── sinewin.c │ │ ├── sinewin.h │ │ ├── sinewin_fixed_tablegen.c │ │ ├── sinewin_fixed_tablegen.h │ │ ├── sinewin_tablegen.c │ │ ├── sinewin_tablegen.h │ │ ├── sipr.c │ │ ├── sipr.h │ │ ├── sipr16k.c │ │ ├── sipr16kdata.h │ │ ├── sipr_parser.c │ │ ├── siprdata.h │ │ ├── siren.c │ │ ├── smacker.c │ │ ├── smc.c │ │ ├── snappy.c │ │ ├── snappy.h │ │ ├── snow.c │ │ ├── snow.h │ │ ├── snow_dwt.c │ │ ├── snow_dwt.h │ │ ├── snowdata.h │ │ ├── snowdec.c │ │ ├── snowenc.c │ │ ├── sonic.c │ │ ├── sp5x.h │ │ ├── sp5xdec.c │ │ ├── sparc │ │ │ └── README │ │ ├── speedhq.c │ │ ├── speedhqenc.c │ │ ├── speedhqenc.h │ │ ├── srtdec.c │ │ ├── srtenc.c │ │ ├── startcode.c │ │ ├── startcode.h │ │ ├── subviewerdec.c │ │ ├── sunrast.c │ │ ├── sunrast.h │ │ ├── sunrastenc.c │ │ ├── svq1.c │ │ ├── svq1.h │ │ ├── svq1_cb.h │ │ ├── svq1_vlc.h │ │ ├── svq1dec.c │ │ ├── svq1enc.c │ │ ├── svq1enc.h │ │ ├── svq1enc_cb.h │ │ ├── svq3.c │ │ ├── synth_filter.c │ │ ├── synth_filter.h │ │ ├── tableprint.h │ │ ├── tableprint_vlc.h │ │ ├── tak.c │ │ ├── tak.h │ │ ├── tak_parser.c │ │ ├── takdec.c │ │ ├── takdsp.c │ │ ├── takdsp.h │ │ ├── targa.c │ │ ├── targa.h │ │ ├── targa_y216dec.c │ │ ├── targaenc.c │ │ ├── tdsc.c │ │ ├── tests │ │ │ ├── aarch64 │ │ │ │ └── dct.c │ │ │ ├── arm │ │ │ │ └── dct.c │ │ │ ├── avfft.c │ │ │ ├── avpacket.c │ │ │ ├── cabac.c │ │ │ ├── celp_math.c │ │ │ ├── codec_desc.c │ │ │ ├── dct.c │ │ │ ├── fft-fixed32.c │ │ │ ├── fft.c │ │ │ ├── golomb.c │ │ │ ├── h264_levels.c │ │ │ ├── h265_levels.c │ │ │ ├── htmlsubtitles.c │ │ │ ├── iirfilter.c │ │ │ ├── imgconvert.c │ │ │ ├── jpeg2000dwt.c │ │ │ ├── mathops.c │ │ │ ├── mjpegenc_huffman.c │ │ │ ├── motion.c │ │ │ ├── mpeg12framerate.c │ │ │ ├── ppc │ │ │ │ └── dct.c │ │ │ ├── rangecoder.c │ │ │ ├── snowenc.c │ │ │ ├── utils.c │ │ │ └── x86 │ │ │ │ └── dct.c │ │ ├── textdec.c │ │ ├── texturedsp.c │ │ ├── texturedsp.h │ │ ├── texturedspenc.c │ │ ├── thread.h │ │ ├── tiertexseqv.c │ │ ├── tiff.c │ │ ├── tiff.h │ │ ├── tiff_common.c │ │ ├── tiff_common.h │ │ ├── tiff_data.h │ │ ├── tiffenc.c │ │ ├── tmv.c │ │ ├── tpeldsp.c │ │ ├── tpeldsp.h │ │ ├── trace_headers_bsf.c │ │ ├── truehd_core_bsf.c │ │ ├── truemotion1.c │ │ ├── truemotion1data.h │ │ ├── truemotion2.c │ │ ├── truemotion2rt.c │ │ ├── truespeech.c │ │ ├── truespeech_data.h │ │ ├── tscc.c │ │ ├── tscc2.c │ │ ├── tscc2data.h │ │ ├── tta.c │ │ ├── ttadata.c │ │ ├── ttadata.h │ │ ├── ttadsp.c │ │ ├── ttadsp.h │ │ ├── ttaenc.c │ │ ├── ttaencdsp.c │ │ ├── ttaencdsp.h │ │ ├── ttmlenc.c │ │ ├── ttmlenc.h │ │ ├── twinvq.c │ │ ├── twinvq.h │ │ ├── twinvq_data.h │ │ ├── twinvqdec.c │ │ ├── txd.c │ │ ├── ulti.c │ │ ├── ulti_cb.h │ │ ├── unary.h │ │ ├── utils.c │ │ ├── utvideo.h │ │ ├── utvideodec.c │ │ ├── utvideodsp.c │ │ ├── utvideodsp.h │ │ ├── utvideoenc.c │ │ ├── v210_template.c │ │ ├── v210dec.c │ │ ├── v210dec.h │ │ ├── v210enc.c │ │ ├── v210enc.h │ │ ├── v210x.c │ │ ├── v308dec.c │ │ ├── v308enc.c │ │ ├── v408dec.c │ │ ├── v408enc.c │ │ ├── v410dec.c │ │ ├── v410enc.c │ │ ├── v4l2_buffers.c │ │ ├── v4l2_buffers.h │ │ ├── v4l2_context.c │ │ ├── v4l2_context.h │ │ ├── v4l2_fmt.c │ │ ├── v4l2_fmt.h │ │ ├── v4l2_m2m.c │ │ ├── v4l2_m2m.h │ │ ├── v4l2_m2m_dec.c │ │ ├── v4l2_m2m_enc.c │ │ ├── vaapi.h │ │ ├── vaapi_av1.c │ │ ├── vaapi_decode.c │ │ ├── vaapi_decode.h │ │ ├── vaapi_encode.c │ │ ├── vaapi_encode.h │ │ ├── vaapi_encode_h264.c │ │ ├── vaapi_encode_h265.c │ │ ├── vaapi_encode_mjpeg.c │ │ ├── vaapi_encode_mpeg2.c │ │ ├── vaapi_encode_vp8.c │ │ ├── vaapi_encode_vp9.c │ │ ├── vaapi_h264.c │ │ ├── vaapi_hevc.c │ │ ├── vaapi_hevc.h │ │ ├── vaapi_mjpeg.c │ │ ├── vaapi_mpeg2.c │ │ ├── vaapi_mpeg4.c │ │ ├── vaapi_vc1.c │ │ ├── vaapi_vp8.c │ │ ├── vaapi_vp9.c │ │ ├── vb.c │ │ ├── vble.c │ │ ├── vc1.c │ │ ├── vc1.h │ │ ├── vc1_block.c │ │ ├── vc1_common.h │ │ ├── vc1_loopfilter.c │ │ ├── vc1_mc.c │ │ ├── vc1_parser.c │ │ ├── vc1_pred.c │ │ ├── vc1_pred.h │ │ ├── vc1acdata.h │ │ ├── vc1data.c │ │ ├── vc1data.h │ │ ├── vc1dec.c │ │ ├── vc1dsp.c │ │ ├── vc1dsp.h │ │ ├── vc2enc.c │ │ ├── vc2enc_dwt.c │ │ ├── vc2enc_dwt.h │ │ ├── vcr1.c │ │ ├── vdpau.c │ │ ├── vdpau.h │ │ ├── vdpau_h264.c │ │ ├── vdpau_hevc.c │ │ ├── vdpau_internal.h │ │ ├── vdpau_mpeg12.c │ │ ├── vdpau_mpeg4.c │ │ ├── vdpau_vc1.c │ │ ├── vdpau_vp9.c │ │ ├── version.h │ │ ├── videodsp.c │ │ ├── videodsp.h │ │ ├── videodsp_template.c │ │ ├── videotoolbox.c │ │ ├── videotoolbox.h │ │ ├── videotoolboxenc.c │ │ ├── vima.c │ │ ├── vlc.h │ │ ├── vmdaudio.c │ │ ├── vmdvideo.c │ │ ├── vmnc.c │ │ ├── vorbis.c │ │ ├── vorbis.h │ │ ├── vorbis_data.c │ │ ├── vorbis_enc_data.h │ │ ├── vorbis_parser.c │ │ ├── vorbis_parser.h │ │ ├── vorbis_parser_internal.h │ │ ├── vorbisdec.c │ │ ├── vorbisdsp.c │ │ ├── vorbisdsp.h │ │ ├── vorbisenc.c │ │ ├── vp3.c │ │ ├── vp3_parser.c │ │ ├── vp3data.h │ │ ├── vp3dsp.c │ │ ├── vp3dsp.h │ │ ├── vp4data.h │ │ ├── vp5.c │ │ ├── vp56.c │ │ ├── vp56.h │ │ ├── vp56data.c │ │ ├── vp56data.h │ │ ├── vp56dsp.c │ │ ├── vp56dsp.h │ │ ├── vp56rac.c │ │ ├── vp5data.h │ │ ├── vp6.c │ │ ├── vp6data.h │ │ ├── vp6dsp.c │ │ ├── vp8.c │ │ ├── vp8.h │ │ ├── vp8_parser.c │ │ ├── vp8data.h │ │ ├── vp8dsp.c │ │ ├── vp8dsp.h │ │ ├── vp9.c │ │ ├── vp9.h │ │ ├── vp9_mc_template.c │ │ ├── vp9_metadata_bsf.c │ │ ├── vp9_parser.c │ │ ├── vp9_raw_reorder_bsf.c │ │ ├── vp9_superframe_bsf.c │ │ ├── vp9_superframe_split_bsf.c │ │ ├── vp9block.c │ │ ├── vp9data.c │ │ ├── vp9data.h │ │ ├── vp9dec.h │ │ ├── vp9dsp.c │ │ ├── vp9dsp.h │ │ ├── vp9dsp_10bpp.c │ │ ├── vp9dsp_12bpp.c │ │ ├── vp9dsp_8bpp.c │ │ ├── vp9dsp_template.c │ │ ├── vp9lpf.c │ │ ├── vp9mvs.c │ │ ├── vp9prob.c │ │ ├── vp9recon.c │ │ ├── vp9shared.h │ │ ├── vqavideo.c │ │ ├── vt_internal.h │ │ ├── wavpack.c │ │ ├── wavpack.h │ │ ├── wavpackdata.c │ │ ├── wavpackenc.c │ │ ├── wavpackenc.h │ │ ├── wcmv.c │ │ ├── webp.c │ │ ├── webp_parser.c │ │ ├── webvttdec.c │ │ ├── webvttenc.c │ │ ├── wma.c │ │ ├── wma.h │ │ ├── wma_common.c │ │ ├── wma_common.h │ │ ├── wma_freqs.c │ │ ├── wma_freqs.h │ │ ├── wmadata.h │ │ ├── wmadec.c │ │ ├── wmaenc.c │ │ ├── wmalosslessdec.c │ │ ├── wmaprodata.h │ │ ├── wmaprodec.c │ │ ├── wmavoice.c │ │ ├── wmavoice_data.h │ │ ├── wmv2.c │ │ ├── wmv2.h │ │ ├── wmv2data.c │ │ ├── wmv2data.h │ │ ├── wmv2dec.c │ │ ├── wmv2dsp.c │ │ ├── wmv2dsp.h │ │ ├── wmv2enc.c │ │ ├── wnv1.c │ │ ├── wrapped_avframe.c │ │ ├── ws-snd1.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── aacencdsp.asm │ │ │ ├── aacencdsp_init.c │ │ │ ├── aacpsdsp.asm │ │ │ ├── aacpsdsp_init.c │ │ │ ├── ac3dsp.asm │ │ │ ├── ac3dsp_downmix.asm │ │ │ ├── ac3dsp_init.c │ │ │ ├── alacdsp.asm │ │ │ ├── alacdsp_init.c │ │ │ ├── audiodsp.asm │ │ │ ├── audiodsp_init.c │ │ │ ├── blockdsp.asm │ │ │ ├── blockdsp_init.c │ │ │ ├── bswapdsp.asm │ │ │ ├── bswapdsp_init.c │ │ │ ├── cabac.h │ │ │ ├── cavsdsp.c │ │ │ ├── cavsidct.asm │ │ │ ├── celt_pvq_init.c │ │ │ ├── celt_pvq_search.asm │ │ │ ├── cfhddsp.asm │ │ │ ├── cfhddsp_init.c │ │ │ ├── cfhdencdsp.asm │ │ │ ├── cfhdencdsp_init.c │ │ │ ├── constants.c │ │ │ ├── constants.h │ │ │ ├── dcadsp.asm │ │ │ ├── dcadsp_init.c │ │ │ ├── dct32.asm │ │ │ ├── dct_init.c │ │ │ ├── dirac_dwt.asm │ │ │ ├── dirac_dwt_init.c │ │ │ ├── diracdsp.asm │ │ │ ├── diracdsp_init.c │ │ │ ├── dnxhdenc.asm │ │ │ ├── dnxhdenc_init.c │ │ │ ├── exrdsp.asm │ │ │ ├── exrdsp_init.c │ │ │ ├── fdct.c │ │ │ ├── fdct.h │ │ │ ├── fdctdsp_init.c │ │ │ ├── fft.asm │ │ │ ├── fft.h │ │ │ ├── fft_init.c │ │ │ ├── flac_dsp_gpl.asm │ │ │ ├── flacdsp.asm │ │ │ ├── flacdsp_init.c │ │ │ ├── fmtconvert.asm │ │ │ ├── fmtconvert_init.c │ │ │ ├── fpel.asm │ │ │ ├── fpel.h │ │ │ ├── g722dsp.asm │ │ │ ├── g722dsp_init.c │ │ │ ├── h263_loopfilter.asm │ │ │ ├── h263dsp_init.c │ │ │ ├── h264_cabac.c │ │ │ ├── h264_chromamc.asm │ │ │ ├── h264_chromamc_10bit.asm │ │ │ ├── h264_deblock.asm │ │ │ ├── h264_deblock_10bit.asm │ │ │ ├── h264_idct.asm │ │ │ ├── h264_idct_10bit.asm │ │ │ ├── h264_intrapred.asm │ │ │ ├── h264_intrapred_10bit.asm │ │ │ ├── h264_intrapred_init.c │ │ │ ├── h264_qpel.c │ │ │ ├── h264_qpel_10bit.asm │ │ │ ├── h264_qpel_8bit.asm │ │ │ ├── h264_weight.asm │ │ │ ├── h264_weight_10bit.asm │ │ │ ├── h264chroma_init.c │ │ │ ├── h264dsp_init.c │ │ │ ├── hevc_add_res.asm │ │ │ ├── hevc_deblock.asm │ │ │ ├── hevc_idct.asm │ │ │ ├── hevc_mc.asm │ │ │ ├── hevc_sao.asm │ │ │ ├── hevc_sao_10bit.asm │ │ │ ├── hevcdsp.h │ │ │ ├── hevcdsp_init.c │ │ │ ├── hpeldsp.asm │ │ │ ├── hpeldsp.h │ │ │ ├── hpeldsp_init.c │ │ │ ├── hpeldsp_rnd_template.c │ │ │ ├── hpeldsp_vp3.asm │ │ │ ├── hpeldsp_vp3_init.c │ │ │ ├── huffyuvdsp.asm │ │ │ ├── huffyuvdsp_init.c │ │ │ ├── huffyuvdsp_template.asm │ │ │ ├── huffyuvencdsp.asm │ │ │ ├── huffyuvencdsp_init.c │ │ │ ├── idctdsp.asm │ │ │ ├── idctdsp.h │ │ │ ├── idctdsp_init.c │ │ │ ├── imdct36.asm │ │ │ ├── inline_asm.h │ │ │ ├── jpeg2000dsp.asm │ │ │ ├── jpeg2000dsp_init.c │ │ │ ├── lossless_audiodsp.asm │ │ │ ├── lossless_audiodsp_init.c │ │ │ ├── lossless_videodsp.asm │ │ │ ├── lossless_videodsp_init.c │ │ │ ├── lossless_videoencdsp.asm │ │ │ ├── lossless_videoencdsp_init.c │ │ │ ├── lpc.c │ │ │ ├── mathops.h │ │ │ ├── mdct15.asm │ │ │ ├── mdct15_init.c │ │ │ ├── me_cmp.asm │ │ │ ├── me_cmp_init.c │ │ │ ├── mlpdsp.asm │ │ │ ├── mlpdsp_init.c │ │ │ ├── mpegaudiodsp.c │ │ │ ├── mpegvideo.c │ │ │ ├── mpegvideodsp.c │ │ │ ├── mpegvideoenc.c │ │ │ ├── mpegvideoenc_qns_template.c │ │ │ ├── mpegvideoenc_template.c │ │ │ ├── mpegvideoencdsp.asm │ │ │ ├── mpegvideoencdsp_init.c │ │ │ ├── opusdsp.asm │ │ │ ├── opusdsp_init.c │ │ │ ├── pixblockdsp.asm │ │ │ ├── pixblockdsp_init.c │ │ │ ├── pngdsp.asm │ │ │ ├── pngdsp_init.c │ │ │ ├── proresdsp.asm │ │ │ ├── proresdsp_init.c │ │ │ ├── qpel.asm │ │ │ ├── qpeldsp.asm │ │ │ ├── qpeldsp_init.c │ │ │ ├── rnd_template.c │ │ │ ├── rv34dsp.asm │ │ │ ├── rv34dsp_init.c │ │ │ ├── rv40dsp.asm │ │ │ ├── rv40dsp_init.c │ │ │ ├── sbcdsp.asm │ │ │ ├── sbcdsp_init.c │ │ │ ├── sbrdsp.asm │ │ │ ├── sbrdsp_init.c │ │ │ ├── simple_idct.asm │ │ │ ├── simple_idct.h │ │ │ ├── simple_idct10.asm │ │ │ ├── simple_idct10_template.asm │ │ │ ├── snowdsp.c │ │ │ ├── svq1enc.asm │ │ │ ├── svq1enc_init.c │ │ │ ├── synth_filter.asm │ │ │ ├── synth_filter_init.c │ │ │ ├── takdsp.asm │ │ │ ├── takdsp_init.c │ │ │ ├── ttadsp.asm │ │ │ ├── ttadsp_init.c │ │ │ ├── ttaencdsp.asm │ │ │ ├── ttaencdsp_init.c │ │ │ ├── utvideodsp.asm │ │ │ ├── utvideodsp_init.c │ │ │ ├── v210-init.c │ │ │ ├── v210.asm │ │ │ ├── v210enc.asm │ │ │ ├── v210enc_init.c │ │ │ ├── vc1dsp.h │ │ │ ├── vc1dsp_init.c │ │ │ ├── vc1dsp_loopfilter.asm │ │ │ ├── vc1dsp_mc.asm │ │ │ ├── vc1dsp_mmx.c │ │ │ ├── videodsp.asm │ │ │ ├── videodsp_init.c │ │ │ ├── vorbisdsp.asm │ │ │ ├── vorbisdsp_init.c │ │ │ ├── vp3dsp.asm │ │ │ ├── vp3dsp_init.c │ │ │ ├── vp56_arith.h │ │ │ ├── vp6dsp.asm │ │ │ ├── vp6dsp_init.c │ │ │ ├── vp8dsp.asm │ │ │ ├── vp8dsp_init.c │ │ │ ├── vp8dsp_loopfilter.asm │ │ │ ├── vp9dsp_init.c │ │ │ ├── vp9dsp_init.h │ │ │ ├── vp9dsp_init_10bpp.c │ │ │ ├── vp9dsp_init_12bpp.c │ │ │ ├── vp9dsp_init_16bpp.c │ │ │ ├── vp9dsp_init_16bpp_template.c │ │ │ ├── vp9intrapred.asm │ │ │ ├── vp9intrapred_16bpp.asm │ │ │ ├── vp9itxfm.asm │ │ │ ├── vp9itxfm_16bpp.asm │ │ │ ├── vp9itxfm_template.asm │ │ │ ├── vp9lpf.asm │ │ │ ├── vp9lpf_16bpp.asm │ │ │ ├── vp9mc.asm │ │ │ ├── vp9mc_16bpp.asm │ │ │ ├── w64xmmtest.c │ │ │ ├── xvididct.asm │ │ │ ├── xvididct.h │ │ │ └── xvididct_init.c │ │ ├── xan.c │ │ ├── xbm_parser.c │ │ ├── xbmdec.c │ │ ├── xbmenc.c │ │ ├── xface.c │ │ ├── xface.h │ │ ├── xfacedec.c │ │ ├── xfaceenc.c │ │ ├── xiph.c │ │ ├── xiph.h │ │ ├── xl.c │ │ ├── xma_parser.c │ │ ├── xpmdec.c │ │ ├── xsubdec.c │ │ ├── xsubenc.c │ │ ├── xvididct.c │ │ ├── xvididct.h │ │ ├── xvmc.h │ │ ├── xvmc_internal.h │ │ ├── xwd.h │ │ ├── xwddec.c │ │ ├── xwdenc.c │ │ ├── xxan.c │ │ ├── y41pdec.c │ │ ├── y41penc.c │ │ ├── ylc.c │ │ ├── yop.c │ │ ├── yuv4dec.c │ │ ├── yuv4enc.c │ │ ├── zerocodec.c │ │ ├── zmbv.c │ │ └── zmbvenc.c │ ├── libavformat │ │ ├── 3dostr.c │ │ ├── 4xm.c │ │ ├── Makefile │ │ ├── a64.c │ │ ├── aacdec.c │ │ ├── aadec.c │ │ ├── aaxdec.c │ │ ├── ac3dec.c │ │ ├── acedec.c │ │ ├── acm.c │ │ ├── act.c │ │ ├── adp.c │ │ ├── ads.c │ │ ├── adtsenc.c │ │ ├── adxdec.c │ │ ├── aea.c │ │ ├── afc.c │ │ ├── aiff.c │ │ ├── aiff.h │ │ ├── aiffdec.c │ │ ├── aiffenc.c │ │ ├── aixdec.c │ │ ├── allformats.c │ │ ├── alp.c │ │ ├── amr.c │ │ ├── amvenc.c │ │ ├── anm.c │ │ ├── apc.c │ │ ├── ape.c │ │ ├── apetag.c │ │ ├── apetag.h │ │ ├── apm.c │ │ ├── apngdec.c │ │ ├── apngenc.c │ │ ├── aptxdec.c │ │ ├── aqtitledec.c │ │ ├── argo_asf.c │ │ ├── argo_asf.h │ │ ├── argo_brp.c │ │ ├── asf.c │ │ ├── asf.h │ │ ├── asfcrypt.c │ │ ├── asfcrypt.h │ │ ├── asfdec_f.c │ │ ├── asfdec_o.c │ │ ├── asfenc.c │ │ ├── assdec.c │ │ ├── assenc.c │ │ ├── ast.c │ │ ├── ast.h │ │ ├── astdec.c │ │ ├── astenc.c │ │ ├── async.c │ │ ├── au.c │ │ ├── av1.c │ │ ├── av1.h │ │ ├── av1dec.c │ │ ├── avc.c │ │ ├── avc.h │ │ ├── avformat.h │ │ ├── avformatres.rc │ │ ├── avi.h │ │ ├── avidec.c │ │ ├── avienc.c │ │ ├── avio.c │ │ ├── avio.h │ │ ├── avio_internal.h │ │ ├── aviobuf.c │ │ ├── avisynth.c │ │ ├── avlanguage.c │ │ ├── avlanguage.h │ │ ├── avr.c │ │ ├── avs.c │ │ ├── avs2dec.c │ │ ├── avs3dec.c │ │ ├── bethsoftvid.c │ │ ├── bfi.c │ │ ├── bink.c │ │ ├── binka.c │ │ ├── bintext.c │ │ ├── bit.c │ │ ├── bluray.c │ │ ├── bmv.c │ │ ├── boadec.c │ │ ├── brstm.c │ │ ├── c93.c │ │ ├── cache.c │ │ ├── caf.c │ │ ├── caf.h │ │ ├── cafdec.c │ │ ├── cafenc.c │ │ ├── cavsvideodec.c │ │ ├── cdg.c │ │ ├── cdxl.c │ │ ├── chromaprint.c │ │ ├── cinedec.c │ │ ├── codec2.c │ │ ├── concat.c │ │ ├── concatdec.c │ │ ├── crcenc.c │ │ ├── crypto.c │ │ ├── dash.c │ │ ├── dash.h │ │ ├── dashdec.c │ │ ├── dashenc.c │ │ ├── data_uri.c │ │ ├── dauddec.c │ │ ├── daudenc.c │ │ ├── dcstr.c │ │ ├── derf.c │ │ ├── dfa.c │ │ ├── dhav.c │ │ ├── diracdec.c │ │ ├── dnxhddec.c │ │ ├── dsfdec.c │ │ ├── dsicin.c │ │ ├── dss.c │ │ ├── dtsdec.c │ │ ├── dtshddec.c │ │ ├── dump.c │ │ ├── dv.c │ │ ├── dv.h │ │ ├── dvbsub.c │ │ ├── dvbtxt.c │ │ ├── dvenc.c │ │ ├── dxa.c │ │ ├── eacdata.c │ │ ├── electronicarts.c │ │ ├── epafdec.c │ │ ├── ffmeta.h │ │ ├── ffmetadec.c │ │ ├── ffmetaenc.c │ │ ├── fifo.c │ │ ├── fifo_test.c │ │ ├── file.c │ │ ├── file_open.c │ │ ├── filmstripdec.c │ │ ├── filmstripenc.c │ │ ├── fitsdec.c │ │ ├── fitsenc.c │ │ ├── flac_picture.c │ │ ├── flac_picture.h │ │ ├── flacdec.c │ │ ├── flacenc.c │ │ ├── flacenc.h │ │ ├── flacenc_header.c │ │ ├── flic.c │ │ ├── flv.h │ │ ├── flvdec.c │ │ ├── flvenc.c │ │ ├── format.c │ │ ├── framecrcenc.c │ │ ├── framehash.c │ │ ├── frmdec.c │ │ ├── fsb.c │ │ ├── ftp.c │ │ ├── fwse.c │ │ ├── g722.c │ │ ├── g723_1.c │ │ ├── g726.c │ │ ├── g729dec.c │ │ ├── gdv.c │ │ ├── genh.c │ │ ├── gif.c │ │ ├── gifdec.c │ │ ├── golomb_tab.c │ │ ├── gopher.c │ │ ├── gsmdec.c │ │ ├── gxf.c │ │ ├── gxf.h │ │ ├── gxfenc.c │ │ ├── h261dec.c │ │ ├── h263dec.c │ │ ├── h264dec.c │ │ ├── hashenc.c │ │ ├── hca.c │ │ ├── hcom.c │ │ ├── hdsenc.c │ │ ├── hevc.c │ │ ├── hevc.h │ │ ├── hevcdec.c │ │ ├── hls.c │ │ ├── hlsenc.c │ │ ├── hlsplaylist.c │ │ ├── hlsplaylist.h │ │ ├── hlsproto.c │ │ ├── hnm.c │ │ ├── http.c │ │ ├── http.h │ │ ├── httpauth.c │ │ ├── httpauth.h │ │ ├── icecast.c │ │ ├── icodec.c │ │ ├── icoenc.c │ │ ├── id3v1.c │ │ ├── id3v1.h │ │ ├── id3v2.c │ │ ├── id3v2.h │ │ ├── id3v2enc.c │ │ ├── idcin.c │ │ ├── idroqdec.c │ │ ├── idroqenc.c │ │ ├── iff.c │ │ ├── ifv.c │ │ ├── ilbc.c │ │ ├── img2.c │ │ ├── img2.h │ │ ├── img2_alias_pix.c │ │ ├── img2_brender_pix.c │ │ ├── img2dec.c │ │ ├── img2enc.c │ │ ├── imx.c │ │ ├── ingenientdec.c │ │ ├── internal.h │ │ ├── ip.c │ │ ├── ip.h │ │ ├── ipmovie.c │ │ ├── ipudec.c │ │ ├── ircam.c │ │ ├── ircam.h │ │ ├── ircamdec.c │ │ ├── ircamenc.c │ │ ├── isom.c │ │ ├── isom.h │ │ ├── isom_tags.c │ │ ├── iss.c │ │ ├── iv8.c │ │ ├── ivfdec.c │ │ ├── ivfenc.c │ │ ├── jacosubdec.c │ │ ├── jacosubenc.c │ │ ├── jvdec.c │ │ ├── kvag.c │ │ ├── latmenc.c │ │ ├── libamqp.c │ │ ├── libavformat.v │ │ ├── libgme.c │ │ ├── libmodplug.c │ │ ├── libopenmpt.c │ │ ├── librist.c │ │ ├── librtmp.c │ │ ├── libsmbclient.c │ │ ├── libsrt.c │ │ ├── libssh.c │ │ ├── libzmq.c │ │ ├── lmlm4.c │ │ ├── loasdec.c │ │ ├── log2_tab.c │ │ ├── lrc.c │ │ ├── lrc.h │ │ ├── lrcdec.c │ │ ├── lrcenc.c │ │ ├── luodatdec.c │ │ ├── lvfdec.c │ │ ├── lxfdec.c │ │ ├── m4vdec.c │ │ ├── matroska.c │ │ ├── matroska.h │ │ ├── matroskadec.c │ │ ├── matroskaenc.c │ │ ├── mca.c │ │ ├── mccdec.c │ │ ├── md5proto.c │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── mgsts.c │ │ ├── microdvddec.c │ │ ├── microdvdenc.c │ │ ├── mj2kdec.c │ │ ├── mkvtimestamp_v2.c │ │ ├── mlpdec.c │ │ ├── mlvdec.c │ │ ├── mm.c │ │ ├── mmf.c │ │ ├── mms.c │ │ ├── mms.h │ │ ├── mmsh.c │ │ ├── mmst.c │ │ ├── mods.c │ │ ├── moflex.c │ │ ├── mov.c │ │ ├── mov_chan.c │ │ ├── mov_chan.h │ │ ├── mov_esds.c │ │ ├── movenc.c │ │ ├── movenc.h │ │ ├── movenccenc.c │ │ ├── movenccenc.h │ │ ├── movenchint.c │ │ ├── mp3dec.c │ │ ├── mp3enc.c │ │ ├── mpc.c │ │ ├── mpc8.c │ │ ├── mpeg.c │ │ ├── mpeg.h │ │ ├── mpegenc.c │ │ ├── mpegts.c │ │ ├── mpegts.h │ │ ├── mpegtsenc.c │ │ ├── mpegvideodec.c │ │ ├── mpjpeg.c │ │ ├── mpjpegdec.c │ │ ├── mpl2dec.c │ │ ├── mpsubdec.c │ │ ├── msf.c │ │ ├── msnwc_tcp.c │ │ ├── mspdec.c │ │ ├── mtaf.c │ │ ├── mtv.c │ │ ├── musx.c │ │ ├── mux.c │ │ ├── mvdec.c │ │ ├── mvi.c │ │ ├── mxf.c │ │ ├── mxf.h │ │ ├── mxfdec.c │ │ ├── mxfenc.c │ │ ├── mxg.c │ │ ├── ncdec.c │ │ ├── network.c │ │ ├── network.h │ │ ├── nistspheredec.c │ │ ├── nspdec.c │ │ ├── nsvdec.c │ │ ├── nullenc.c │ │ ├── nut.c │ │ ├── nut.h │ │ ├── nutdec.c │ │ ├── nutenc.c │ │ ├── nuv.c │ │ ├── oggdec.c │ │ ├── oggdec.h │ │ ├── oggenc.c │ │ ├── oggparsecelt.c │ │ ├── oggparsedirac.c │ │ ├── oggparseflac.c │ │ ├── oggparseogm.c │ │ ├── oggparseopus.c │ │ ├── oggparseskeleton.c │ │ ├── oggparsespeex.c │ │ ├── oggparsetheora.c │ │ ├── oggparsevorbis.c │ │ ├── oggparsevp8.c │ │ ├── oma.c │ │ ├── oma.h │ │ ├── omadec.c │ │ ├── omaenc.c │ │ ├── options.c │ │ ├── options_table.h │ │ ├── os_support.c │ │ ├── os_support.h │ │ ├── paf.c │ │ ├── pcm.c │ │ ├── pcm.h │ │ ├── pcmdec.c │ │ ├── pcmenc.c │ │ ├── pjsdec.c │ │ ├── pmpdec.c │ │ ├── pp_bnk.c │ │ ├── prompeg.c │ │ ├── protocols.c │ │ ├── psxstr.c │ │ ├── pva.c │ │ ├── pvfdec.c │ │ ├── qcp.c │ │ ├── qtpalette.c │ │ ├── qtpalette.h │ │ ├── r3d.c │ │ ├── rawdec.c │ │ ├── rawdec.h │ │ ├── rawenc.c │ │ ├── rawenc.h │ │ ├── rawutils.c │ │ ├── rawvideodec.c │ │ ├── rdt.c │ │ ├── rdt.h │ │ ├── realtextdec.c │ │ ├── redspark.c │ │ ├── replaygain.c │ │ ├── replaygain.h │ │ ├── riff.c │ │ ├── riff.h │ │ ├── riffdec.c │ │ ├── riffenc.c │ │ ├── rl2.c │ │ ├── rm.c │ │ ├── rm.h │ │ ├── rmdec.c │ │ ├── rmenc.c │ │ ├── rmsipr.c │ │ ├── rmsipr.h │ │ ├── rpl.c │ │ ├── rsd.c │ │ ├── rso.c │ │ ├── rso.h │ │ ├── rsodec.c │ │ ├── rsoenc.c │ │ ├── rtmp.h │ │ ├── rtmpcrypt.c │ │ ├── rtmpcrypt.h │ │ ├── rtmpdh.c │ │ ├── rtmpdh.h │ │ ├── rtmpdigest.c │ │ ├── rtmphttp.c │ │ ├── rtmppkt.c │ │ ├── rtmppkt.h │ │ ├── rtmpproto.c │ │ ├── rtp.c │ │ ├── rtp.h │ │ ├── rtpdec.c │ │ ├── rtpdec.h │ │ ├── rtpdec_ac3.c │ │ ├── rtpdec_amr.c │ │ ├── rtpdec_asf.c │ │ ├── rtpdec_dv.c │ │ ├── rtpdec_formats.h │ │ ├── rtpdec_g726.c │ │ ├── rtpdec_h261.c │ │ ├── rtpdec_h263.c │ │ ├── rtpdec_h263_rfc2190.c │ │ ├── rtpdec_h264.c │ │ ├── rtpdec_hevc.c │ │ ├── rtpdec_ilbc.c │ │ ├── rtpdec_jpeg.c │ │ ├── rtpdec_latm.c │ │ ├── rtpdec_mpa_robust.c │ │ ├── rtpdec_mpeg12.c │ │ ├── rtpdec_mpeg4.c │ │ ├── rtpdec_mpegts.c │ │ ├── rtpdec_qcelp.c │ │ ├── rtpdec_qdm2.c │ │ ├── rtpdec_qt.c │ │ ├── rtpdec_rfc4175.c │ │ ├── rtpdec_svq3.c │ │ ├── rtpdec_vc2hq.c │ │ ├── rtpdec_vp8.c │ │ ├── rtpdec_vp9.c │ │ ├── rtpdec_xiph.c │ │ ├── rtpenc.c │ │ ├── rtpenc.h │ │ ├── rtpenc_aac.c │ │ ├── rtpenc_amr.c │ │ ├── rtpenc_chain.c │ │ ├── rtpenc_chain.h │ │ ├── rtpenc_h261.c │ │ ├── rtpenc_h263.c │ │ ├── rtpenc_h263_rfc2190.c │ │ ├── rtpenc_h264_hevc.c │ │ ├── rtpenc_jpeg.c │ │ ├── rtpenc_latm.c │ │ ├── rtpenc_mpegts.c │ │ ├── rtpenc_mpv.c │ │ ├── rtpenc_vc2hq.c │ │ ├── rtpenc_vp8.c │ │ ├── rtpenc_vp9.c │ │ ├── rtpenc_xiph.c │ │ ├── rtpproto.c │ │ ├── rtpproto.h │ │ ├── rtsp.c │ │ ├── rtsp.h │ │ ├── rtspcodes.h │ │ ├── rtspdec.c │ │ ├── rtspenc.c │ │ ├── s337m.c │ │ ├── samidec.c │ │ ├── sapdec.c │ │ ├── sapenc.c │ │ ├── sauce.c │ │ ├── sauce.h │ │ ├── sbcdec.c │ │ ├── sbgdec.c │ │ ├── sccdec.c │ │ ├── sccenc.c │ │ ├── sctp.c │ │ ├── sdp.c │ │ ├── sdr2.c │ │ ├── sdsdec.c │ │ ├── sdxdec.c │ │ ├── segafilm.c │ │ ├── segafilmenc.c │ │ ├── segment.c │ │ ├── serdec.c │ │ ├── sga.c │ │ ├── shortendec.c │ │ ├── sierravmd.c │ │ ├── siff.c │ │ ├── smacker.c │ │ ├── smjpeg.c │ │ ├── smjpeg.h │ │ ├── smjpegdec.c │ │ ├── smjpegenc.c │ │ ├── smoothstreamingenc.c │ │ ├── smush.c │ │ ├── sol.c │ │ ├── sox.h │ │ ├── soxdec.c │ │ ├── soxenc.c │ │ ├── spdif.c │ │ ├── spdif.h │ │ ├── spdifdec.c │ │ ├── spdifenc.c │ │ ├── srtdec.c │ │ ├── srtenc.c │ │ ├── srtp.c │ │ ├── srtp.h │ │ ├── srtpproto.c │ │ ├── stldec.c │ │ ├── subfile.c │ │ ├── subtitles.c │ │ ├── subtitles.h │ │ ├── subviewer1dec.c │ │ ├── subviewerdec.c │ │ ├── supdec.c │ │ ├── supenc.c │ │ ├── svag.c │ │ ├── svs.c │ │ ├── swf.c │ │ ├── swf.h │ │ ├── swfdec.c │ │ ├── swfenc.c │ │ ├── takdec.c │ │ ├── tcp.c │ │ ├── tedcaptionsdec.c │ │ ├── tee.c │ │ ├── tee_common.c │ │ ├── tee_common.h │ │ ├── teeproto.c │ │ ├── tests │ │ │ ├── fifo_muxer.c │ │ │ ├── movenc.c │ │ │ ├── noproxy.c │ │ │ ├── rtmpdh.c │ │ │ ├── seek.c │ │ │ ├── srtp.c │ │ │ └── url.c │ │ ├── thp.c │ │ ├── tiertexseq.c │ │ ├── tls.c │ │ ├── tls.h │ │ ├── tls_gnutls.c │ │ ├── tls_libtls.c │ │ ├── tls_mbedtls.c │ │ ├── tls_openssl.c │ │ ├── tls_schannel.c │ │ ├── tls_securetransport.c │ │ ├── tmv.c │ │ ├── tta.c │ │ ├── ttaenc.c │ │ ├── ttmlenc.c │ │ ├── tty.c │ │ ├── txd.c │ │ ├── ty.c │ │ ├── udp.c │ │ ├── uncodedframecrcenc.c │ │ ├── unix.c │ │ ├── url.c │ │ ├── url.h │ │ ├── urldecode.c │ │ ├── urldecode.h │ │ ├── utils.c │ │ ├── v210.c │ │ ├── vag.c │ │ ├── vapoursynth.c │ │ ├── vc1dec.c │ │ ├── vc1test.c │ │ ├── vc1testenc.c │ │ ├── version.h │ │ ├── vividas.c │ │ ├── vivo.c │ │ ├── voc.c │ │ ├── voc.h │ │ ├── voc_packet.c │ │ ├── vocdec.c │ │ ├── vocenc.c │ │ ├── vorbiscomment.c │ │ ├── vorbiscomment.h │ │ ├── vpcc.c │ │ ├── vpcc.h │ │ ├── vpk.c │ │ ├── vplayerdec.c │ │ ├── vqf.c │ │ ├── w64.c │ │ ├── w64.h │ │ ├── wavdec.c │ │ ├── wavenc.c │ │ ├── wc3movie.c │ │ ├── webm_chunk.c │ │ ├── webmdashenc.c │ │ ├── webpenc.c │ │ ├── webvttdec.c │ │ ├── webvttenc.c │ │ ├── westwood_aud.c │ │ ├── westwood_vqa.c │ │ ├── wsddec.c │ │ ├── wtv.h │ │ ├── wtv_common.c │ │ ├── wtvdec.c │ │ ├── wtvenc.c │ │ ├── wv.c │ │ ├── wv.h │ │ ├── wvdec.c │ │ ├── wvedec.c │ │ ├── wvenc.c │ │ ├── xa.c │ │ ├── xmv.c │ │ ├── xvag.c │ │ ├── xwma.c │ │ ├── yop.c │ │ ├── yuv4mpeg.h │ │ ├── yuv4mpegdec.c │ │ └── yuv4mpegenc.c │ ├── libavutil │ │ ├── Makefile │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── asm.S │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── float_dsp_init.c │ │ │ ├── float_dsp_neon.S │ │ │ ├── neontest.h │ │ │ └── timer.h │ │ ├── adler32.c │ │ ├── adler32.h │ │ ├── aes.c │ │ ├── aes.h │ │ ├── aes_ctr.c │ │ ├── aes_ctr.h │ │ ├── aes_internal.h │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── asm.S │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── float_dsp_arm.h │ │ │ ├── float_dsp_init_arm.c │ │ │ ├── float_dsp_init_neon.c │ │ │ ├── float_dsp_init_vfp.c │ │ │ ├── float_dsp_neon.S │ │ │ ├── float_dsp_vfp.S │ │ │ ├── intmath.h │ │ │ ├── intreadwrite.h │ │ │ ├── neontest.h │ │ │ └── timer.h │ │ ├── attributes.h │ │ ├── audio_fifo.c │ │ ├── audio_fifo.h │ │ ├── avassert.h │ │ ├── avr32 │ │ │ ├── bswap.h │ │ │ └── intreadwrite.h │ │ ├── avsscanf.c │ │ ├── avstring.c │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── avutilres.rc │ │ ├── base64.c │ │ ├── base64.h │ │ ├── bfin │ │ │ ├── bswap.h │ │ │ └── timer.h │ │ ├── blowfish.c │ │ ├── blowfish.h │ │ ├── bprint.c │ │ ├── bprint.h │ │ ├── bswap.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── buffer_internal.h │ │ ├── camellia.c │ │ ├── camellia.h │ │ ├── cast5.c │ │ ├── cast5.h │ │ ├── channel_layout.c │ │ ├── channel_layout.h │ │ ├── color_utils.c │ │ ├── color_utils.h │ │ ├── colorspace.h │ │ ├── common.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── cpu_internal.h │ │ ├── crc.c │ │ ├── crc.h │ │ ├── cuda_check.h │ │ ├── des.c │ │ ├── des.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── display.c │ │ ├── display.h │ │ ├── dovi_meta.c │ │ ├── dovi_meta.h │ │ ├── downmix_info.c │ │ ├── downmix_info.h │ │ ├── dynarray.h │ │ ├── encryption_info.c │ │ ├── encryption_info.h │ │ ├── error.c │ │ ├── error.h │ │ ├── eval.c │ │ ├── eval.h │ │ ├── ffmath.h │ │ ├── fifo.c │ │ ├── fifo.h │ │ ├── file.c │ │ ├── file.h │ │ ├── file_open.c │ │ ├── film_grain_params.c │ │ ├── film_grain_params.h │ │ ├── fixed_dsp.c │ │ ├── fixed_dsp.h │ │ ├── float_dsp.c │ │ ├── float_dsp.h │ │ ├── frame.c │ │ ├── frame.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── hdr_dynamic_metadata.c │ │ ├── hdr_dynamic_metadata.h │ │ ├── hmac.c │ │ ├── hmac.h │ │ ├── hwcontext.c │ │ ├── hwcontext.h │ │ ├── hwcontext_cuda.c │ │ ├── hwcontext_cuda.h │ │ ├── hwcontext_cuda_internal.h │ │ ├── hwcontext_d3d11va.c │ │ ├── hwcontext_d3d11va.h │ │ ├── hwcontext_drm.c │ │ ├── hwcontext_drm.h │ │ ├── hwcontext_dxva2.c │ │ ├── hwcontext_dxva2.h │ │ ├── hwcontext_internal.h │ │ ├── hwcontext_mediacodec.c │ │ ├── hwcontext_mediacodec.h │ │ ├── hwcontext_opencl.c │ │ ├── hwcontext_opencl.h │ │ ├── hwcontext_qsv.c │ │ ├── hwcontext_qsv.h │ │ ├── hwcontext_vaapi.c │ │ ├── hwcontext_vaapi.h │ │ ├── hwcontext_vdpau.c │ │ ├── hwcontext_vdpau.h │ │ ├── hwcontext_videotoolbox.c │ │ ├── hwcontext_videotoolbox.h │ │ ├── hwcontext_vulkan.c │ │ ├── hwcontext_vulkan.h │ │ ├── imgutils.c │ │ ├── imgutils.h │ │ ├── imgutils_internal.h │ │ ├── integer.c │ │ ├── integer.h │ │ ├── internal.h │ │ ├── intfloat.h │ │ ├── intmath.c │ │ ├── intmath.h │ │ ├── intreadwrite.h │ │ ├── lfg.c │ │ ├── lfg.h │ │ ├── libavutil.v │ │ ├── libm.h │ │ ├── lls.c │ │ ├── lls.h │ │ ├── log.c │ │ ├── log.h │ │ ├── log2_tab.c │ │ ├── lzo.c │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mastering_display_metadata.c │ │ ├── mastering_display_metadata.h │ │ ├── mathematics.c │ │ ├── mathematics.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── mem.c │ │ ├── mem.h │ │ ├── mem_internal.h │ │ ├── mips │ │ │ ├── Makefile │ │ │ ├── asmdefs.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── float_dsp_mips.c │ │ │ ├── generic_macros_msa.h │ │ │ ├── intreadwrite.h │ │ │ ├── libm_mips.h │ │ │ └── mmiutils.h │ │ ├── motion_vector.h │ │ ├── murmur3.c │ │ ├── murmur3.h │ │ ├── opt.c │ │ ├── opt.h │ │ ├── parseutils.c │ │ ├── parseutils.h │ │ ├── pca.c │ │ ├── pca.h │ │ ├── pixdesc.c │ │ ├── pixdesc.h │ │ ├── pixelutils.c │ │ ├── pixelutils.h │ │ ├── pixfmt.h │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── float_dsp_altivec.c │ │ │ ├── float_dsp_altivec.h │ │ │ ├── float_dsp_init.c │ │ │ ├── float_dsp_vsx.c │ │ │ ├── float_dsp_vsx.h │ │ │ ├── intreadwrite.h │ │ │ ├── timer.h │ │ │ └── util_altivec.h │ │ ├── qsort.h │ │ ├── random_seed.c │ │ ├── random_seed.h │ │ ├── rational.c │ │ ├── rational.h │ │ ├── rc4.c │ │ ├── rc4.h │ │ ├── replaygain.h │ │ ├── reverse.c │ │ ├── reverse.h │ │ ├── ripemd.c │ │ ├── ripemd.h │ │ ├── samplefmt.c │ │ ├── samplefmt.h │ │ ├── sh4 │ │ │ └── bswap.h │ │ ├── sha.c │ │ ├── sha.h │ │ ├── sha512.c │ │ ├── sha512.h │ │ ├── slicethread.c │ │ ├── slicethread.h │ │ ├── softfloat.h │ │ ├── softfloat_ieee754.h │ │ ├── softfloat_tables.h │ │ ├── spherical.c │ │ ├── spherical.h │ │ ├── stereo3d.c │ │ ├── stereo3d.h │ │ ├── tablegen.h │ │ ├── tea.c │ │ ├── tea.h │ │ ├── tests │ │ │ ├── adler32.c │ │ │ ├── aes.c │ │ │ ├── aes_ctr.c │ │ │ ├── audio_fifo.c │ │ │ ├── avstring.c │ │ │ ├── base64.c │ │ │ ├── blowfish.c │ │ │ ├── bprint.c │ │ │ ├── camellia.c │ │ │ ├── cast5.c │ │ │ ├── color_utils.c │ │ │ ├── cpu.c │ │ │ ├── cpu_init.c │ │ │ ├── crc.c │ │ │ ├── des.c │ │ │ ├── dict.c │ │ │ ├── display.c │ │ │ ├── encryption_info.c │ │ │ ├── error.c │ │ │ ├── eval.c │ │ │ ├── fifo.c │ │ │ ├── file.c │ │ │ ├── hash.c │ │ │ ├── hmac.c │ │ │ ├── hwdevice.c │ │ │ ├── imgutils.c │ │ │ ├── integer.c │ │ │ ├── lfg.c │ │ │ ├── lls.c │ │ │ ├── log.c │ │ │ ├── lzo.c │ │ │ ├── md5.c │ │ │ ├── murmur3.c │ │ │ ├── opt.c │ │ │ ├── parseutils.c │ │ │ ├── pca.c │ │ │ ├── pixdesc.c │ │ │ ├── pixelutils.c │ │ │ ├── pixfmt_best.c │ │ │ ├── random_seed.c │ │ │ ├── rational.c │ │ │ ├── ripemd.c │ │ │ ├── sha.c │ │ │ ├── sha512.c │ │ │ ├── softfloat.c │ │ │ ├── tea.c │ │ │ ├── tree.c │ │ │ ├── twofish.c │ │ │ ├── utf8.c │ │ │ └── xtea.c │ │ ├── thread.h │ │ ├── threadmessage.c │ │ ├── threadmessage.h │ │ ├── time.c │ │ ├── time.h │ │ ├── time_internal.h │ │ ├── timecode.c │ │ ├── timecode.h │ │ ├── timer.h │ │ ├── timestamp.h │ │ ├── tomi │ │ │ └── intreadwrite.h │ │ ├── tree.c │ │ ├── tree.h │ │ ├── twofish.c │ │ ├── twofish.h │ │ ├── tx.c │ │ ├── tx.h │ │ ├── tx_double.c │ │ ├── tx_float.c │ │ ├── tx_int32.c │ │ ├── tx_priv.h │ │ ├── tx_template.c │ │ ├── utils.c │ │ ├── version.h │ │ ├── video_enc_params.c │ │ ├── video_enc_params.h │ │ ├── wchar_filename.h │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── asm.h │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── cpuid.asm │ │ │ ├── emms.asm │ │ │ ├── emms.h │ │ │ ├── fixed_dsp.asm │ │ │ ├── fixed_dsp_init.c │ │ │ ├── float_dsp.asm │ │ │ ├── float_dsp_init.c │ │ │ ├── imgutils.asm │ │ │ ├── imgutils_init.c │ │ │ ├── intmath.h │ │ │ ├── intreadwrite.h │ │ │ ├── lls.asm │ │ │ ├── lls_init.c │ │ │ ├── pixelutils.asm │ │ │ ├── pixelutils.h │ │ │ ├── pixelutils_init.c │ │ │ ├── timer.h │ │ │ ├── w64xmmtest.h │ │ │ ├── x86inc.asm │ │ │ └── x86util.asm │ │ ├── xga_font_data.c │ │ ├── xga_font_data.h │ │ ├── xtea.c │ │ └── xtea.h │ ├── libswscale │ │ ├── Makefile │ │ ├── aarch64 │ │ │ ├── Makefile │ │ │ ├── hscale.S │ │ │ ├── output.S │ │ │ ├── rgb2rgb.c │ │ │ ├── rgb2rgb_neon.S │ │ │ ├── swscale.c │ │ │ ├── swscale_unscaled.c │ │ │ └── yuv2rgb_neon.S │ │ ├── alphablend.c │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── hscale.S │ │ │ ├── output.S │ │ │ ├── rgb2yuv_neon_16.S │ │ │ ├── rgb2yuv_neon_32.S │ │ │ ├── rgb2yuv_neon_common.S │ │ │ ├── swscale.c │ │ │ ├── swscale_unscaled.c │ │ │ └── yuv2rgb_neon.S │ │ ├── bayer_template.c │ │ ├── gamma.c │ │ ├── hscale.c │ │ ├── hscale_fast_bilinear.c │ │ ├── input.c │ │ ├── libswscale.v │ │ ├── log2_tab.c │ │ ├── options.c │ │ ├── output.c │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── swscale_altivec.c │ │ │ ├── swscale_ppc_template.c │ │ │ ├── swscale_vsx.c │ │ │ ├── yuv2rgb_altivec.c │ │ │ ├── yuv2rgb_altivec.h │ │ │ └── yuv2yuv_altivec.c │ │ ├── rgb2rgb.c │ │ ├── rgb2rgb.h │ │ ├── rgb2rgb_template.c │ │ ├── slice.c │ │ ├── swscale.c │ │ ├── swscale.h │ │ ├── swscale_internal.h │ │ ├── swscale_unscaled.c │ │ ├── swscaleres.rc │ │ ├── tests │ │ │ ├── colorspace.c │ │ │ ├── floatimg_cmp.c │ │ │ ├── pixdesc_query.c │ │ │ └── swscale.c │ │ ├── utils.c │ │ ├── version.h │ │ ├── vscale.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── hscale_fast_bilinear_simd.c │ │ │ ├── input.asm │ │ │ ├── output.asm │ │ │ ├── rgb2rgb.c │ │ │ ├── rgb2rgb_template.c │ │ │ ├── rgb_2_rgb.asm │ │ │ ├── scale.asm │ │ │ ├── swscale.c │ │ │ ├── swscale_template.c │ │ │ ├── w64xmmtest.c │ │ │ ├── yuv2rgb.c │ │ │ ├── yuv2rgb_template.c │ │ │ ├── yuv2yuvX.asm │ │ │ └── yuv_2_rgb.asm │ │ └── yuv2rgb.c │ ├── presets │ │ ├── libvpx-1080p.ffpreset │ │ ├── libvpx-1080p50_60.ffpreset │ │ ├── libvpx-360p.ffpreset │ │ ├── libvpx-720p.ffpreset │ │ └── libvpx-720p50_60.ffpreset │ └── tools │ │ ├── Makefile │ │ ├── aviocat.c │ │ ├── bisect-create │ │ ├── bookmarklets.html │ │ ├── cl2c │ │ ├── clean-diff │ │ ├── coverity.c │ │ ├── crypto_bench.c │ │ ├── cws2fws.c │ │ ├── dvd2concat │ │ ├── enum_options.c │ │ ├── ffescape.c │ │ ├── ffeval.c │ │ ├── ffhash.c │ │ ├── fourcc2pixfmt.c │ │ ├── gen-rc │ │ ├── graph2dot.c │ │ ├── ismindex.c │ │ ├── libav-merge-next-commit │ │ ├── loudnorm.rb │ │ ├── make_chlayout_test │ │ ├── missing_codec_desc │ │ ├── murge │ │ ├── normalize.py │ │ ├── patcheck │ │ ├── pktdumper.c │ │ ├── plotframes │ │ ├── probetest.c │ │ ├── python │ │ ├── convert.py │ │ ├── convert_from_tensorflow.py │ │ └── convert_header.py │ │ ├── qt-faststart.c │ │ ├── seek_print.c │ │ ├── sidxindex.c │ │ ├── sofa2wavs.c │ │ ├── target_bsf_fuzzer.c │ │ ├── target_dec_fate.list │ │ ├── target_dec_fate.sh │ │ ├── target_dec_fuzzer.c │ │ ├── target_dem_fuzzer.c │ │ ├── trasher.c │ │ ├── uncoded_frame.c │ │ ├── unwrap-diff │ │ ├── venc_data_dump.c │ │ ├── yuvcmp.c │ │ ├── zmqsend.c │ │ └── zmqshell.py ├── libexif-0.6.25 │ ├── ABOUT-NLS │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── ChangeLog.git │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README-Win32.txt │ ├── SECURITY.md │ ├── TODO │ ├── aclocal.m4 │ ├── ar-lib │ ├── auto-m4 │ │ ├── gettext.m4 │ │ ├── iconv.m4 │ │ ├── intlmacosx.m4 │ │ ├── lib-ld.m4 │ │ ├── lib-link.m4 │ │ ├── lib-prefix.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── nls.m4 │ │ ├── po.m4 │ │ └── progtest.m4 │ ├── binary-dist │ │ ├── Makefile.am │ │ └── Makefile.in │ ├── compile │ ├── config.guess │ ├── config.h.in │ ├── config.rpath │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── examples │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cam_features.c │ │ │ ├── photographer.c │ │ │ ├── thumbnail.c │ │ │ └── write-exif.c │ │ └── watcom │ │ │ ├── Makefile │ │ │ └── _stdint.h │ ├── depcomp │ ├── doc │ │ ├── Doxyfile-internals.in │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.apidocs │ │ ├── footer.html │ │ └── libexif-api.html.tar.gz │ ├── install-sh │ ├── libexif-uninstalled.pc.in │ ├── libexif.pc.in │ ├── libexif.spec │ ├── libexif.spec.in │ ├── libexif │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── _stdint.h │ │ ├── canon │ │ │ ├── Makefile-files │ │ │ ├── exif-mnote-data-canon.c │ │ │ ├── exif-mnote-data-canon.h │ │ │ ├── mnote-canon-entry.c │ │ │ ├── mnote-canon-entry.h │ │ │ ├── mnote-canon-tag.c │ │ │ └── mnote-canon-tag.h │ │ ├── exif-byte-order.c │ │ ├── exif-byte-order.h │ │ ├── exif-content.c │ │ ├── exif-content.h │ │ ├── exif-data-type.h │ │ ├── exif-data.c │ │ ├── exif-data.h │ │ ├── exif-entry.c │ │ ├── exif-entry.h │ │ ├── exif-format.c │ │ ├── exif-format.h │ │ ├── exif-gps-ifd.c │ │ ├── exif-gps-ifd.h │ │ ├── exif-ifd.c │ │ ├── exif-ifd.h │ │ ├── exif-loader.c │ │ ├── exif-loader.h │ │ ├── exif-log.c │ │ ├── exif-log.h │ │ ├── exif-mem.c │ │ ├── exif-mem.h │ │ ├── exif-mnote-data-priv.h │ │ ├── exif-mnote-data.c │ │ ├── exif-mnote-data.h │ │ ├── exif-system.h │ │ ├── exif-tag.c │ │ ├── exif-tag.h │ │ ├── exif-utils.c │ │ ├── exif-utils.h │ │ ├── exif.h │ │ ├── fuji │ │ │ ├── Makefile-files │ │ │ ├── exif-mnote-data-fuji.c │ │ │ ├── exif-mnote-data-fuji.h │ │ │ ├── mnote-fuji-entry.c │ │ │ ├── mnote-fuji-entry.h │ │ │ ├── mnote-fuji-tag.c │ │ │ └── mnote-fuji-tag.h │ │ ├── i18n.h │ │ ├── libexif.sym │ │ ├── olympus │ │ │ ├── Makefile-files │ │ │ ├── exif-mnote-data-olympus.c │ │ │ ├── exif-mnote-data-olympus.h │ │ │ ├── mnote-olympus-entry.c │ │ │ ├── mnote-olympus-entry.h │ │ │ ├── mnote-olympus-tag.c │ │ │ └── mnote-olympus-tag.h │ │ └── pentax │ │ │ ├── Makefile-files │ │ │ ├── exif-mnote-data-pentax.c │ │ │ ├── exif-mnote-data-pentax.h │ │ │ ├── mnote-pentax-entry.c │ │ │ ├── mnote-pentax-entry.h │ │ │ ├── mnote-pentax-tag.c │ │ │ └── mnote-pentax-tag.h │ ├── ltmain.sh │ ├── m4m │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── failmalloc.m4 │ │ ├── gp-check-shell-environment.m4 │ │ ├── gp-config-msg.m4 │ │ ├── gp-documentation.m4 │ │ ├── gp-gettext-hack.m4 │ │ └── stdint.m4 │ ├── missing │ ├── mkinstalldirs │ ├── po │ │ ├── Makefile.in.in │ │ ├── Makevars │ │ ├── POTFILES.in │ │ ├── Rules-quot │ │ ├── be.gmo │ │ ├── be.po │ │ ├── boldquot.sed │ │ ├── bs.gmo │ │ ├── bs.po │ │ ├── cs.gmo │ │ ├── cs.po │ │ ├── da.gmo │ │ ├── da.po │ │ ├── de.gmo │ │ ├── de.po │ │ ├── en@boldquot.header │ │ ├── en@quot.header │ │ ├── en_AU.gmo │ │ ├── en_AU.po │ │ ├── en_CA.gmo │ │ ├── en_CA.po │ │ ├── en_GB.gmo │ │ ├── en_GB.po │ │ ├── es.gmo │ │ ├── es.po │ │ ├── fr.gmo │ │ ├── fr.po │ │ ├── insert-header.sin │ │ ├── it.gmo │ │ ├── it.po │ │ ├── ja.gmo │ │ ├── ja.po │ │ ├── ka.gmo │ │ ├── ka.po │ │ ├── libexif-12.pot │ │ ├── ms.gmo │ │ ├── ms.po │ │ ├── nl.gmo │ │ ├── nl.po │ │ ├── pl.gmo │ │ ├── pl.po │ │ ├── pt.gmo │ │ ├── pt.po │ │ ├── pt_BR.gmo │ │ ├── pt_BR.po │ │ ├── quot.sed │ │ ├── remove-potcdate.sin │ │ ├── ro.gmo │ │ ├── ro.po │ │ ├── ru.gmo │ │ ├── ru.po │ │ ├── sk.gmo │ │ ├── sk.po │ │ ├── sq.gmo │ │ ├── sq.po │ │ ├── sr.gmo │ │ ├── sr.po │ │ ├── stamp-po │ │ ├── sv.gmo │ │ ├── sv.po │ │ ├── tr.gmo │ │ ├── tr.po │ │ ├── uk.gmo │ │ ├── uk.po │ │ ├── vi.gmo │ │ ├── vi.po │ │ ├── zh_CN.gmo │ │ └── zh_CN.po │ ├── test-driver │ └── test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── check-failmalloc.sh │ │ ├── check-mnote.sh │ │ ├── extract-parse.sh │ │ ├── inc-comparetool.sh │ │ ├── nls │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── check-localedir.in │ │ ├── check-nls.in │ │ ├── print-localedir.c │ │ ├── test-codeset.c │ │ └── test-nls.c │ │ ├── parse-regression.sh │ │ ├── swap-byte-order.sh │ │ ├── test-extract.c │ │ ├── test-fuzzer-persistent.c │ │ ├── test-fuzzer.c │ │ ├── test-gps.c │ │ ├── test-integers.c │ │ ├── test-mem.c │ │ ├── test-mnote.c │ │ ├── test-null.c │ │ ├── test-parse-from-data.c │ │ ├── test-parse.c │ │ ├── test-sorted.c │ │ ├── test-tagtable.c │ │ ├── test-value.c │ │ └── testdata │ │ ├── canon_makernote_variant_1.jpg │ │ ├── canon_makernote_variant_1.jpg.parsed │ │ ├── fuji_makernote_variant_1.jpg │ │ ├── fuji_makernote_variant_1.jpg.parsed │ │ ├── olympus_makernote_variant_2.jpg │ │ ├── olympus_makernote_variant_2.jpg.parsed │ │ ├── olympus_makernote_variant_3.jpg │ │ ├── olympus_makernote_variant_3.jpg.parsed │ │ ├── olympus_makernote_variant_4.jpg │ │ ├── olympus_makernote_variant_4.jpg.parsed │ │ ├── olympus_makernote_variant_5.jpg │ │ ├── olympus_makernote_variant_5.jpg.parsed │ │ ├── pentax_makernote_variant_2.jpg │ │ ├── pentax_makernote_variant_2.jpg.parsed │ │ ├── pentax_makernote_variant_3.jpg │ │ ├── pentax_makernote_variant_3.jpg.parsed │ │ ├── pentax_makernote_variant_4.jpg │ │ └── pentax_makernote_variant_4.jpg.parsed └── pixymeta-android │ ├── AndroidManifest.xml │ ├── LICENSE │ ├── README.md │ ├── build.gradle │ ├── build.xml │ ├── changelog.txt │ ├── pom.xml │ └── src │ ├── log4j.properties │ └── pixy │ ├── image │ ├── ImageType.java │ ├── bmp │ │ └── BmpCompression.java │ ├── gif │ │ └── ApplicationExtension.java │ ├── jpeg │ │ ├── COMBuilder.java │ │ ├── COMReader.java │ │ ├── Component.java │ │ ├── DHTReader.java │ │ ├── DQTReader.java │ │ ├── HTable.java │ │ ├── JPGConsts.java │ │ ├── Marker.java │ │ ├── QTable.java │ │ ├── SOFReader.java │ │ ├── SOSReader.java │ │ ├── Segment.java │ │ ├── SegmentBuilder.java │ │ └── UnknownSegment.java │ ├── png │ │ ├── Chunk.java │ │ ├── ChunkBuilder.java │ │ ├── ChunkType.java │ │ ├── ColorType.java │ │ ├── Filter.java │ │ ├── ICCPBuilder.java │ │ ├── IDATBuilder.java │ │ ├── IDATReader.java │ │ ├── IENDBuilder.java │ │ ├── IENDReader.java │ │ ├── IHDRBuilder.java │ │ ├── IHDRReader.java │ │ ├── PLTEBuilder.java │ │ ├── PLTEReader.java │ │ ├── PNGDescriptor.java │ │ ├── SRGBBuilder.java │ │ ├── SRGBReader.java │ │ ├── TIMEBuilder.java │ │ ├── TIMEReader.java │ │ ├── TRNSBuilder.java │ │ ├── TRNSReader.java │ │ ├── TextBuilder.java │ │ ├── TextReader.java │ │ ├── UnknownChunk.java │ │ ├── UnknownChunkBuilder.java │ │ └── UnknownChunkReader.java │ └── tiff │ │ ├── ASCIIField.java │ │ ├── AbstractByteField.java │ │ ├── AbstractLongField.java │ │ ├── AbstractRationalField.java │ │ ├── AbstractShortField.java │ │ ├── ByteField.java │ │ ├── DoubleField.java │ │ ├── FieldType.java │ │ ├── FloatField.java │ │ ├── IFD.java │ │ ├── IFDField.java │ │ ├── LongField.java │ │ ├── RationalField.java │ │ ├── SByteField.java │ │ ├── SLongField.java │ │ ├── SRationalField.java │ │ ├── SShortField.java │ │ ├── ShortField.java │ │ ├── TIFFImage.java │ │ ├── Tag.java │ │ ├── TiffField.java │ │ ├── TiffFieldEnum.java │ │ ├── TiffTag.java │ │ └── UndefinedField.java │ ├── io │ ├── ByteOrder.java │ ├── EndianAwareInputStream.java │ ├── EndianAwareOutputStream.java │ ├── FileCacheRandomAccessInputStream.java │ ├── FileCacheRandomAccessOutputStream.java │ ├── FileCacheSeekableStream.java │ ├── ForwardSeekableStream.java │ ├── IOUtils.java │ ├── MemoryCacheRandomAccessInputStream.java │ ├── MemoryCacheRandomAccessOutputStream.java │ ├── MemoryCacheSeekableStream.java │ ├── PeekHeadInputStream.java │ ├── PropertyUtil.java │ ├── RandomAccessInputStream.java │ ├── RandomAccessOutputStream.java │ ├── ReadStrategy.java │ ├── ReadStrategyII.java │ ├── ReadStrategyMM.java │ ├── SeekableStream.java │ ├── WriteStrategy.java │ ├── WriteStrategyII.java │ └── WriteStrategyMM.java │ ├── meta │ ├── Metadata.java │ ├── MetadataEntry.java │ ├── MetadataReader.java │ ├── MetadataType.java │ ├── Thumbnail.java │ ├── adobe │ │ ├── BlendModeKey.java │ │ ├── Channel.java │ │ ├── ColorSpaceID.java │ │ ├── DDB.java │ │ ├── DDBEntry.java │ │ ├── DataBlockType.java │ │ ├── FilterMask.java │ │ ├── IPTC_NAA.java │ │ ├── IRB.java │ │ ├── IRBThumbnail.java │ │ ├── ImageResourceID.java │ │ ├── JPGQuality.java │ │ ├── LayerData.java │ │ ├── Slice.java │ │ ├── Slices.java │ │ ├── ThumbnailResource.java │ │ ├── UserMask.java │ │ ├── VersionInfo.java │ │ └── _8BIM.java │ ├── bmp │ │ └── BMPMeta.java │ ├── exif │ │ ├── Exif.java │ │ ├── ExifTag.java │ │ ├── ExifThumbnail.java │ │ ├── GPSTag.java │ │ └── InteropTag.java │ ├── gif │ │ ├── GIFMeta.java │ │ └── GifXMP.java │ ├── icc │ │ ├── ICCProfile.java │ │ ├── ProfileTag.java │ │ └── ProfileTagTable.java │ ├── image │ │ ├── Comments.java │ │ └── ImageMetadata.java │ ├── iptc │ │ ├── IPTC.java │ │ ├── IPTCApplicationTag.java │ │ ├── IPTCDataSet.java │ │ ├── IPTCEnvelopeTag.java │ │ ├── IPTCFotoStationTag.java │ │ ├── IPTCNewsPhotoTag.java │ │ ├── IPTCObjectDataTag.java │ │ ├── IPTCPostObjectDataTag.java │ │ ├── IPTCPreObjectDataTag.java │ │ ├── IPTCRecord.java │ │ ├── IPTCTag.java │ │ └── IPTCTagComparator.java │ ├── jpeg │ │ ├── Adobe.java │ │ ├── Ducky.java │ │ ├── DuckyDataSet.java │ │ ├── DuckyTag.java │ │ ├── JFIF.java │ │ ├── JFIFThumbnail.java │ │ ├── JPGMeta.java │ │ ├── JpegExif.java │ │ └── JpegXMP.java │ ├── png │ │ ├── PNGMeta.java │ │ ├── PngXMP.java │ │ ├── TIMEChunk.java │ │ └── TextualChunks.java │ ├── tiff │ │ ├── TIFFMeta.java │ │ ├── TiffExif.java │ │ └── TiffXMP.java │ └── xmp │ │ └── XMP.java │ ├── string │ ├── Base64.java │ ├── StringUtils.java │ └── XMLUtils.java │ ├── test │ └── TestPixyMetaAndroid.java │ └── util │ ├── ArrayUtils.java │ ├── Builder.java │ ├── CollectionUtils.java │ ├── FileUtils.java │ ├── IntHashtable.java │ ├── LangUtils.java │ ├── MetadataUtils.java │ ├── Reader.java │ └── zip │ ├── CRC32.java │ └── Checksum.java ├── libs.prebuilt ├── exif-0.6.22 │ ├── include │ │ ├── actions.h │ │ ├── config.h │ │ ├── exif-i18n.h │ │ └── utils.h │ └── lib │ │ ├── arm64-v8a │ │ └── libexif_app.so │ │ ├── armeabi-v7a │ │ └── libexif_app.so │ │ ├── x86 │ │ └── libexif_app.so │ │ └── x86_64 │ │ └── libexif_app.so ├── exiv2-0.28.5 │ ├── include │ │ ├── exiv2 │ │ │ ├── asfvideo.hpp │ │ │ ├── basicio.hpp │ │ │ ├── bmffimage.hpp │ │ │ ├── bmpimage.hpp │ │ │ ├── config.h │ │ │ ├── convert.hpp │ │ │ ├── cr2image.hpp │ │ │ ├── crwimage.hpp │ │ │ ├── datasets.hpp │ │ │ ├── easyaccess.hpp │ │ │ ├── epsimage.hpp │ │ │ ├── error.hpp │ │ │ ├── exif.hpp │ │ │ ├── exiv2.hpp │ │ │ ├── exiv2lib_export.h │ │ │ ├── exv_conf.h │ │ │ ├── futils.hpp │ │ │ ├── gifimage.hpp │ │ │ ├── image.hpp │ │ │ ├── image_types.hpp │ │ │ ├── iptc.hpp │ │ │ ├── jp2image.hpp │ │ │ ├── jpgimage.hpp │ │ │ ├── matroskavideo.hpp │ │ │ ├── metadatum.hpp │ │ │ ├── mrwimage.hpp │ │ │ ├── orfimage.hpp │ │ │ ├── pgfimage.hpp │ │ │ ├── photoshop.hpp │ │ │ ├── preview.hpp │ │ │ ├── properties.hpp │ │ │ ├── psdimage.hpp │ │ │ ├── quicktimevideo.hpp │ │ │ ├── rafimage.hpp │ │ │ ├── riffvideo.hpp │ │ │ ├── rw2image.hpp │ │ │ ├── slice.hpp │ │ │ ├── tags.hpp │ │ │ ├── tgaimage.hpp │ │ │ ├── tiffimage.hpp │ │ │ ├── types.hpp │ │ │ ├── value.hpp │ │ │ ├── version.hpp │ │ │ ├── webpimage.hpp │ │ │ ├── xmp_exiv2.hpp │ │ │ └── xmpsidecar.hpp │ │ └── exiv2_for_app │ │ │ ├── enforce.hpp │ │ │ ├── i18n.h │ │ │ ├── safe_op.hpp │ │ │ └── utils.hpp │ └── lib │ │ ├── arm64-v8a │ │ └── libexiv2.so │ │ ├── armeabi-v7a │ │ └── libexiv2.so │ │ ├── x86 │ │ └── libexiv2.so │ │ └── x86_64 │ │ └── libexiv2.so ├── expat-2.7.1 │ ├── include │ │ ├── expat.h │ │ ├── expat_config.h │ │ └── expat_external.h │ └── lib │ │ ├── arm64-v8a │ │ └── libexpat.so │ │ ├── armeabi-v7a │ │ └── libexpat.so │ │ ├── x86 │ │ └── libexpat.so │ │ └── x86_64 │ │ └── libexpat.so ├── ffmpeg-4.4 │ ├── include │ │ ├── libavutil │ │ │ ├── adler32.h │ │ │ ├── aes.h │ │ │ ├── aes_ctr.h │ │ │ ├── attributes.h │ │ │ ├── audio_fifo.h │ │ │ ├── avassert.h │ │ │ ├── avconfig.h │ │ │ ├── avstring.h │ │ │ ├── avutil.h │ │ │ ├── base64.h │ │ │ ├── blowfish.h │ │ │ ├── bprint.h │ │ │ ├── bswap.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast5.h │ │ │ ├── channel_layout.h │ │ │ ├── common.h │ │ │ ├── cpu.h │ │ │ ├── crc.h │ │ │ ├── des.h │ │ │ ├── dict.h │ │ │ ├── display.h │ │ │ ├── dovi_meta.h │ │ │ ├── downmix_info.h │ │ │ ├── encryption_info.h │ │ │ ├── error.h │ │ │ ├── eval.h │ │ │ ├── ffversion.h │ │ │ ├── fifo.h │ │ │ ├── file.h │ │ │ ├── film_grain_params.h │ │ │ ├── frame.h │ │ │ ├── hash.h │ │ │ ├── hdr_dynamic_metadata.h │ │ │ ├── hmac.h │ │ │ ├── hwcontext.h │ │ │ ├── hwcontext_cuda.h │ │ │ ├── hwcontext_d3d11va.h │ │ │ ├── hwcontext_drm.h │ │ │ ├── hwcontext_dxva2.h │ │ │ ├── hwcontext_mediacodec.h │ │ │ ├── hwcontext_opencl.h │ │ │ ├── hwcontext_qsv.h │ │ │ ├── hwcontext_vaapi.h │ │ │ ├── hwcontext_vdpau.h │ │ │ ├── hwcontext_videotoolbox.h │ │ │ ├── hwcontext_vulkan.h │ │ │ ├── imgutils.h │ │ │ ├── intfloat.h │ │ │ ├── intreadwrite.h │ │ │ ├── lfg.h │ │ │ ├── log.h │ │ │ ├── macros.h │ │ │ ├── mastering_display_metadata.h │ │ │ ├── mathematics.h │ │ │ ├── md5.h │ │ │ ├── mem.h │ │ │ ├── motion_vector.h │ │ │ ├── murmur3.h │ │ │ ├── opt.h │ │ │ ├── parseutils.h │ │ │ ├── pixdesc.h │ │ │ ├── pixelutils.h │ │ │ ├── pixfmt.h │ │ │ ├── random_seed.h │ │ │ ├── rational.h │ │ │ ├── rc4.h │ │ │ ├── replaygain.h │ │ │ ├── ripemd.h │ │ │ ├── samplefmt.h │ │ │ ├── sha.h │ │ │ ├── sha512.h │ │ │ ├── spherical.h │ │ │ ├── stereo3d.h │ │ │ ├── tea.h │ │ │ ├── threadmessage.h │ │ │ ├── time.h │ │ │ ├── timecode.h │ │ │ ├── timestamp.h │ │ │ ├── tree.h │ │ │ ├── twofish.h │ │ │ ├── tx.h │ │ │ ├── version.h │ │ │ ├── video_enc_params.h │ │ │ └── xtea.h │ │ └── libswscale │ │ │ ├── swscale.h │ │ │ └── version.h │ └── lib │ │ ├── arm64-v8a │ │ ├── libavutil.so │ │ └── libswscale.so │ │ ├── armeabi-v7a │ │ ├── libavutil.so │ │ └── libswscale.so │ │ ├── x86 │ │ ├── libavutil.so │ │ └── libswscale.so │ │ └── x86_64 │ │ ├── libavutil.so │ │ └── libswscale.so └── libexif-0.6.25 │ ├── include │ └── libexif │ │ ├── _stdint.h │ │ ├── canon │ │ ├── exif-mnote-data-canon.h │ │ ├── mnote-canon-entry.h │ │ └── mnote-canon-tag.h │ │ ├── exif-byte-order.h │ │ ├── exif-content.h │ │ ├── exif-data-type.h │ │ ├── exif-data.h │ │ ├── exif-entry.h │ │ ├── exif-format.h │ │ ├── exif-gps-ifd.h │ │ ├── exif-ifd.h │ │ ├── exif-loader.h │ │ ├── exif-log.h │ │ ├── exif-mem.h │ │ ├── exif-mnote-data-priv.h │ │ ├── exif-mnote-data.h │ │ ├── exif-system.h │ │ ├── exif-tag.h │ │ ├── exif-utils.h │ │ ├── exif.h │ │ ├── fuji │ │ ├── exif-mnote-data-fuji.h │ │ ├── mnote-fuji-entry.h │ │ └── mnote-fuji-tag.h │ │ ├── olympus │ │ ├── exif-mnote-data-olympus.h │ │ ├── mnote-olympus-entry.h │ │ └── mnote-olympus-tag.h │ │ └── pentax │ │ ├── exif-mnote-data-pentax.h │ │ ├── mnote-pentax-entry.h │ │ └── mnote-pentax-tag.h │ └── lib │ ├── arm64-v8a │ └── libexif.so │ ├── armeabi-v7a │ └── libexif.so │ ├── x86 │ └── libexif.so │ └── x86_64 │ └── libexif.so ├── scripts ├── exiv2_for_diff.sh ├── extract_tags.sh ├── post_metadata_for_googleplay.sh ├── prepare_metadata_for_googleplay.sh ├── prepare_release.sh ├── screenshots.sh ├── store_output_to_pic_repo.sh ├── tags_diff.sh ├── tags_git_diff.sh ├── unzip_github_output_artifact.sh └── unzip_github_output_artifact_next_to_zip.sh ├── settings.gradle ├── tests ├── .gitignore ├── check_diff_accross_api.sh ├── check_diff_accross_version.sh ├── check_logcat_match.sh ├── data │ ├── Canon_PowerShot_S40-WithoutMandatoryTags.jpg │ ├── Canon_PowerShot_S40-WithoutMandatoryTagsNoTb.jpg │ ├── empty_file │ ├── noexif.jpg │ ├── text_file.txt │ └── text_with_jpg_extension.jpg ├── has_mandatory_tags.sh ├── is_same_picture.sh ├── mandatory_exif_tags.txt ├── replace_picture.sh └── run_tests.sh └── version_last_tag.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Exif Thumbnail Adder -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/get-version.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/get-version.gradle -------------------------------------------------------------------------------- /app/git-version.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/git-version.gradle -------------------------------------------------------------------------------- /app/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/gradle.properties -------------------------------------------------------------------------------- /app/libs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/Exiv2Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/cpp/Exiv2Helper.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/Exiv2Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/cpp/Exiv2Helper.h -------------------------------------------------------------------------------- /app/src/main/cpp/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/cpp/exceptions.c -------------------------------------------------------------------------------- /app/src/main/cpp/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/cpp/exceptions.h -------------------------------------------------------------------------------- /app/src/main/cpp/ffmpeg_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/cpp/ffmpeg_helper.c -------------------------------------------------------------------------------- /app/src/main/cpp/libexif-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/cpp/libexif-helper.c -------------------------------------------------------------------------------- /app/src/main/cpp/libexif-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/cpp/libexif-helper.h -------------------------------------------------------------------------------- /app/src/main/cpp/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/cpp/tests.c -------------------------------------------------------------------------------- /app/src/main/cpp/timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/cpp/timestamp.c -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/raw/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /cmake/exif.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/exif.cmake -------------------------------------------------------------------------------- /cmake/exif_CMakeLists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/exif_CMakeLists.cmake -------------------------------------------------------------------------------- /cmake/exif_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/exif_config.h.cmake -------------------------------------------------------------------------------- /cmake/exiv2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/exiv2.cmake -------------------------------------------------------------------------------- /cmake/expat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/expat.cmake -------------------------------------------------------------------------------- /cmake/ffmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/ffmpeg.cmake -------------------------------------------------------------------------------- /cmake/ffmpeg_AndroidLog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/ffmpeg_AndroidLog.patch -------------------------------------------------------------------------------- /cmake/ffmpeg_Makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/ffmpeg_Makefile.patch -------------------------------------------------------------------------------- /cmake/ffmpeg_build_system.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/ffmpeg_build_system.cmake -------------------------------------------------------------------------------- /cmake/ffmpeg_copy_headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/ffmpeg_copy_headers.cmake -------------------------------------------------------------------------------- /cmake/libexif.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/libexif.cmake -------------------------------------------------------------------------------- /cmake/libexif_CMakeLists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/libexif_CMakeLists.cmake -------------------------------------------------------------------------------- /cmake/libexif_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/libexif_config.h.cmake -------------------------------------------------------------------------------- /cmake/time2038.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/time2038.c -------------------------------------------------------------------------------- /cmake/time2038.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/cmake/time2038.cmake -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/crowdin.yml -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | Initial release 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/381.txt: -------------------------------------------------------------------------------- 1 | - fix crash at startup 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/5.txt: -------------------------------------------------------------------------------- 1 | add french translation 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Exif Thumbnail Adder 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/changelogs/5.txt: -------------------------------------------------------------------------------- 1 | ajout de la traduction en français 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Exif Thumbnail Adder 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/vi/title.txt: -------------------------------------------------------------------------------- 1 | Exif Thumbnail Adder 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | Exif Thumbnail Adder 2 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/Android-Exif-Extended/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/exif-0.6.22/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/ABOUT-NLS -------------------------------------------------------------------------------- /library/exif-0.6.22/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/AUTHORS -------------------------------------------------------------------------------- /library/exif-0.6.22/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/COPYING -------------------------------------------------------------------------------- /library/exif-0.6.22/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/ChangeLog -------------------------------------------------------------------------------- /library/exif-0.6.22/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/INSTALL -------------------------------------------------------------------------------- /library/exif-0.6.22/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/Makefile.am -------------------------------------------------------------------------------- /library/exif-0.6.22/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/Makefile.in -------------------------------------------------------------------------------- /library/exif-0.6.22/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/NEWS -------------------------------------------------------------------------------- /library/exif-0.6.22/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/README -------------------------------------------------------------------------------- /library/exif-0.6.22/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/aclocal.m4 -------------------------------------------------------------------------------- /library/exif-0.6.22/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/ar-lib -------------------------------------------------------------------------------- /library/exif-0.6.22/auto-m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/auto-m4/iconv.m4 -------------------------------------------------------------------------------- /library/exif-0.6.22/auto-m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/auto-m4/lib-ld.m4 -------------------------------------------------------------------------------- /library/exif-0.6.22/auto-m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/auto-m4/nls.m4 -------------------------------------------------------------------------------- /library/exif-0.6.22/auto-m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/auto-m4/po.m4 -------------------------------------------------------------------------------- /library/exif-0.6.22/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/compile -------------------------------------------------------------------------------- /library/exif-0.6.22/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/config.guess -------------------------------------------------------------------------------- /library/exif-0.6.22/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/config.h.in -------------------------------------------------------------------------------- /library/exif-0.6.22/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/config.rpath -------------------------------------------------------------------------------- /library/exif-0.6.22/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/config.sub -------------------------------------------------------------------------------- /library/exif-0.6.22/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/configure -------------------------------------------------------------------------------- /library/exif-0.6.22/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/configure.ac -------------------------------------------------------------------------------- /library/exif-0.6.22/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/depcomp -------------------------------------------------------------------------------- /library/exif-0.6.22/exif.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif.1 -------------------------------------------------------------------------------- /library/exif-0.6.22/exif.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif.spec -------------------------------------------------------------------------------- /library/exif-0.6.22/exif.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif.spec.in -------------------------------------------------------------------------------- /library/exif-0.6.22/exif/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif/Makefile.am -------------------------------------------------------------------------------- /library/exif-0.6.22/exif/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif/Makefile.in -------------------------------------------------------------------------------- /library/exif-0.6.22/exif/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif/actions.c -------------------------------------------------------------------------------- /library/exif-0.6.22/exif/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif/actions.h -------------------------------------------------------------------------------- /library/exif-0.6.22/exif/exif-i18n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif/exif-i18n.c -------------------------------------------------------------------------------- /library/exif-0.6.22/exif/exif-i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif/exif-i18n.h -------------------------------------------------------------------------------- /library/exif-0.6.22/exif/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif/main.c -------------------------------------------------------------------------------- /library/exif-0.6.22/exif/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif/utils.c -------------------------------------------------------------------------------- /library/exif-0.6.22/exif/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/exif/utils.h -------------------------------------------------------------------------------- /library/exif-0.6.22/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/install-sh -------------------------------------------------------------------------------- /library/exif-0.6.22/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/ltmain.sh -------------------------------------------------------------------------------- /library/exif-0.6.22/m4m/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/m4m/Makefile.am -------------------------------------------------------------------------------- /library/exif-0.6.22/m4m/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/m4m/Makefile.in -------------------------------------------------------------------------------- /library/exif-0.6.22/m4m/stdint.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/m4m/stdint.m4 -------------------------------------------------------------------------------- /library/exif-0.6.22/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/missing -------------------------------------------------------------------------------- /library/exif-0.6.22/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/mkinstalldirs -------------------------------------------------------------------------------- /library/exif-0.6.22/po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/Makefile.in.in -------------------------------------------------------------------------------- /library/exif-0.6.22/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/Makevars -------------------------------------------------------------------------------- /library/exif-0.6.22/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/POTFILES.in -------------------------------------------------------------------------------- /library/exif-0.6.22/po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/Rules-quot -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ast.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ast.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ast.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/boldquot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/boldquot.sed -------------------------------------------------------------------------------- /library/exif-0.6.22/po/cs.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/cs.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/cs.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/da.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/da.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/da.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/de.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/de.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/en@quot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/en@quot.header -------------------------------------------------------------------------------- /library/exif-0.6.22/po/eo.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/eo.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/eo.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/es.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/es.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/es.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/exif.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/exif.pot -------------------------------------------------------------------------------- /library/exif-0.6.22/po/fi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/fi.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/fi.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/fr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/fr.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/fr.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/fur.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/fur.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/fur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/fur.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/gl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/gl.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/gl.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/hr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/hr.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/hr.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/id.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/id.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/id.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/is.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/is.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/is.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/it.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/it.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/it.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ja.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ja.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ja.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ko.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ko.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ko.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/lv.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/lv.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/lv.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ms.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ms.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ms.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/nl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/nl.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/nl.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/pl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/pl.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/pl.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/pt.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/pt.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/pt.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/pt_BR.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/pt_BR.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/pt_BR.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/quot.sed -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ro.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ro.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ro.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ru.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ru.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/ru.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/sk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/sk.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/sk.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/sr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/sr.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/sr.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /library/exif-0.6.22/po/sv.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/sv.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/sv.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/tr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/tr.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/tr.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/uk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/uk.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/uk.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/vi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/vi.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/vi.po -------------------------------------------------------------------------------- /library/exif-0.6.22/po/zh_CN.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/zh_CN.gmo -------------------------------------------------------------------------------- /library/exif-0.6.22/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/po/zh_CN.po -------------------------------------------------------------------------------- /library/exif-0.6.22/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/test-driver -------------------------------------------------------------------------------- /library/exif-0.6.22/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/test/Makefile.am -------------------------------------------------------------------------------- /library/exif-0.6.22/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exif-0.6.22/test/Makefile.in -------------------------------------------------------------------------------- /library/exiv2-0.28.5/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/.clang-format -------------------------------------------------------------------------------- /library/exiv2-0.28.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/.gitignore -------------------------------------------------------------------------------- /library/exiv2-0.28.5/.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/.mergify.yml -------------------------------------------------------------------------------- /library/exiv2-0.28.5/.pvsconfig: -------------------------------------------------------------------------------- 1 | //-V::1042 2 | -------------------------------------------------------------------------------- /library/exiv2-0.28.5/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/AUTHORS -------------------------------------------------------------------------------- /library/exiv2-0.28.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/CMakeLists.txt -------------------------------------------------------------------------------- /library/exiv2-0.28.5/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/CONTRIBUTING.md -------------------------------------------------------------------------------- /library/exiv2-0.28.5/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/COPYING -------------------------------------------------------------------------------- /library/exiv2-0.28.5/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/LICENSE.txt -------------------------------------------------------------------------------- /library/exiv2-0.28.5/README-CONAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/README-CONAN.md -------------------------------------------------------------------------------- /library/exiv2-0.28.5/README-meson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/README-meson -------------------------------------------------------------------------------- /library/exiv2-0.28.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/README.md -------------------------------------------------------------------------------- /library/exiv2-0.28.5/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/SECURITY.md -------------------------------------------------------------------------------- /library/exiv2-0.28.5/WORK-IN-PROGRESS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/WORK-IN-PROGRESS -------------------------------------------------------------------------------- /library/exiv2-0.28.5/app/actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/app/actions.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/app/actions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/app/actions.hpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/app/exiv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/app/exiv2.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/app/exiv2app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/app/exiv2app.hpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/app/getopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/app/getopt.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/app/getopt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/app/getopt.hpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/app/wmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/app/wmain.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/ci/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/ci/test_build.py -------------------------------------------------------------------------------- /library/exiv2-0.28.5/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/codecov.yml -------------------------------------------------------------------------------- /library/exiv2-0.28.5/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/conanfile.py -------------------------------------------------------------------------------- /library/exiv2-0.28.5/doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/doc/ChangeLog -------------------------------------------------------------------------------- /library/exiv2-0.28.5/doc/README-XMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/doc/README-XMP -------------------------------------------------------------------------------- /library/exiv2-0.28.5/doc/cmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/doc/cmd.txt -------------------------------------------------------------------------------- /library/exiv2-0.28.5/doc/cmdxmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/doc/cmdxmp.txt -------------------------------------------------------------------------------- /library/exiv2-0.28.5/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/doc/index.html -------------------------------------------------------------------------------- /library/exiv2-0.28.5/em.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/em.txt -------------------------------------------------------------------------------- /library/exiv2-0.28.5/exiv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/exiv2.md -------------------------------------------------------------------------------- /library/exiv2-0.28.5/exiv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/exiv2.png -------------------------------------------------------------------------------- /library/exiv2-0.28.5/man/man1/exiv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/man/man1/exiv2.1 -------------------------------------------------------------------------------- /library/exiv2-0.28.5/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/meson.build -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/TODO -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/asfvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/asfvideo.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/basicio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/basicio.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/bmpimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/bmpimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/convert.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/cr2image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/cr2image.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/crwimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/crwimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/datasets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/datasets.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/enforce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/enforce.hpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/epsimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/epsimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/error.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/exif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/exif.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/fff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/fff.h -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/futils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/futils.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/gifimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/gifimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/http.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/i18n.h -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/image.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/iptc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/iptc.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/jp2image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/jp2image.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/jpgimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/jpgimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/meson.build -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/mrwimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/mrwimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/orfimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/orfimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/pgfimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/pgfimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/pngimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/pngimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/preview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/preview.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/psdimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/psdimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/rafimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/rafimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/rw2image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/rw2image.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/safe_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/safe_op.hpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/tags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/tags.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/tags_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/tags_int.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/tags_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/tags_int.hpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/tgaimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/tgaimage.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/types.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/tzfile.h -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/utils.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/utils.hpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/value.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/version.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/src/xmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/exiv2-0.28.5/src/xmp.cpp -------------------------------------------------------------------------------- /library/exiv2-0.28.5/subprojects/.gitignore: -------------------------------------------------------------------------------- 1 | /*/ 2 | !packagefiles/ 3 | -------------------------------------------------------------------------------- /library/expat-2.7.1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/AUTHORS -------------------------------------------------------------------------------- /library/expat-2.7.1/CMake.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/CMake.README -------------------------------------------------------------------------------- /library/expat-2.7.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/CMakeLists.txt -------------------------------------------------------------------------------- /library/expat-2.7.1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/COPYING -------------------------------------------------------------------------------- /library/expat-2.7.1/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/Changes -------------------------------------------------------------------------------- /library/expat-2.7.1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/Makefile.am -------------------------------------------------------------------------------- /library/expat-2.7.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/Makefile.in -------------------------------------------------------------------------------- /library/expat-2.7.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/README.md -------------------------------------------------------------------------------- /library/expat-2.7.1/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/acinclude.m4 -------------------------------------------------------------------------------- /library/expat-2.7.1/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/aclocal.m4 -------------------------------------------------------------------------------- /library/expat-2.7.1/buildconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/buildconf.sh -------------------------------------------------------------------------------- /library/expat-2.7.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/configure -------------------------------------------------------------------------------- /library/expat-2.7.1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/configure.ac -------------------------------------------------------------------------------- /library/expat-2.7.1/conftools/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/conftools/ar-lib -------------------------------------------------------------------------------- /library/expat-2.7.1/conftools/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/conftools/compile -------------------------------------------------------------------------------- /library/expat-2.7.1/conftools/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/conftools/depcomp -------------------------------------------------------------------------------- /library/expat-2.7.1/conftools/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/conftools/missing -------------------------------------------------------------------------------- /library/expat-2.7.1/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/doc/Makefile.am -------------------------------------------------------------------------------- /library/expat-2.7.1/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/doc/Makefile.in -------------------------------------------------------------------------------- /library/expat-2.7.1/doc/ok.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/doc/ok.min.css -------------------------------------------------------------------------------- /library/expat-2.7.1/doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/doc/style.css -------------------------------------------------------------------------------- /library/expat-2.7.1/doc/xmlwf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/doc/xmlwf.1 -------------------------------------------------------------------------------- /library/expat-2.7.1/doc/xmlwf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/doc/xmlwf.xml -------------------------------------------------------------------------------- /library/expat-2.7.1/expat.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/expat.pc.cmake -------------------------------------------------------------------------------- /library/expat-2.7.1/expat.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/expat.pc.in -------------------------------------------------------------------------------- /library/expat-2.7.1/expat_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/expat_config.h -------------------------------------------------------------------------------- /library/expat-2.7.1/expat_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/expat_config.h.in -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/Makefile.am -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/Makefile.in -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/ascii.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/asciitab.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/expat.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/iasciitab.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/internal.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/latin1tab.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/nametab.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/siphash.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/utf8tab.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/winconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/winconfig.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/xmlparse.c -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/xmlrole.c -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/xmlrole.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/xmltok.c -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/xmltok.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/xmltok_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/xmltok_impl.c -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/xmltok_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/xmltok_impl.h -------------------------------------------------------------------------------- /library/expat-2.7.1/lib/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/lib/xmltok_ns.c -------------------------------------------------------------------------------- /library/expat-2.7.1/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/m4/libtool.m4 -------------------------------------------------------------------------------- /library/expat-2.7.1/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/m4/ltoptions.m4 -------------------------------------------------------------------------------- /library/expat-2.7.1/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/m4/ltsugar.m4 -------------------------------------------------------------------------------- /library/expat-2.7.1/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/m4/ltversion.m4 -------------------------------------------------------------------------------- /library/expat-2.7.1/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /library/expat-2.7.1/run.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/run.sh.in -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/Makefile.am -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/Makefile.in -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/README.md -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/acc_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/acc_tests.c -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/acc_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/acc_tests.h -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/chardata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/chardata.c -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/chardata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/chardata.h -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/common.c -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/common.h -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/dummy.c -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/dummy.h -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/handlers.c -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/handlers.h -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/memcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/memcheck.c -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/memcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/memcheck.h -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/minicheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/minicheck.c -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/minicheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/minicheck.h -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/ns_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/ns_tests.c -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/ns_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/ns_tests.h -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/runtests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/runtests.c -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/udiffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/udiffer.py -------------------------------------------------------------------------------- /library/expat-2.7.1/tests/xmltest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/tests/xmltest.sh -------------------------------------------------------------------------------- /library/expat-2.7.1/win32/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/win32/README.txt -------------------------------------------------------------------------------- /library/expat-2.7.1/win32/expat.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/win32/expat.iss -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/Makefile.am -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/Makefile.in -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/codepage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/codepage.c -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/codepage.h -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/ct.c -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/filemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/filemap.h -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/xmlfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/xmlfile.c -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/xmlfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/xmlfile.h -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/xmlmime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/xmlmime.c -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/xmlmime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/xmlmime.h -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/xmltchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/xmltchar.h -------------------------------------------------------------------------------- /library/expat-2.7.1/xmlwf/xmlwf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/expat-2.7.1/xmlwf/xmlwf.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/.mailmap -------------------------------------------------------------------------------- /library/ffmpeg-4.4/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/.travis.yml -------------------------------------------------------------------------------- /library/ffmpeg-4.4/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/CONTRIBUTING.md -------------------------------------------------------------------------------- /library/ffmpeg-4.4/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/COPYING.GPLv2 -------------------------------------------------------------------------------- /library/ffmpeg-4.4/COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/COPYING.GPLv3 -------------------------------------------------------------------------------- /library/ffmpeg-4.4/COPYING.LGPLv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/COPYING.LGPLv2.1 -------------------------------------------------------------------------------- /library/ffmpeg-4.4/COPYING.LGPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/COPYING.LGPLv3 -------------------------------------------------------------------------------- /library/ffmpeg-4.4/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/CREDITS -------------------------------------------------------------------------------- /library/ffmpeg-4.4/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/Changelog -------------------------------------------------------------------------------- /library/ffmpeg-4.4/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/INSTALL.md -------------------------------------------------------------------------------- /library/ffmpeg-4.4/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/LICENSE.md -------------------------------------------------------------------------------- /library/ffmpeg-4.4/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/MAINTAINERS -------------------------------------------------------------------------------- /library/ffmpeg-4.4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/Makefile -------------------------------------------------------------------------------- /library/ffmpeg-4.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/README.md -------------------------------------------------------------------------------- /library/ffmpeg-4.4/RELEASE: -------------------------------------------------------------------------------- 1 | 4.4 2 | -------------------------------------------------------------------------------- /library/ffmpeg-4.4/RELEASE_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/RELEASE_NOTES -------------------------------------------------------------------------------- /library/ffmpeg-4.4/VERSION: -------------------------------------------------------------------------------- 1 | 4.4 2 | -------------------------------------------------------------------------------- /library/ffmpeg-4.4/compat/aix/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/compat/aix/math.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/compat/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/compat/getopt.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/compat/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/compat/strtod.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/compat/va_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/compat/va_copy.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/compat/w32dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/compat/w32dlfcn.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/configure -------------------------------------------------------------------------------- /library/ffmpeg-4.4/ffbuild/arch.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/ffbuild/arch.mak -------------------------------------------------------------------------------- /library/ffmpeg-4.4/ffbuild/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/ffbuild/common.mak -------------------------------------------------------------------------------- /library/ffmpeg-4.4/ffbuild/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/ffbuild/version.sh -------------------------------------------------------------------------------- /library/ffmpeg-4.4/fftools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/fftools/Makefile -------------------------------------------------------------------------------- /library/ffmpeg-4.4/fftools/cmdutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/fftools/cmdutils.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/fftools/cmdutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/fftools/cmdutils.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/fftools/ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/fftools/ffmpeg.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/fftools/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/fftools/ffmpeg.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/fftools/ffplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/fftools/ffplay.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/fftools/ffprobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/fftools/ffprobe.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/012v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/012v.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/4xm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/4xm.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/8bps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/8bps.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/8svx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/8svx.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/aac.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/aacps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/aacps.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/aacps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/aacps.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/aasc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/aasc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ac3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ac3.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ac3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ac3.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/adpcm.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/adpcm.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/adx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/adx.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/adx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/adx.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/agm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/agm.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/aic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/aic.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/alac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/alac.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/amr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/amr.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/anm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/anm.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ansi.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/apng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/apng.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/aptx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/aptx.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/aptx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/aptx.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/arbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/arbc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/argo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/argo.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ass.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ass.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/asv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/asv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/asv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/asv.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/atrac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/atrac.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/atrac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/atrac.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/aura.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/aura.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/av1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/av1.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/avdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/avdct.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/avdct.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/avfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/avfft.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/avfft.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/avs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/avs.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/avs3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/avs3.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/bfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/bfi.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/bgmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/bgmc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/bgmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/bgmc.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/bink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/bink.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/bmp.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/bmp.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/bsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/bsf.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/bsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/bsf.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/c93.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/c93.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cabac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cabac.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cabac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cabac.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cavs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cavs.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cavs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cavs.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cbs.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cbs.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cdxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cdxl.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cfhd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cfhd.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cfhd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cfhd.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cllc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cllc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/codec.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cook.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cpia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cpia.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cri.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cscd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cscd.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/cyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/cyuv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dca.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dca.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dct.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dct.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dct32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dct32.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dds.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dfa.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dirac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dirac.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dirac.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dpcm.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dpx.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dsd.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dsd.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dv.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dvdec.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dvenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dvenc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dxa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dxa.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dxv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dxv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dxva2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dxva2.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/dxva2.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/eacmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/eacmv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/eamad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/eamad.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/eatgq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/eatgq.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/eatgv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/eatgv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/eatqi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/eatqi.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/elbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/elbg.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/elbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/elbg.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/exif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/exif.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/exif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/exif.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/exr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/exr.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ffjni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ffjni.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ffjni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ffjni.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/fft.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ffv1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ffv1.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ffv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ffv1.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/fic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/fic.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/file_open.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/file_open.c" 2 | -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/fits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/fits.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/fits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/fits.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/flac.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/flac.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/flv.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/fmvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/fmvc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/fraps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/fraps.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/frwu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/frwu.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/g722.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/g722.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/g722.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/g722.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/g726.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/g726.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/g729.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/g729.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/gdv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/gdv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/gif.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/gif.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/gsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/gsm.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/h261.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/h261.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/h261.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/h261.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/h263.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/h263.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/h263.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/h263.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/h264.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/hap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/hap.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/hap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/hap.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/hcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/hcom.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/hevc.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/hqx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/hqx.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/hqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/hqx.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/iff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/iff.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/imc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/imc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/imm4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/imm4.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/imm5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/imm5.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/imx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/imx.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ivi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ivi.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ivi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ivi.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/jni.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/jni.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/jvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/jvdec.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/kmvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/kmvc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/lcl.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/loco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/loco.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/lpc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/lpc.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/lsp.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/lsp.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/lzf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/lzf.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/lzf.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/lzw.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/lzw.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/m101.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/m101.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mace.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mdec.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mfenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mfenc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mimic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mimic.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mjpeg.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mlp.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mlp.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mlz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mlz.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mlz.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mpc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mpc.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mpc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mpc7.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mpc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mpc8.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mqc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mqc.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mscc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mscc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/msrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/msrle.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mss1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mss1.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mss12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mss12.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mss12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mss12.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mss2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mss2.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mss3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mss3.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mss4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mss4.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mv30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mv30.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mvha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mvha.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/mwsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/mwsc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/nuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/nuv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/nvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/nvdec.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/nvdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/nvdec.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/nvenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/nvenc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/nvenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/nvenc.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/omx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/omx.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/opus.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/opus.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/paf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/paf.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/pcm.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/pcx.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/png.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/png.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/pnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/pnm.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/pnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/pnm.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/psd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/psd.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ptx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ptx.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/qdm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/qdm2.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/qdmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/qdmc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/qdrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/qdrw.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/qpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/qpeg.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/qsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/qsv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/qsv.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/qtrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/qtrle.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ra144.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ra144.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ra144.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ra144.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ra288.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ra288.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ra288.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ra288.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/raw.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/raw.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/reverse.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/reverse.c" 2 | -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/rl.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/rl.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/rl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/rl2.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/rle.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/rle.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/sbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/sbc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/sbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/sbc.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/sbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/sbr.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/sei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/sei.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/sga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/sga.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/sgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/sgi.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/smc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/tak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/tak.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/tak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/tak.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/tmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/tmv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/tta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/tta.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/txd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/txd.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/vb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/vb.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/vc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/vc1.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/vc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/vc1.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/vlc.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/vp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/vp3.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/vp5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/vp5.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/vp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/vp6.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/vp8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/vp8.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/vp8.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/vp9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/vp9.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/vp9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/vp9.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/wma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/wma.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/wma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/wma.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/xan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/xan.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/xl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/xl.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/xwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/xwd.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/ylc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/ylc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavcodec/yop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavcodec/yop.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/au.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/au.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/dv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/dv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/dv.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/file_open.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/file_open.c" 2 | -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/golomb_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavcodec/golomb.c" 2 | -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/ip.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/ip.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/mm.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/rm.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/rm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/rm.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/ty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/ty.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/wv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/wv.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/wv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/wv.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavformat/xa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavformat/xa.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/aes.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/aes.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/cpu.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/cpu.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/crc.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/crc.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/des.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/des.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/dict.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/dict.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/eval.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/eval.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/fifo.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/fifo.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/file.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/file.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/hash.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/hash.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/hmac.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/hmac.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/lfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/lfg.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/lfg.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/libm.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/lls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/lls.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/lls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/lls.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/log.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/log.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/lzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/lzo.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/lzo.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/md5.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/md5.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/mem.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/mem.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/opt.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/opt.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/pca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/pca.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/pca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/pca.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/rc4.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/rc4.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/sha.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/sha.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/tea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/tea.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/tea.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/time.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/time.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/tree.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/tree.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/tx.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/tx.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/xtea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/xtea.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/libavutil/xtea.h -------------------------------------------------------------------------------- /library/ffmpeg-4.4/libswscale/log2_tab.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/log2_tab.c" 2 | -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/Makefile -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/aviocat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/aviocat.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/cl2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/cl2c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/clean-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/clean-diff -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/coverity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/coverity.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/cws2fws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/cws2fws.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/dvd2concat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/dvd2concat -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/ffescape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/ffescape.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/ffeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/ffeval.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/ffhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/ffhash.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/gen-rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/gen-rc -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/ismindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/ismindex.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/murge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/murge -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/patcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/patcheck -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/plotframes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/plotframes -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/trasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/trasher.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/yuvcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/yuvcmp.c -------------------------------------------------------------------------------- /library/ffmpeg-4.4/tools/zmqsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/ffmpeg-4.4/tools/zmqsend.c -------------------------------------------------------------------------------- /library/libexif-0.6.25/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/ABOUT-NLS -------------------------------------------------------------------------------- /library/libexif-0.6.25/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/AUTHORS -------------------------------------------------------------------------------- /library/libexif-0.6.25/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/COPYING -------------------------------------------------------------------------------- /library/libexif-0.6.25/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/ChangeLog -------------------------------------------------------------------------------- /library/libexif-0.6.25/ChangeLog.git: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/libexif-0.6.25/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/INSTALL -------------------------------------------------------------------------------- /library/libexif-0.6.25/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/Makefile.am -------------------------------------------------------------------------------- /library/libexif-0.6.25/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/Makefile.in -------------------------------------------------------------------------------- /library/libexif-0.6.25/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/NEWS -------------------------------------------------------------------------------- /library/libexif-0.6.25/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/README -------------------------------------------------------------------------------- /library/libexif-0.6.25/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/SECURITY.md -------------------------------------------------------------------------------- /library/libexif-0.6.25/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/TODO -------------------------------------------------------------------------------- /library/libexif-0.6.25/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/aclocal.m4 -------------------------------------------------------------------------------- /library/libexif-0.6.25/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/ar-lib -------------------------------------------------------------------------------- /library/libexif-0.6.25/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/compile -------------------------------------------------------------------------------- /library/libexif-0.6.25/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/config.guess -------------------------------------------------------------------------------- /library/libexif-0.6.25/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/config.h.in -------------------------------------------------------------------------------- /library/libexif-0.6.25/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/config.rpath -------------------------------------------------------------------------------- /library/libexif-0.6.25/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/config.sub -------------------------------------------------------------------------------- /library/libexif-0.6.25/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/configure -------------------------------------------------------------------------------- /library/libexif-0.6.25/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/configure.ac -------------------------------------------------------------------------------- /library/libexif-0.6.25/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/depcomp -------------------------------------------------------------------------------- /library/libexif-0.6.25/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/install-sh -------------------------------------------------------------------------------- /library/libexif-0.6.25/libexif.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/libexif.spec -------------------------------------------------------------------------------- /library/libexif-0.6.25/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/ltmain.sh -------------------------------------------------------------------------------- /library/libexif-0.6.25/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/missing -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/Makevars -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/be.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/be.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/be.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/bs.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/bs.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/bs.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/cs.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/cs.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/cs.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/da.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/da.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/da.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/de.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/de.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/en_AU.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/en_AU.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/en_AU.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/en_CA.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/en_CA.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/en_CA.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/en_GB.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/en_GB.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/en_GB.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/es.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/es.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/es.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/fr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/fr.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/fr.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/it.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/it.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/it.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/ja.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/ja.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/ja.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/ka.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/ka.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/ka.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/ms.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/ms.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/ms.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/nl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/nl.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/nl.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/pl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/pl.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/pl.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/pt.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/pt.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/pt.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/pt_BR.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/pt_BR.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/pt_BR.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/quot.sed -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/ro.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/ro.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/ro.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/ru.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/ru.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/ru.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/sk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/sk.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/sk.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/sq.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/sq.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/sq.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/sr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/sr.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/sr.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/sv.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/sv.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/sv.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/tr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/tr.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/tr.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/uk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/uk.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/uk.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/vi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/vi.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/vi.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/zh_CN.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/zh_CN.gmo -------------------------------------------------------------------------------- /library/libexif-0.6.25/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/po/zh_CN.po -------------------------------------------------------------------------------- /library/libexif-0.6.25/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/libexif-0.6.25/test-driver -------------------------------------------------------------------------------- /library/pixymeta-android/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/pixymeta-android/LICENSE -------------------------------------------------------------------------------- /library/pixymeta-android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/pixymeta-android/README.md -------------------------------------------------------------------------------- /library/pixymeta-android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/pixymeta-android/build.xml -------------------------------------------------------------------------------- /library/pixymeta-android/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/library/pixymeta-android/pom.xml -------------------------------------------------------------------------------- /scripts/exiv2_for_diff.sh: -------------------------------------------------------------------------------- 1 | #/bin/bash 2 | 3 | exiv2 -p a "$1" | sort 4 | exit 0; 5 | -------------------------------------------------------------------------------- /scripts/extract_tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/scripts/extract_tags.sh -------------------------------------------------------------------------------- /scripts/prepare_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/scripts/prepare_release.sh -------------------------------------------------------------------------------- /scripts/screenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/scripts/screenshots.sh -------------------------------------------------------------------------------- /scripts/store_output_to_pic_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/scripts/store_output_to_pic_repo.sh -------------------------------------------------------------------------------- /scripts/tags_diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/scripts/tags_diff.sh -------------------------------------------------------------------------------- /scripts/tags_git_diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/scripts/tags_git_diff.sh -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/settings.gradle -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | /data/exif-samples 2 | /output 3 | -------------------------------------------------------------------------------- /tests/check_diff_accross_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/tests/check_diff_accross_api.sh -------------------------------------------------------------------------------- /tests/check_diff_accross_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/tests/check_diff_accross_version.sh -------------------------------------------------------------------------------- /tests/check_logcat_match.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/tests/check_logcat_match.sh -------------------------------------------------------------------------------- /tests/data/empty_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/noexif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/tests/data/noexif.jpg -------------------------------------------------------------------------------- /tests/data/text_file.txt: -------------------------------------------------------------------------------- 1 | Dummy text file for tests 2 | -------------------------------------------------------------------------------- /tests/data/text_with_jpg_extension.jpg: -------------------------------------------------------------------------------- 1 | text file disguised in jpg 2 | -------------------------------------------------------------------------------- /tests/has_mandatory_tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/tests/has_mandatory_tags.sh -------------------------------------------------------------------------------- /tests/is_same_picture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/tests/is_same_picture.sh -------------------------------------------------------------------------------- /tests/mandatory_exif_tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/tests/mandatory_exif_tags.txt -------------------------------------------------------------------------------- /tests/replace_picture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/tests/replace_picture.sh -------------------------------------------------------------------------------- /tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenzap/exif-thumbnail-adder/HEAD/tests/run_tests.sh -------------------------------------------------------------------------------- /version_last_tag.txt: -------------------------------------------------------------------------------- 1 | version: 1.0.1+767 --------------------------------------------------------------------------------