2001-04-09 22:21:07 +02:00
|
|
|
/*
|
2012-07-02 01:35:57 +02:00
|
|
|
* codecs.conf parser
|
2010-01-31 00:24:23 +01:00
|
|
|
*
|
|
|
|
* Copyright (C) 2001 Szabolcs Berecz <szabi@inf.elte.hu>
|
|
|
|
*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2001-04-09 22:21:07 +02:00
|
|
|
*/
|
2001-04-07 23:27:57 +02:00
|
|
|
|
2001-04-09 22:21:07 +02:00
|
|
|
#define DEBUG
|
2001-04-07 23:27:57 +02:00
|
|
|
|
2001-12-27 19:38:10 +01:00
|
|
|
//disable asserts
|
2009-07-07 01:26:13 +02:00
|
|
|
#define NDEBUG
|
2001-12-27 19:38:10 +01:00
|
|
|
|
2001-04-07 01:20:46 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
2008-12-02 19:41:47 +01:00
|
|
|
#include <stdint.h>
|
2001-04-07 01:20:46 +02:00
|
|
|
|
2002-03-23 19:59:36 +01:00
|
|
|
#include "config.h"
|
2002-05-02 13:00:16 +02:00
|
|
|
#include "mp_msg.h"
|
2005-04-30 18:15:07 +02:00
|
|
|
#include "libmpcodecs/img_format.h"
|
2001-04-07 01:20:46 +02:00
|
|
|
#include "codec-cfg.h"
|
2012-07-02 01:35:57 +02:00
|
|
|
#include "bstr.h"
|
|
|
|
#include "stream/stream.h"
|
|
|
|
#include "path.h"
|
2001-04-07 01:20:46 +02:00
|
|
|
|
2012-07-02 01:35:57 +02:00
|
|
|
static const char embedded_file[] =
|
2002-12-16 00:45:19 +01:00
|
|
|
#include "codecs.conf.h"
|
2012-07-02 01:35:57 +02:00
|
|
|
;
|
|
|
|
static const struct bstr builtin_codecs_conf = {
|
|
|
|
.start = (char *)embedded_file, .len = sizeof(embedded_file) - 1
|
|
|
|
};
|
2002-12-16 00:45:19 +01:00
|
|
|
|
2008-12-02 19:41:47 +01:00
|
|
|
#define mmioFOURCC( ch0, ch1, ch2, ch3 ) \
|
|
|
|
( (uint32_t)(uint8_t)(ch0) | ( (uint32_t)(uint8_t)(ch1) << 8 ) | \
|
|
|
|
( (uint32_t)(uint8_t)(ch2) << 16 ) | ( (uint32_t)(uint8_t)(ch3) << 24 ) )
|
|
|
|
|
2002-05-02 13:00:16 +02:00
|
|
|
#define PRINT_LINENUM mp_msg(MSGT_CODECCFG,MSGL_ERR," at line %d\n", line_num)
|
2001-04-07 01:20:46 +02:00
|
|
|
|
2010-05-04 01:34:38 +02:00
|
|
|
#define MAX_NR_TOKEN 16
|
2001-04-07 01:20:46 +02:00
|
|
|
|
2010-05-04 01:34:38 +02:00
|
|
|
#define RET_EOF -1
|
|
|
|
#define RET_EOL -2
|
2001-04-07 01:20:46 +02:00
|
|
|
|
2010-05-04 01:34:38 +02:00
|
|
|
#define TYPE_VIDEO 0
|
|
|
|
#define TYPE_AUDIO 1
|
2001-04-07 01:20:46 +02:00
|
|
|
|
2010-06-19 20:31:35 +02:00
|
|
|
static int codecs_conf_release;
|
2004-01-08 19:02:31 +01:00
|
|
|
char * codecs_file = NULL;
|
|
|
|
|
2001-04-07 23:27:57 +02:00
|
|
|
static int add_to_fourcc(char *s, char *alias, unsigned int *fourcc,
|
2010-05-04 01:34:38 +02:00
|
|
|
unsigned int *map)
|
2001-04-07 01:20:46 +02:00
|
|
|
{
|
2010-05-04 01:34:38 +02:00
|
|
|
int i, j, freeslots;
|
|
|
|
unsigned int tmp;
|
|
|
|
|
|
|
|
/* find first unused slot */
|
|
|
|
for (i = 0; i < CODECS_MAX_FOURCC && fourcc[i] != 0xffffffff; i++)
|
|
|
|
/* NOTHING */;
|
|
|
|
freeslots = CODECS_MAX_FOURCC - i;
|
|
|
|
if (!freeslots)
|
|
|
|
goto err_out_too_many;
|
|
|
|
|
|
|
|
do {
|
2012-07-02 01:35:57 +02:00
|
|
|
if (strlen(s) < 4)
|
|
|
|
goto err_out_parse_error;
|
2011-07-07 06:38:24 +02:00
|
|
|
tmp = mmioFOURCC(s[0], s[1], s[2], s[3]);
|
2010-05-04 01:34:38 +02:00
|
|
|
for (j = 0; j < i; j++)
|
|
|
|
if (tmp == fourcc[j])
|
|
|
|
goto err_out_duplicated;
|
|
|
|
fourcc[i] = tmp;
|
2011-07-07 06:38:24 +02:00
|
|
|
map[i] = alias ? mmioFOURCC(alias[0], alias[1], alias[2], alias[3]) : tmp;
|
2010-05-04 01:34:38 +02:00
|
|
|
s += 4;
|
|
|
|
i++;
|
|
|
|
} while ((*(s++) == ',') && --freeslots);
|
|
|
|
|
|
|
|
if (!freeslots)
|
|
|
|
goto err_out_too_many;
|
|
|
|
if (*(--s) != '\0')
|
|
|
|
goto err_out_parse_error;
|
|
|
|
return 1;
|
2001-04-10 22:09:23 +02:00
|
|
|
err_out_duplicated:
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"duplicated FourCC");
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
2001-04-10 22:09:23 +02:00
|
|
|
err_out_too_many:
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"too many FourCCs/formats...");
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
2001-04-11 22:55:14 +02:00
|
|
|
err_out_parse_error:
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"parse error");
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
2001-04-07 01:20:46 +02:00
|
|
|
}
|
|
|
|
|
2002-10-17 02:20:44 +02:00
|
|
|
static int add_to_format(char *s, char *alias,unsigned int *fourcc, unsigned int *fourccmap)
|
2001-04-07 01:20:46 +02:00
|
|
|
{
|
2010-05-04 01:34:38 +02:00
|
|
|
int i, j;
|
|
|
|
char *endptr;
|
|
|
|
|
|
|
|
/* find first unused slot */
|
|
|
|
for (i = 0; i < CODECS_MAX_FOURCC && fourcc[i] != 0xffffffff; i++)
|
|
|
|
/* NOTHING */;
|
|
|
|
if (i == CODECS_MAX_FOURCC) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"too many FourCCs/formats...");
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
fourcc[i]=strtoul(s,&endptr,0);
|
|
|
|
if (*endptr != '\0') {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"parse error (format ID not a number?)");
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(alias){
|
|
|
|
fourccmap[i]=strtoul(alias,&endptr,0);
|
|
|
|
if (*endptr != '\0') {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"parse error (format ID alias not a number?)");
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
fourccmap[i]=fourcc[i];
|
|
|
|
|
|
|
|
for (j = 0; j < i; j++)
|
|
|
|
if (fourcc[j] == fourcc[i]) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"duplicated format ID");
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2001-04-07 01:20:46 +02:00
|
|
|
}
|
2001-04-07 02:51:38 +02:00
|
|
|
|
2010-05-07 21:02:47 +02:00
|
|
|
static const struct {
|
|
|
|
const char *name;
|
|
|
|
const unsigned int num;
|
|
|
|
} fmt_table[] = {
|
|
|
|
// note: due to parser deficiencies/simplicity, if one format
|
|
|
|
// name matches the beginning of another, the longer one _must_
|
|
|
|
// come first in this list.
|
|
|
|
{"YV12", IMGFMT_YV12},
|
|
|
|
{"I420", IMGFMT_I420},
|
|
|
|
{"IYUV", IMGFMT_IYUV},
|
|
|
|
{"NV12", IMGFMT_NV12},
|
|
|
|
{"NV21", IMGFMT_NV21},
|
|
|
|
{"YVU9", IMGFMT_YVU9},
|
|
|
|
{"IF09", IMGFMT_IF09},
|
|
|
|
{"444P16LE", IMGFMT_444P16_LE},
|
|
|
|
{"444P16BE", IMGFMT_444P16_BE},
|
|
|
|
{"422P16LE", IMGFMT_422P16_LE},
|
|
|
|
{"422P16BE", IMGFMT_422P16_BE},
|
|
|
|
{"420P16LE", IMGFMT_420P16_LE},
|
|
|
|
{"420P16BE", IMGFMT_420P16_BE},
|
|
|
|
{"444P16", IMGFMT_444P16},
|
2011-06-26 00:22:53 +02:00
|
|
|
{"444P10", IMGFMT_444P10},
|
|
|
|
{"444P9", IMGFMT_444P9},
|
2010-05-07 21:02:47 +02:00
|
|
|
{"422P16", IMGFMT_422P16},
|
2011-06-26 00:22:53 +02:00
|
|
|
{"422P10", IMGFMT_422P10},
|
2010-05-07 21:02:47 +02:00
|
|
|
{"420P16", IMGFMT_420P16},
|
2011-06-26 00:22:53 +02:00
|
|
|
{"420P10", IMGFMT_420P10},
|
|
|
|
{"420P9", IMGFMT_420P9},
|
2010-05-07 21:02:47 +02:00
|
|
|
{"420A", IMGFMT_420A},
|
|
|
|
{"444P", IMGFMT_444P},
|
|
|
|
{"422P", IMGFMT_422P},
|
|
|
|
{"411P", IMGFMT_411P},
|
|
|
|
{"440P", IMGFMT_440P},
|
|
|
|
{"Y800", IMGFMT_Y800},
|
|
|
|
{"Y8", IMGFMT_Y8},
|
|
|
|
|
|
|
|
{"YUY2", IMGFMT_YUY2},
|
|
|
|
{"UYVY", IMGFMT_UYVY},
|
|
|
|
{"YVYU", IMGFMT_YVYU},
|
|
|
|
|
|
|
|
{"RGB48LE", IMGFMT_RGB48LE},
|
|
|
|
{"RGB48BE", IMGFMT_RGB48BE},
|
|
|
|
{"RGB4", IMGFMT_RGB4},
|
|
|
|
{"RGB8", IMGFMT_RGB8},
|
|
|
|
{"RGB15", IMGFMT_RGB15},
|
|
|
|
{"RGB16", IMGFMT_RGB16},
|
|
|
|
{"RGB24", IMGFMT_RGB24},
|
|
|
|
{"RGB32", IMGFMT_RGB32},
|
|
|
|
{"BGR4", IMGFMT_BGR4},
|
|
|
|
{"BGR8", IMGFMT_BGR8},
|
|
|
|
{"BGR15", IMGFMT_BGR15},
|
|
|
|
{"BGR16", IMGFMT_BGR16},
|
|
|
|
{"BGR24", IMGFMT_BGR24},
|
|
|
|
{"BGR32", IMGFMT_BGR32},
|
|
|
|
{"RGB1", IMGFMT_RGB1},
|
|
|
|
{"BGR1", IMGFMT_BGR1},
|
|
|
|
|
|
|
|
{"MPES", IMGFMT_MPEGPES},
|
|
|
|
|
|
|
|
{"IDCT_MPEG2",IMGFMT_XVMC_IDCT_MPEG2},
|
|
|
|
{"MOCO_MPEG2",IMGFMT_XVMC_MOCO_MPEG2},
|
|
|
|
|
|
|
|
{"VDPAU_MPEG1",IMGFMT_VDPAU_MPEG1},
|
|
|
|
{"VDPAU_MPEG2",IMGFMT_VDPAU_MPEG2},
|
|
|
|
{"VDPAU_H264",IMGFMT_VDPAU_H264},
|
|
|
|
{"VDPAU_WMV3",IMGFMT_VDPAU_WMV3},
|
|
|
|
{"VDPAU_VC1",IMGFMT_VDPAU_VC1},
|
|
|
|
{"VDPAU_MPEG4",IMGFMT_VDPAU_MPEG4},
|
|
|
|
|
|
|
|
{NULL, 0}
|
|
|
|
};
|
2001-04-14 19:55:20 +02:00
|
|
|
|
2001-04-24 04:14:14 +02:00
|
|
|
|
2002-02-12 18:33:27 +01:00
|
|
|
static int add_to_inout(char *sfmt, char *sflags, unsigned int *outfmt,
|
2010-05-04 01:34:38 +02:00
|
|
|
unsigned char *outflags)
|
2001-04-24 04:14:14 +02:00
|
|
|
{
|
|
|
|
|
2010-05-04 01:34:38 +02:00
|
|
|
static char *flagstr[] = {
|
|
|
|
"flip",
|
|
|
|
"noflip",
|
|
|
|
"yuvhack",
|
|
|
|
"query",
|
|
|
|
"static",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
int i, j, freeslots;
|
|
|
|
unsigned char flags;
|
|
|
|
|
|
|
|
for (i = 0; i < CODECS_MAX_OUTFMT && outfmt[i] != 0xffffffff; i++)
|
|
|
|
/* NOTHING */;
|
|
|
|
freeslots = CODECS_MAX_OUTFMT - i;
|
|
|
|
if (!freeslots)
|
|
|
|
goto err_out_too_many;
|
|
|
|
|
|
|
|
flags = 0;
|
|
|
|
if(sflags) {
|
|
|
|
do {
|
|
|
|
for (j = 0; flagstr[j] != NULL; j++)
|
|
|
|
if (!strncmp(sflags, flagstr[j],
|
|
|
|
strlen(flagstr[j])))
|
|
|
|
break;
|
|
|
|
if (flagstr[j] == NULL)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
flags|=(1<<j);
|
|
|
|
sflags+=strlen(flagstr[j]);
|
|
|
|
} while (*(sflags++) == ',');
|
|
|
|
|
|
|
|
if (*(--sflags) != '\0')
|
|
|
|
goto err_out_parse_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
for (j = 0; fmt_table[j].name != NULL; j++)
|
|
|
|
if (!strncmp(sfmt, fmt_table[j].name, strlen(fmt_table[j].name)))
|
|
|
|
break;
|
|
|
|
if (fmt_table[j].name == NULL)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
outfmt[i] = fmt_table[j].num;
|
|
|
|
outflags[i] = flags;
|
|
|
|
++i;
|
|
|
|
sfmt+=strlen(fmt_table[j].name);
|
|
|
|
} while ((*(sfmt++) == ',') && --freeslots);
|
|
|
|
|
|
|
|
if (!freeslots)
|
|
|
|
goto err_out_too_many;
|
|
|
|
|
|
|
|
if (*(--sfmt) != '\0')
|
|
|
|
goto err_out_parse_error;
|
|
|
|
|
|
|
|
return 1;
|
2001-04-10 22:09:23 +02:00
|
|
|
err_out_too_many:
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"too many out...");
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
2001-04-11 22:55:14 +02:00
|
|
|
err_out_parse_error:
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"parse error");
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
2001-04-07 01:20:46 +02:00
|
|
|
}
|
|
|
|
|
2001-04-10 22:09:23 +02:00
|
|
|
static int validate_codec(codecs_t *c, int type)
|
2001-04-09 22:21:07 +02:00
|
|
|
{
|
2010-05-04 01:34:38 +02:00
|
|
|
unsigned int i;
|
|
|
|
char *tmp_name = c->name;
|
2001-04-10 22:09:23 +02:00
|
|
|
|
2010-05-04 01:34:38 +02:00
|
|
|
for (i = 0; i < strlen(tmp_name) && isalnum(tmp_name[i]); i++)
|
|
|
|
/* NOTHING */;
|
2001-12-09 19:25:09 +01:00
|
|
|
|
2010-05-04 01:34:38 +02:00
|
|
|
if (i < strlen(tmp_name)) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) name is not valid!\n", c->name);
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2001-12-09 19:25:09 +01:00
|
|
|
|
2010-05-04 01:34:38 +02:00
|
|
|
if (!c->info)
|
|
|
|
c->info = strdup(c->name);
|
2001-12-09 19:25:09 +01:00
|
|
|
|
|
|
|
#if 0
|
2010-05-04 01:34:38 +02:00
|
|
|
if (c->fourcc[0] == 0xffffffff) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) does not have FourCC/format!\n", c->name);
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2004-11-14 12:39:23 +01:00
|
|
|
#endif
|
2001-12-09 19:25:09 +01:00
|
|
|
|
2010-05-04 01:34:38 +02:00
|
|
|
if (!c->drv) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) does not have a driver!\n", c->name);
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2001-12-09 19:25:09 +01:00
|
|
|
|
|
|
|
#if 0
|
2010-10-11 14:33:57 +02:00
|
|
|
//FIXME: codec->driver == 4;... <- this should not be put in here...
|
|
|
|
//FIXME: Where are they defined ????????????
|
2010-05-04 01:34:38 +02:00
|
|
|
if (!c->dll && (c->driver == 4 ||
|
2010-05-07 21:02:47 +02:00
|
|
|
(c->driver == 2 && type == TYPE_VIDEO))) {
|
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) needs a 'dll'!\n", c->name);
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2010-10-11 14:33:57 +02:00
|
|
|
// FIXME: Can guid.f1 be 0? How does one know that it was not given?
|
2010-05-04 01:34:38 +02:00
|
|
|
// if (!(codec->flags & CODECS_FLAG_AUDIO) && codec->driver == 4)
|
2001-04-10 22:09:23 +02:00
|
|
|
|
2010-05-04 01:34:38 +02:00
|
|
|
if (type == TYPE_VIDEO)
|
|
|
|
if (c->outfmt[0] == 0xffffffff) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"\ncodec(%s) needs an 'outfmt'!\n", c->name);
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2001-04-10 22:47:37 +02:00
|
|
|
#endif
|
2010-05-04 01:34:38 +02:00
|
|
|
return 1;
|
2001-04-09 22:21:07 +02:00
|
|
|
}
|
2001-04-07 01:20:46 +02:00
|
|
|
|
2001-04-09 22:21:07 +02:00
|
|
|
static int add_comment(char *s, char **d)
|
2001-04-07 01:20:46 +02:00
|
|
|
{
|
2010-05-04 01:34:38 +02:00
|
|
|
int pos;
|
|
|
|
|
|
|
|
if (!*d)
|
|
|
|
pos = 0;
|
|
|
|
else {
|
|
|
|
pos = strlen(*d);
|
|
|
|
(*d)[pos++] = '\n';
|
|
|
|
}
|
|
|
|
if (!(*d = realloc(*d, pos + strlen(s) + 1))) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_FATAL,"Can't allocate memory for comment. ");
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
strcpy(*d + pos, s);
|
|
|
|
return 1;
|
2001-04-09 22:21:07 +02:00
|
|
|
}
|
2001-04-07 01:20:46 +02:00
|
|
|
|
2001-04-11 22:55:14 +02:00
|
|
|
static short get_cpuflags(char *s)
|
|
|
|
{
|
2010-05-04 01:34:38 +02:00
|
|
|
static char *flagstr[] = {
|
|
|
|
"mmx",
|
|
|
|
"sse",
|
|
|
|
"3dnow",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
int i;
|
|
|
|
short flags = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
for (i = 0; flagstr[i]; i++)
|
|
|
|
if (!strncmp(s, flagstr[i], strlen(flagstr[i])))
|
|
|
|
break;
|
|
|
|
if (!flagstr[i])
|
|
|
|
goto err_out_parse_error;
|
|
|
|
flags |= 1<<i;
|
|
|
|
s += strlen(flagstr[i]);
|
|
|
|
} while (*(s++) == ',');
|
|
|
|
|
|
|
|
if (*(--s) != '\0')
|
|
|
|
goto err_out_parse_error;
|
|
|
|
|
|
|
|
return flags;
|
2001-04-11 22:55:14 +02:00
|
|
|
err_out_parse_error:
|
2010-05-04 01:34:38 +02:00
|
|
|
return 0;
|
2001-04-11 22:55:14 +02:00
|
|
|
}
|
|
|
|
|
2012-07-02 01:35:57 +02:00
|
|
|
static struct bstr filetext;
|
2001-04-10 22:09:23 +02:00
|
|
|
static int line_num = 0;
|
|
|
|
static char *line;
|
|
|
|
static char *token[MAX_NR_TOKEN];
|
2002-05-27 00:39:38 +02:00
|
|
|
static int read_nextline = 1;
|
2001-04-10 22:09:23 +02:00
|
|
|
|
|
|
|
static int get_token(int min, int max)
|
|
|
|
{
|
2010-05-04 01:34:38 +02:00
|
|
|
static int line_pos;
|
|
|
|
int i;
|
|
|
|
char c;
|
|
|
|
|
|
|
|
if (max >= MAX_NR_TOKEN) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"get_token(): max >= MAX_MR_TOKEN!");
|
2010-05-04 01:34:38 +02:00
|
|
|
goto out_eof;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(token, 0x00, sizeof(*token) * max);
|
|
|
|
|
|
|
|
if (read_nextline) {
|
2012-07-02 01:35:57 +02:00
|
|
|
if (!filetext.len)
|
2010-05-04 01:34:38 +02:00
|
|
|
goto out_eof;
|
2012-07-02 01:35:57 +02:00
|
|
|
struct bstr nextline = bstr_getline(filetext, &filetext);
|
|
|
|
line = nextline.start;
|
|
|
|
line[nextline.len - 1] = 0;
|
2010-05-04 01:34:38 +02:00
|
|
|
line_pos = 0;
|
|
|
|
++line_num;
|
|
|
|
read_nextline = 0;
|
|
|
|
}
|
|
|
|
for (i = 0; i < max; i++) {
|
|
|
|
while (isspace(line[line_pos]))
|
|
|
|
++line_pos;
|
|
|
|
if (line[line_pos] == '\0' || line[line_pos] == '#' ||
|
|
|
|
line[line_pos] == ';') {
|
|
|
|
read_nextline = 1;
|
|
|
|
if (i >= min)
|
|
|
|
goto out_ok;
|
|
|
|
goto out_eol;
|
|
|
|
}
|
|
|
|
token[i] = line + line_pos;
|
|
|
|
c = line[line_pos];
|
|
|
|
if (c == '"' || c == '\'') {
|
|
|
|
token[i]++;
|
|
|
|
while (line[++line_pos] != c && line[line_pos])
|
|
|
|
/* NOTHING */;
|
|
|
|
} else {
|
|
|
|
for (/* NOTHING */; !isspace(line[line_pos]) &&
|
|
|
|
line[line_pos]; line_pos++)
|
|
|
|
/* NOTHING */;
|
|
|
|
}
|
|
|
|
if (!line[line_pos]) {
|
|
|
|
read_nextline = 1;
|
|
|
|
if (i >= min - 1)
|
|
|
|
goto out_ok;
|
|
|
|
goto out_eol;
|
|
|
|
}
|
|
|
|
line[line_pos] = '\0';
|
|
|
|
line_pos++;
|
|
|
|
}
|
2001-04-10 22:09:23 +02:00
|
|
|
out_ok:
|
2010-05-04 01:34:38 +02:00
|
|
|
return i;
|
2001-04-10 22:09:23 +02:00
|
|
|
out_eof:
|
2010-05-04 01:34:38 +02:00
|
|
|
read_nextline = 1;
|
|
|
|
return RET_EOF;
|
2001-04-10 22:09:23 +02:00
|
|
|
out_eol:
|
2010-05-04 01:34:38 +02:00
|
|
|
return RET_EOL;
|
2001-04-10 22:09:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static codecs_t *video_codecs=NULL;
|
|
|
|
static codecs_t *audio_codecs=NULL;
|
|
|
|
static int nr_vcodecs = 0;
|
|
|
|
static int nr_acodecs = 0;
|
|
|
|
|
2006-07-09 19:45:36 +02:00
|
|
|
int parse_codec_cfg(const char *cfgfile)
|
2001-04-09 22:21:07 +02:00
|
|
|
{
|
2010-05-04 01:34:38 +02:00
|
|
|
codecs_t *codec = NULL; // current codec
|
|
|
|
codecs_t **codecsp = NULL;// points to audio_codecs or to video_codecs
|
|
|
|
char *endptr; // strtoul()...
|
|
|
|
int *nr_codecsp;
|
|
|
|
int codec_type; /* TYPE_VIDEO/TYPE_AUDIO */
|
|
|
|
int tmp, i;
|
2012-07-02 01:35:57 +02:00
|
|
|
int codec_cfg_min;
|
|
|
|
|
|
|
|
for (struct bstr s = builtin_codecs_conf; ; bstr_getline(s, &s)) {
|
|
|
|
if (!s.len)
|
|
|
|
abort();
|
|
|
|
if (bstr_eatstart0(&s, "release ")) {
|
|
|
|
codec_cfg_min = atoi(s.start);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-07-07 01:26:13 +02:00
|
|
|
|
2010-05-04 01:34:38 +02:00
|
|
|
// in case we call it a second time
|
|
|
|
codecs_uninit_free();
|
2009-07-07 01:26:13 +02:00
|
|
|
|
2010-05-04 01:34:38 +02:00
|
|
|
nr_vcodecs = 0;
|
|
|
|
nr_acodecs = 0;
|
2001-12-27 19:38:10 +01:00
|
|
|
|
2012-07-02 01:35:57 +02:00
|
|
|
if (cfgfile) {
|
|
|
|
// Avoid printing errors from open_stream when trying optional files
|
|
|
|
if (!mp_path_exists(cfgfile)) {
|
|
|
|
mp_tmsg(MSGT_CODECCFG, MSGL_V,
|
|
|
|
"No optional codecs config file: %s\n", cfgfile);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
mp_msg(MSGT_CODECCFG, MSGL_V, "Reading codec config file: %s\n",
|
|
|
|
cfgfile);
|
|
|
|
struct stream *s = open_stream(cfgfile, NULL, NULL);
|
|
|
|
if (!s)
|
|
|
|
return 0;
|
|
|
|
filetext = stream_read_complete(s, NULL, 10000000, 1);
|
|
|
|
free_stream(s);
|
|
|
|
if (!filetext.start)
|
|
|
|
return 0;
|
|
|
|
} else
|
|
|
|
// Parsing modifies the data
|
|
|
|
filetext = bstrdup(NULL, builtin_codecs_conf);
|
|
|
|
void *tmpmem = filetext.start;
|
2010-05-04 01:34:38 +02:00
|
|
|
|
|
|
|
read_nextline = 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* this only catches release lines at the start of
|
|
|
|
* codecs.conf, before audiocodecs and videocodecs.
|
|
|
|
*/
|
|
|
|
while ((tmp = get_token(1, 1)) == RET_EOL)
|
|
|
|
/* NOTHING */;
|
|
|
|
if (tmp == RET_EOF)
|
|
|
|
goto out;
|
|
|
|
if (!strcmp(token[0], "release")) {
|
|
|
|
if (get_token(1, 2) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
tmp = atoi(token[0]);
|
2012-07-02 01:35:57 +02:00
|
|
|
if (tmp < codec_cfg_min)
|
2010-05-04 01:34:38 +02:00
|
|
|
goto err_out_release_num;
|
2010-06-19 20:31:35 +02:00
|
|
|
codecs_conf_release = tmp;
|
2010-05-04 01:34:38 +02:00
|
|
|
while ((tmp = get_token(1, 1)) == RET_EOL)
|
|
|
|
/* NOTHING */;
|
|
|
|
if (tmp == RET_EOF)
|
|
|
|
goto out;
|
|
|
|
} else
|
|
|
|
goto err_out_release_num;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check if the next block starts with 'audiocodec' or
|
|
|
|
* with 'videocodec'
|
|
|
|
*/
|
|
|
|
if (!strcmp(token[0], "audiocodec") || !strcmp(token[0], "videocodec"))
|
|
|
|
goto loop_enter;
|
|
|
|
goto err_out_parse_error;
|
|
|
|
|
|
|
|
while ((tmp = get_token(1, 1)) != RET_EOF) {
|
|
|
|
if (tmp == RET_EOL)
|
|
|
|
continue;
|
|
|
|
if (!strcmp(token[0], "audiocodec") ||
|
|
|
|
!strcmp(token[0], "videocodec")) {
|
|
|
|
if (!validate_codec(codec, codec_type))
|
|
|
|
goto err_out_not_valid;
|
|
|
|
loop_enter:
|
|
|
|
if (*token[0] == 'v') {
|
|
|
|
codec_type = TYPE_VIDEO;
|
|
|
|
nr_codecsp = &nr_vcodecs;
|
|
|
|
codecsp = &video_codecs;
|
|
|
|
} else if (*token[0] == 'a') {
|
|
|
|
codec_type = TYPE_AUDIO;
|
|
|
|
nr_codecsp = &nr_acodecs;
|
|
|
|
codecsp = &audio_codecs;
|
2001-04-11 22:55:14 +02:00
|
|
|
#ifdef DEBUG
|
2010-05-04 01:34:38 +02:00
|
|
|
} else {
|
|
|
|
mp_msg(MSGT_CODECCFG,MSGL_ERR,"picsba\n");
|
|
|
|
goto err_out;
|
2001-04-11 22:55:14 +02:00
|
|
|
#endif
|
2010-05-04 01:34:38 +02:00
|
|
|
}
|
|
|
|
if (!(*codecsp = realloc(*codecsp,
|
|
|
|
sizeof(codecs_t) * (*nr_codecsp + 2)))) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_FATAL,"Can't realloc '*codecsp': %s\n", strerror(errno));
|
2010-05-04 01:34:38 +02:00
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
codec=*codecsp + *nr_codecsp;
|
|
|
|
++*nr_codecsp;
|
|
|
|
memset(codec,0,sizeof(codecs_t));
|
|
|
|
memset(codec->fourcc, 0xff, sizeof(codec->fourcc));
|
|
|
|
memset(codec->outfmt, 0xff, sizeof(codec->outfmt));
|
|
|
|
memset(codec->infmt, 0xff, sizeof(codec->infmt));
|
|
|
|
|
|
|
|
if (get_token(1, 1) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
for (i = 0; i < *nr_codecsp - 1; i++) {
|
|
|
|
if(( (*codecsp)[i].name!=NULL) &&
|
|
|
|
(!strcmp(token[0], (*codecsp)[i].name)) ) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"Codec name '%s' isn't unique.", token[0]);
|
2010-05-04 01:34:38 +02:00
|
|
|
goto err_out_print_linenum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!(codec->name = strdup(token[0]))) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"Can't strdup -> 'name': %s\n", strerror(errno));
|
2010-05-04 01:34:38 +02:00
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
} else if (!strcmp(token[0], "info")) {
|
|
|
|
if (codec->info || get_token(1, 1) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
if (!(codec->info = strdup(token[0]))) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"Can't strdup -> 'info': %s\n", strerror(errno));
|
2010-05-04 01:34:38 +02:00
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
} else if (!strcmp(token[0], "comment")) {
|
|
|
|
if (get_token(1, 1) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
add_comment(token[0], &codec->comment);
|
|
|
|
} else if (!strcmp(token[0], "fourcc")) {
|
|
|
|
if (get_token(1, 2) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
if (!add_to_fourcc(token[0], token[1],
|
|
|
|
codec->fourcc,
|
|
|
|
codec->fourccmap))
|
|
|
|
goto err_out_print_linenum;
|
|
|
|
} else if (!strcmp(token[0], "format")) {
|
|
|
|
if (get_token(1, 2) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
if (!add_to_format(token[0], token[1],
|
|
|
|
codec->fourcc,codec->fourccmap))
|
|
|
|
goto err_out_print_linenum;
|
|
|
|
} else if (!strcmp(token[0], "driver")) {
|
|
|
|
if (get_token(1, 1) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
if (!(codec->drv = strdup(token[0]))) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"Can't strdup -> 'driver': %s\n", strerror(errno));
|
2010-05-04 01:34:38 +02:00
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
} else if (!strcmp(token[0], "dll")) {
|
|
|
|
if (get_token(1, 1) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
if (!(codec->dll = strdup(token[0]))) {
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"Can't strdup -> 'dll': %s", strerror(errno));
|
2010-05-04 01:34:38 +02:00
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
} else if (!strcmp(token[0], "guid")) {
|
|
|
|
if (get_token(11, 11) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
codec->guid.f1=strtoul(token[0],&endptr,0);
|
|
|
|
if ((*endptr != ',' || *(endptr + 1) != '\0') &&
|
|
|
|
*endptr != '\0')
|
|
|
|
goto err_out_parse_error;
|
|
|
|
codec->guid.f2=strtoul(token[1],&endptr,0);
|
|
|
|
if ((*endptr != ',' || *(endptr + 1) != '\0') &&
|
|
|
|
*endptr != '\0')
|
|
|
|
goto err_out_parse_error;
|
|
|
|
codec->guid.f3=strtoul(token[2],&endptr,0);
|
|
|
|
if ((*endptr != ',' || *(endptr + 1) != '\0') &&
|
|
|
|
*endptr != '\0')
|
|
|
|
goto err_out_parse_error;
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
codec->guid.f4[i]=strtoul(token[i + 3],&endptr,0);
|
|
|
|
if ((*endptr != ',' || *(endptr + 1) != '\0') &&
|
|
|
|
*endptr != '\0')
|
|
|
|
goto err_out_parse_error;
|
|
|
|
}
|
|
|
|
} else if (!strcmp(token[0], "out")) {
|
|
|
|
if (get_token(1, 2) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
if (!add_to_inout(token[0], token[1], codec->outfmt,
|
|
|
|
codec->outflags))
|
|
|
|
goto err_out_print_linenum;
|
|
|
|
} else if (!strcmp(token[0], "in")) {
|
|
|
|
if (get_token(1, 2) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
if (!add_to_inout(token[0], token[1], codec->infmt,
|
|
|
|
codec->inflags))
|
|
|
|
goto err_out_print_linenum;
|
|
|
|
} else if (!strcmp(token[0], "flags")) {
|
|
|
|
if (get_token(1, 1) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
if (!strcmp(token[0], "seekable"))
|
|
|
|
codec->flags |= CODECS_FLAG_SEEKABLE;
|
2010-05-07 21:02:47 +02:00
|
|
|
else if (!strcmp(token[0], "align16"))
|
2010-05-04 01:34:38 +02:00
|
|
|
codec->flags |= CODECS_FLAG_ALIGN16;
|
|
|
|
else
|
|
|
|
goto err_out_parse_error;
|
|
|
|
} else if (!strcmp(token[0], "status")) {
|
|
|
|
if (get_token(1, 1) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
if (!strcasecmp(token[0], "working"))
|
|
|
|
codec->status = CODECS_STATUS_WORKING;
|
|
|
|
else if (!strcasecmp(token[0], "crashing"))
|
|
|
|
codec->status = CODECS_STATUS_NOT_WORKING;
|
|
|
|
else if (!strcasecmp(token[0], "untested"))
|
|
|
|
codec->status = CODECS_STATUS_UNTESTED;
|
|
|
|
else if (!strcasecmp(token[0], "buggy"))
|
|
|
|
codec->status = CODECS_STATUS_PROBLEMS;
|
|
|
|
else
|
|
|
|
goto err_out_parse_error;
|
|
|
|
} else if (!strcmp(token[0], "cpuflags")) {
|
|
|
|
if (get_token(1, 1) < 0)
|
|
|
|
goto err_out_parse_error;
|
|
|
|
if (!(codec->cpuflags = get_cpuflags(token[0])))
|
|
|
|
goto err_out_parse_error;
|
|
|
|
} else
|
|
|
|
goto err_out_parse_error;
|
|
|
|
}
|
|
|
|
if (!validate_codec(codec, codec_type))
|
|
|
|
goto err_out_not_valid;
|
2012-07-02 01:35:57 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG, MSGL_V, "%d audio & %d video codecs\n", nr_acodecs,
|
|
|
|
nr_vcodecs);
|
2010-05-04 01:34:38 +02:00
|
|
|
if(video_codecs) video_codecs[nr_vcodecs].name = NULL;
|
|
|
|
if(audio_codecs) audio_codecs[nr_acodecs].name = NULL;
|
2001-04-07 01:20:46 +02:00
|
|
|
out:
|
2012-07-02 01:35:57 +02:00
|
|
|
talloc_free(tmpmem);
|
2010-05-04 01:34:38 +02:00
|
|
|
line=NULL;
|
|
|
|
return 1;
|
2001-12-27 19:38:10 +01:00
|
|
|
|
2001-04-10 22:09:23 +02:00
|
|
|
err_out_parse_error:
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"parse error");
|
2001-04-11 22:55:14 +02:00
|
|
|
err_out_print_linenum:
|
2010-05-04 01:34:38 +02:00
|
|
|
PRINT_LINENUM;
|
2001-04-07 01:20:46 +02:00
|
|
|
err_out:
|
2010-05-04 01:34:38 +02:00
|
|
|
codecs_uninit_free();
|
2001-12-27 19:38:10 +01:00
|
|
|
|
2012-07-02 01:35:57 +02:00
|
|
|
talloc_free(tmpmem);
|
2010-05-04 01:34:38 +02:00
|
|
|
line=NULL;
|
|
|
|
line_num = 0;
|
|
|
|
return 0;
|
2001-04-10 22:09:23 +02:00
|
|
|
err_out_not_valid:
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"Codec is not defined correctly.");
|
2010-05-04 01:34:38 +02:00
|
|
|
goto err_out_print_linenum;
|
2002-05-27 00:39:38 +02:00
|
|
|
err_out_release_num:
|
2010-05-07 21:02:47 +02:00
|
|
|
mp_tmsg(MSGT_CODECCFG,MSGL_ERR,"This codecs.conf is too old and incompatible with this MPlayer release!");
|
2010-05-04 01:34:38 +02:00
|
|
|
goto err_out_print_linenum;
|
2001-04-07 01:20:46 +02:00
|
|
|
}
|
|
|
|
|
2004-10-30 12:09:52 +02:00
|
|
|
static void codecs_free(codecs_t* codecs,int count) {
|
2010-05-04 01:34:38 +02:00
|
|
|
int i;
|
|
|
|
for ( i = 0; i < count; i++)
|
|
|
|
if ( codecs[i].name ) {
|
2010-11-07 13:47:40 +01:00
|
|
|
free(codecs[i].name);
|
|
|
|
free(codecs[i].info);
|
|
|
|
free(codecs[i].comment);
|
|
|
|
free(codecs[i].dll);
|
|
|
|
free(codecs[i].drv);
|
2010-05-04 01:34:38 +02:00
|
|
|
}
|
2010-11-07 13:47:40 +01:00
|
|
|
free(codecs);
|
2004-10-30 12:09:52 +02:00
|
|
|
}
|
|
|
|
|
2006-02-09 15:08:03 +01:00
|
|
|
void codecs_uninit_free(void) {
|
2010-05-04 01:34:38 +02:00
|
|
|
if (video_codecs)
|
|
|
|
codecs_free(video_codecs,nr_vcodecs);
|
|
|
|
video_codecs=NULL;
|
|
|
|
if (audio_codecs)
|
|
|
|
codecs_free(audio_codecs,nr_acodecs);
|
|
|
|
audio_codecs=NULL;
|
2004-10-30 12:09:52 +02:00
|
|
|
}
|
|
|
|
|
2001-04-11 01:18:01 +02:00
|
|
|
codecs_t *find_audio_codec(unsigned int fourcc, unsigned int *fourccmap,
|
2010-05-04 01:34:38 +02:00
|
|
|
codecs_t *start, int force)
|
2001-04-10 22:09:23 +02:00
|
|
|
{
|
2010-05-04 01:34:38 +02:00
|
|
|
return find_codec(fourcc, fourccmap, start, 1, force);
|
2001-04-10 22:09:23 +02:00
|
|
|
}
|
|
|
|
|
2001-04-11 01:18:01 +02:00
|
|
|
codecs_t *find_video_codec(unsigned int fourcc, unsigned int *fourccmap,
|
2010-05-04 01:34:38 +02:00
|
|
|
codecs_t *start, int force)
|
2001-04-10 22:09:23 +02:00
|
|
|
{
|
2010-05-04 01:34:38 +02:00
|
|
|
return find_codec(fourcc, fourccmap, start, 0, force);
|
2001-04-10 22:09:23 +02:00
|
|
|
}
|
|
|
|
|
2001-04-11 01:18:01 +02:00
|
|
|
codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap,
|
2010-05-04 01:34:38 +02:00
|
|
|
codecs_t *start, int audioflag, int force)
|
2001-04-10 22:09:23 +02:00
|
|
|
{
|
2010-05-04 01:34:38 +02:00
|
|
|
int i, j;
|
|
|
|
codecs_t *c;
|
2001-04-10 22:09:23 +02:00
|
|
|
|
2001-04-25 00:55:52 +02:00
|
|
|
#if 0
|
2010-05-04 01:34:38 +02:00
|
|
|
if (start) {
|
|
|
|
for (/* NOTHING */; start->name; start++) {
|
|
|
|
for (j = 0; j < CODECS_MAX_FOURCC; j++) {
|
|
|
|
if (start->fourcc[j] == fourcc) {
|
|
|
|
if (fourccmap)
|
|
|
|
*fourccmap = start->fourccmap[j];
|
|
|
|
return start;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else
|
2001-04-25 00:55:52 +02:00
|
|
|
#endif
|
2010-05-04 01:34:38 +02:00
|
|
|
{
|
|
|
|
if (audioflag) {
|
|
|
|
i = nr_acodecs;
|
|
|
|
c = audio_codecs;
|
|
|
|
} else {
|
|
|
|
i = nr_vcodecs;
|
|
|
|
c = video_codecs;
|
|
|
|
}
|
|
|
|
if(!i) return NULL;
|
|
|
|
for (/* NOTHING */; i--; c++) {
|
|
|
|
if(start && c<=start) continue;
|
|
|
|
for (j = 0; j < CODECS_MAX_FOURCC; j++) {
|
|
|
|
// FIXME: do NOT hardwire 'null' name here:
|
|
|
|
if (c->fourcc[j]==fourcc || !strcmp(c->drv,"null")) {
|
|
|
|
if (fourccmap)
|
|
|
|
*fourccmap = c->fourccmap[j];
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (force) return c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
2001-04-07 23:27:57 +02:00
|
|
|
}
|
|
|
|
|
2008-01-12 15:05:46 +01:00
|
|
|
void stringset_init(stringset_t *set) {
|
2010-05-04 01:34:38 +02:00
|
|
|
*set = calloc(1, sizeof(char *));
|
2002-09-26 03:28:32 +02:00
|
|
|
}
|
|
|
|
|
2008-01-12 15:05:46 +01:00
|
|
|
void stringset_free(stringset_t *set) {
|
2010-05-04 01:34:38 +02:00
|
|
|
int count = 0;
|
|
|
|
while ((*set)[count]) free((*set)[count++]);
|
|
|
|
free(*set);
|
|
|
|
*set = NULL;
|
2008-01-12 15:05:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void stringset_add(stringset_t *set, const char *str) {
|
2010-05-04 01:34:38 +02:00
|
|
|
int count = 0;
|
|
|
|
while ((*set)[count]) count++;
|
|
|
|
count++;
|
|
|
|
*set = realloc(*set, sizeof(char *) * (count + 1));
|
|
|
|
(*set)[count - 1] = strdup(str);
|
|
|
|
(*set)[count] = NULL;
|
2008-01-12 15:05:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int stringset_test(stringset_t *set, const char *str) {
|
2010-05-04 01:34:38 +02:00
|
|
|
stringset_t s;
|
|
|
|
for (s = *set; *s; s++)
|
|
|
|
if (strcmp(*s, str) == 0)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
2002-03-25 04:02:57 +01:00
|
|
|
}
|
|
|
|
|
2001-09-27 14:59:35 +02:00
|
|
|
void list_codecs(int audioflag){
|
2010-05-04 01:34:38 +02:00
|
|
|
int i;
|
|
|
|
codecs_t *c;
|
|
|
|
|
|
|
|
if (audioflag) {
|
|
|
|
i = nr_acodecs;
|
|
|
|
c = audio_codecs;
|
|
|
|
mp_msg(MSGT_CODECCFG,MSGL_INFO,"ac: afm: status: info: [lib/dll]\n");
|
|
|
|
} else {
|
|
|
|
i = nr_vcodecs;
|
|
|
|
c = video_codecs;
|
|
|
|
mp_msg(MSGT_CODECCFG,MSGL_INFO,"vc: vfm: status: info: [lib/dll]\n");
|
|
|
|
}
|
|
|
|
if(!i) return;
|
|
|
|
for (/* NOTHING */; i--; c++) {
|
|
|
|
char* s="unknown ";
|
|
|
|
switch(c->status){
|
|
|
|
case CODECS_STATUS_WORKING: s="working ";break;
|
|
|
|
case CODECS_STATUS_PROBLEMS: s="problems";break;
|
|
|
|
case CODECS_STATUS_NOT_WORKING: s="crashing";break;
|
|
|
|
case CODECS_STATUS_UNTESTED: s="untested";break;
|
|
|
|
}
|
|
|
|
if(c->dll)
|
|
|
|
mp_msg(MSGT_CODECCFG,MSGL_INFO,"%-11s %-9s %s %s [%s]\n",c->name,c->drv,s,c->info,c->dll);
|
|
|
|
else
|
|
|
|
mp_msg(MSGT_CODECCFG,MSGL_INFO,"%-11s %-9s %s %s\n",c->name,c->drv,s,c->info);
|
|
|
|
}
|
2001-09-27 14:59:35 +02:00
|
|
|
}
|