Commit 9bcd70aa authored by Nicolas George's avatar Nicolas George

bktr: use AV_OPT_TYPE_IMAGE_SIZE.

parent 16a44b41
...@@ -56,7 +56,6 @@ typedef struct { ...@@ -56,7 +56,6 @@ typedef struct {
int width, height; int width, height;
uint64_t per_frame; uint64_t per_frame;
int standard; int standard;
char *video_size; /**< String describing video size, set by a private option. */
char *framerate; /**< Set by a private option. */ char *framerate; /**< Set by a private option. */
} VideoData; } VideoData;
...@@ -246,15 +245,9 @@ static int grab_read_header(AVFormatContext *s1) ...@@ -246,15 +245,9 @@ static int grab_read_header(AVFormatContext *s1)
{ {
VideoData *s = s1->priv_data; VideoData *s = s1->priv_data;
AVStream *st; AVStream *st;
int width, height;
AVRational framerate; AVRational framerate;
int ret = 0; int ret = 0;
if ((ret = av_parse_video_size(&width, &height, s->video_size)) < 0) {
av_log(s1, AV_LOG_ERROR, "Could not parse video size '%s'.\n", s->video_size);
goto out;
}
if (!s->framerate) if (!s->framerate)
switch (s->standard) { switch (s->standard) {
case PAL: s->framerate = av_strdup("pal"); break; case PAL: s->framerate = av_strdup("pal"); break;
...@@ -277,20 +270,18 @@ static int grab_read_header(AVFormatContext *s1) ...@@ -277,20 +270,18 @@ static int grab_read_header(AVFormatContext *s1)
} }
avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in use */ avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in use */
s->width = width;
s->height = height;
s->per_frame = ((uint64_t)1000000 * framerate.den) / framerate.num; s->per_frame = ((uint64_t)1000000 * framerate.den) / framerate.num;
st->codec->codec_type = AVMEDIA_TYPE_VIDEO; st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
st->codec->pix_fmt = PIX_FMT_YUV420P; st->codec->pix_fmt = PIX_FMT_YUV420P;
st->codec->codec_id = CODEC_ID_RAWVIDEO; st->codec->codec_id = CODEC_ID_RAWVIDEO;
st->codec->width = width; st->codec->width = s->width;
st->codec->height = height; st->codec->height = s->height;
st->codec->time_base.den = framerate.num; st->codec->time_base.den = framerate.num;
st->codec->time_base.num = framerate.den; st->codec->time_base.num = framerate.den;
if (bktr_init(s1->filename, width, height, s->standard, if (bktr_init(s1->filename, s->width, s->height, s->standard,
&s->video_fd, &s->tuner_fd, -1, 0.0) < 0) { &s->video_fd, &s->tuner_fd, -1, 0.0) < 0) {
ret = AVERROR(EIO); ret = AVERROR(EIO);
goto out; goto out;
...@@ -331,7 +322,7 @@ static const AVOption options[] = { ...@@ -331,7 +322,7 @@ static const AVOption options[] = {
{ "PALN", "", 0, AV_OPT_TYPE_CONST, {.dbl = PALN}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" }, { "PALN", "", 0, AV_OPT_TYPE_CONST, {.dbl = PALN}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
{ "PALM", "", 0, AV_OPT_TYPE_CONST, {.dbl = PALM}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" }, { "PALM", "", 0, AV_OPT_TYPE_CONST, {.dbl = PALM}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
{ "NTSCJ", "", 0, AV_OPT_TYPE_CONST, {.dbl = NTSCJ}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" }, { "NTSCJ", "", 0, AV_OPT_TYPE_CONST, {.dbl = NTSCJ}, 0, 0, AV_OPT_FLAG_DECODING_PARAM, "standard" },
{ "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = "vga"}, 0, 0, DEC }, { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(width), AV_OPT_TYPE_IMAGE_SIZE, {.str = "vga"}, 0, 0, DEC },
{ "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC }, { "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
{ NULL }, { NULL },
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment