1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-11 04:01:31 +00:00

demux_rawvideo: allow setting video codec

Can be used to decode some obscure image formats and similar stuff.
This commit is contained in:
wm4 2013-02-24 16:46:35 +01:00
parent 10ed11eefa
commit edddf81232
2 changed files with 6 additions and 0 deletions

View File

@ -1684,6 +1684,8 @@
:mp-format=<value>: colorspace by internal video format :mp-format=<value>: colorspace by internal video format
Use ``--rawvideo=mp-format=help`` Use ``--rawvideo=mp-format=help``
for a list of possible formats. for a list of possible formats.
:codec: set the video codec (instead of selecting
the rawvideo codec)
:size=<value>: frame size in Bytes :size=<value>: frame size in Bytes
*EXAMPLE*: *EXAMPLE*:

View File

@ -34,6 +34,7 @@
static int format = MP_FOURCC_I420; static int format = MP_FOURCC_I420;
static int mp_format; static int mp_format;
static char *codec;
static int width = 0; static int width = 0;
static int height = 0; static int height = 0;
static float fps = 25; static float fps = 25;
@ -46,6 +47,7 @@ const m_option_t demux_rawvideo_opts[] = {
// format: // format:
{ "format", &format, CONF_TYPE_FOURCC, 0, 0 , 0, NULL }, { "format", &format, CONF_TYPE_FOURCC, 0, 0 , 0, NULL },
{ "mp-format", &mp_format, CONF_TYPE_IMGFMT, 0, 0 , 0, NULL }, { "mp-format", &mp_format, CONF_TYPE_IMGFMT, 0, 0 , 0, NULL },
{ "codec", &codec, CONF_TYPE_STRING, 0, 0 , 0, NULL },
// misc: // misc:
{ "fps", &fps, CONF_TYPE_FLOAT,CONF_RANGE,0.001,1000, NULL }, { "fps", &fps, CONF_TYPE_FLOAT,CONF_RANGE,0.001,1000, NULL },
{ "size", &imgsize, CONF_TYPE_INT, CONF_RANGE, 1 , 8192*8192*4, NULL }, { "size", &imgsize, CONF_TYPE_INT, CONF_RANGE, 1 , 8192*8192*4, NULL },
@ -74,6 +76,8 @@ static demuxer_t* demux_rawvideo_open(demuxer_t* demuxer) {
desc.bpp[p] + 7) / 8; desc.bpp[p] + 7) / 8;
} }
} }
} else if (codec && codec[0]) {
decoder = talloc_strdup(demuxer, codec);
} }
if (!imgsize) { if (!imgsize) {