mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
libeplayer3: remove wmv version (unused)
Origin commit data
------------------
Branch: master
Commit: 97f95c8385
Author: martii <m4rtii@gmx.de>
Date: 2014-04-05 (Sat, 05 Apr 2014)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -103,7 +103,7 @@ static float seek_sec_abs = -1.0, seek_sec_rel = 0.0;
|
|||||||
/* MISC Functions */
|
/* MISC Functions */
|
||||||
/* ***************************** */
|
/* ***************************** */
|
||||||
|
|
||||||
static char *Codec2Encoding(AVCodecContext * codec, int *version)
|
static char *Codec2Encoding(AVCodecContext * codec)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Codec ID: %ld (%.8lx)\n", (long) codec->codec_id, (long) codec->codec_id);
|
fprintf(stderr, "Codec ID: %ld (%.8lx)\n", (long) codec->codec_id, (long) codec->codec_id);
|
||||||
switch (codec->codec_id) {
|
switch (codec->codec_id) {
|
||||||
@@ -129,13 +129,8 @@ static char *Codec2Encoding(AVCodecContext * codec, int *version)
|
|||||||
case AV_CODEC_ID_MSMPEG4V3:
|
case AV_CODEC_ID_MSMPEG4V3:
|
||||||
return "V_MSCOMP";
|
return "V_MSCOMP";
|
||||||
case AV_CODEC_ID_WMV1:
|
case AV_CODEC_ID_WMV1:
|
||||||
*version = 1;
|
|
||||||
return "V_WMV";
|
|
||||||
case AV_CODEC_ID_WMV2:
|
case AV_CODEC_ID_WMV2:
|
||||||
*version = 2;
|
|
||||||
return "V_WMV";
|
|
||||||
case AV_CODEC_ID_WMV3:
|
case AV_CODEC_ID_WMV3:
|
||||||
*version = 3;
|
|
||||||
return "V_WMV";
|
return "V_WMV";
|
||||||
case AV_CODEC_ID_VC1:
|
case AV_CODEC_ID_VC1:
|
||||||
return "V_VC1";
|
return "V_VC1";
|
||||||
@@ -687,12 +682,11 @@ int container_ffmpeg_update_tracks(Context_t * context, char *filename)
|
|||||||
for (n = 0; n < avContext->nb_streams; n++) {
|
for (n = 0; n < avContext->nb_streams; n++) {
|
||||||
Track_t track;
|
Track_t track;
|
||||||
AVStream *stream = avContext->streams[n];
|
AVStream *stream = avContext->streams[n];
|
||||||
int version = 0;
|
|
||||||
|
|
||||||
char *encoding = Codec2Encoding(stream->codec, &version);
|
char *encoding = Codec2Encoding(stream->codec);
|
||||||
|
|
||||||
if (encoding != NULL)
|
if (encoding != NULL)
|
||||||
ffmpeg_printf(1, "%d. encoding = %s - version %d\n", n, encoding, version);
|
ffmpeg_printf(1, "%d. encoding = %s\n", n, encoding);
|
||||||
|
|
||||||
if (!stream->id)
|
if (!stream->id)
|
||||||
stream->id = n;
|
stream->id = n;
|
||||||
|
Reference in New Issue
Block a user