diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-07-29 20:48:47 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-07-29 23:46:51 +0200 |
commit | 78b4bfdb84b7c909f7b97c87de17f59e36c50559 (patch) | |
tree | 1210fa274027f9c58820ec1e784b3296f19bc500 /libavcodec | |
parent | 1f57d60129b0e297cd197c6031c4439b30a6b503 (diff) | |
download | ffmpeg-78b4bfdb84b7c909f7b97c87de17f59e36c50559.tar.gz |
Replace remaining obsolete PIX_FMT names with AV_PIX_FMT equivalents
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/escape130.c | 2 | ||||
-rw-r--r-- | libavcodec/g2meet.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/escape130.c b/libavcodec/escape130.c index 3e3f7e1565..abba965096 100644 --- a/libavcodec/escape130.c +++ b/libavcodec/escape130.c @@ -115,7 +115,7 @@ const uint8_t chroma_vals[] = { static av_cold int escape130_decode_init(AVCodecContext *avctx) { Escape130Context *s = avctx->priv_data; - avctx->pix_fmt = PIX_FMT_YUV420P; + avctx->pix_fmt = AV_PIX_FMT_YUV420P; if ((avctx->width & 1) || (avctx->height & 1)) { av_log(avctx, AV_LOG_ERROR, diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c index a617df61ff..199e8af080 100644 --- a/libavcodec/g2meet.c +++ b/libavcodec/g2meet.c @@ -835,7 +835,7 @@ static av_cold int g2m_decode_init(AVCodecContext *avctx) return AVERROR(ENOMEM); } - avctx->pix_fmt = PIX_FMT_RGB24; + avctx->pix_fmt = AV_PIX_FMT_RGB24; return 0; } |