Commit 877716a7 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '6a927d7a'

* commit '6a927d7a':
  output example: use a macro instead of a static variable

Conflicts:
	doc/examples/muxing.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 5a55d5e4 6a927d7a
...@@ -49,7 +49,7 @@ static int audio_is_eof, video_is_eof; ...@@ -49,7 +49,7 @@ static int audio_is_eof, video_is_eof;
#define STREAM_FRAME_RATE 25 /* 25 images/s */ #define STREAM_FRAME_RATE 25 /* 25 images/s */
#define STREAM_PIX_FMT AV_PIX_FMT_YUV420P /* default pix_fmt */ #define STREAM_PIX_FMT AV_PIX_FMT_YUV420P /* default pix_fmt */
static int sws_flags = SWS_BICUBIC; #define SCALE_FLAGS SWS_BICUBIC
// a wrapper around a single output AVStream // a wrapper around a single output AVStream
typedef struct OutputStream { typedef struct OutputStream {
...@@ -423,7 +423,7 @@ static void write_video_frame(AVFormatContext *oc, OutputStream *ost, int flush) ...@@ -423,7 +423,7 @@ static void write_video_frame(AVFormatContext *oc, OutputStream *ost, int flush)
if (!sws_ctx) { if (!sws_ctx) {
sws_ctx = sws_getContext(c->width, c->height, AV_PIX_FMT_YUV420P, sws_ctx = sws_getContext(c->width, c->height, AV_PIX_FMT_YUV420P,
c->width, c->height, c->pix_fmt, c->width, c->height, c->pix_fmt,
sws_flags, NULL, NULL, NULL); SCALE_FLAGS, NULL, NULL, NULL);
if (!sws_ctx) { if (!sws_ctx) {
fprintf(stderr, fprintf(stderr,
"Could not initialize the conversion context\n"); "Could not initialize the conversion context\n");
......
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