Commit a2eef3e9 authored by Michael Niedermayer's avatar Michael Niedermayer

LAVF API: remove AVOutputFormat.set_parameters() the field is unused.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8de45adb
...@@ -285,10 +285,9 @@ typedef struct AVOutputFormat { ...@@ -285,10 +285,9 @@ typedef struct AVOutputFormat {
* AVFMT_NODIMENSIONS, AVFMT_NOSTREAMS * AVFMT_NODIMENSIONS, AVFMT_NOSTREAMS
*/ */
int flags; int flags;
/**
* Currently only used to set pixel format if not YUV420P. void *dummy;
*/
int (*set_parameters)(struct AVFormatContext *, AVFormatParameters *);
int (*interleave_packet)(struct AVFormatContext *, AVPacket *out, int (*interleave_packet)(struct AVFormatContext *, AVPacket *out,
AVPacket *in, int flush); AVPacket *in, int flush);
......
...@@ -2716,11 +2716,6 @@ int av_set_parameters(AVFormatContext *s, AVFormatParameters *ap) ...@@ -2716,11 +2716,6 @@ int av_set_parameters(AVFormatContext *s, AVFormatParameters *ap)
} else } else
s->priv_data = NULL; s->priv_data = NULL;
if (s->oformat->set_parameters) {
ret = s->oformat->set_parameters(s, ap);
if (ret < 0)
return ret;
}
return 0; return 0;
} }
......
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