---
 libavformat/img2.c |   19 ++++++++++++++++---
 1 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/libavformat/img2.c b/libavformat/img2.c
index db65c3f..3854c1a 100644
--- a/libavformat/img2.c
+++ b/libavformat/img2.c
@@ -25,6 +25,7 @@
 #include "libavutil/log.h"
 #include "libavutil/opt.h"
 #include "libavutil/pixdesc.h"
+#include "libavutil/parseutils.h"
 #include "avformat.h"
 #include "avio_internal.h"
 #include "internal.h"
@@ -38,6 +39,7 @@ typedef struct {
     int is_pipe;
     char path[1024];
     char *pixel_format;     /**< Set by a private option. */
+    char *video_size;       /**< Set by a private option. */
 } VideoData;
 
 typedef struct {
@@ -203,6 +205,7 @@ static int read_header(AVFormatContext *s1, 
AVFormatParameters *ap)
 {
     VideoData *s = s1->priv_data;
     int first_index, last_index, ret = 0;
+    int width = 0, height = 0;
     AVStream *st;
     enum PixelFormat pix_fmt = PIX_FMT_NONE;
 
@@ -219,9 +222,17 @@ static int read_header(AVFormatContext *s1, 
AVFormatParameters *ap)
         ret = AVERROR(EINVAL);
         goto fail;
     }
+    if (s->video_size && (ret = av_parse_video_size(&width, &height, 
s->video_size)) < 0) {
+        av_log(s, AV_LOG_ERROR, "Could not parse video size: %s.\n", 
s->video_size);
+        goto fail;
+    }
 #if FF_API_FORMAT_PARAMETERS
     if (ap->pix_fmt != PIX_FMT_NONE)
         pix_fmt = ap->pix_fmt;
+    if (ap->width > 0)
+        width = ap->width;
+    if (ap->height > 0)
+        height = ap->height;
 #endif
 
     av_strlcpy(s->path, s1->filename, sizeof(s->path));
@@ -242,9 +253,9 @@ static int read_header(AVFormatContext *s1, 
AVFormatParameters *ap)
         av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den);
     }
 
-    if(ap->width && ap->height){
-        st->codec->width = ap->width;
-        st->codec->height= ap->height;
+    if (width && height) {
+        st->codec->width  = width;
+        st->codec->height = height;
     }
 
     if (!s->is_pipe) {
@@ -275,6 +286,7 @@ static int read_header(AVFormatContext *s1, 
AVFormatParameters *ap)
 
 fail:
     av_freep(&s->pixel_format);
+    av_freep(&s->video_size);
     return ret;
 }
 
@@ -445,6 +457,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
 #define DEC AV_OPT_FLAG_DECODING_PARAM
 static const AVOption options[] = {
     { "pixel_format", "", OFFSET(pixel_format), FF_OPT_TYPE_STRING, {.str = 
NULL}, 0, 0, DEC },
+    { "video_size",   "", OFFSET(video_size),   FF_OPT_TYPE_STRING, {.str = 
NULL}, 0, 0, DEC },
     { NULL },
 };
 
-- 
1.7.5.1

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to