mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-27 15:32:43 +02:00
This imports libeplayer3 as of commit 9160371ccc6 (2012-02-02)
git://gitorious.org/open-duckbox-project-sh4/tdt.git
It would be better to use the original repo, but I need too many
changes for now :-(
Origin commit data
------------------
Branch: master
Commit: e4a2e1cbb7
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-02-14 (Tue, 14 Feb 2012)
------------------
This commit was generated by Migit
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
#ifndef _ffmpeg_metadata_123
|
|
#define _ffmpeg_metadata_123
|
|
|
|
/* these file contains a list of metadata tags which can be used by applications
|
|
* to stream specific information. it maps the tags to ffmpeg specific tags.
|
|
*
|
|
* fixme: if we add other container for some resons later (maybe some other libs
|
|
* support better demuxing or something like this), then we should think on a
|
|
* more generic mechanism!
|
|
*/
|
|
|
|
/* metatdata map list:
|
|
*/
|
|
char* metadata_map[] =
|
|
{
|
|
/* our tags ffmpeg tag / id3v2 */
|
|
"Title", "TIT2",
|
|
"Title", "TT2",
|
|
"Artist", "TPE1",
|
|
"Artist", "TP1",
|
|
"AlbumArtist", "TPE2",
|
|
"AlbumArtist", "TP2",
|
|
"Album", "TALB",
|
|
"Album", "TAL",
|
|
"Year", "TDRL", /* fixme */
|
|
"Year", "TDRC", /* fixme */
|
|
"Comment", "unknown",
|
|
"Track", "TRCK",
|
|
"Track", "TRK",
|
|
"Copyright", "TCOP",
|
|
"Composer", "TCOM",
|
|
"Genre", "TCON",
|
|
"Genre", "TCO",
|
|
"EncodedBy", "TENC",
|
|
"EncodedBy", "TEN",
|
|
"Language", "TLAN",
|
|
"Performer", "TPE3",
|
|
"Performer", "TP3",
|
|
"Publisher", "TPUB",
|
|
"Encoder", "TSSE",
|
|
"Disc", "TPOS",
|
|
NULL
|
|
};
|
|
|
|
#endif
|