summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Jägenstedt <philipj@opera.com>2010-05-23 09:28:13 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-06-01 11:19:46 +0200
commit4c552be9d913d15003821abe375982fb9aedbb09 (patch)
treef35b774d6d1f022a67848f09af1f962739cf87ad
parentb43afeffd79f7f2b4655b539c65b8b6af9d982e3 (diff)
vp8dec: s/IMG_FMT_I420/VPX_IMG_FMT_I420/
This corresponds to upstream libvpx commit 6cd4a10e167203d1deb79abf60ee72599e97891b
-rw-r--r--ext/vp8/gstvp8enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/vp8/gstvp8enc.c b/ext/vp8/gstvp8enc.c
index 99476202f..8f73444a1 100644
--- a/ext/vp8/gstvp8enc.c
+++ b/ext/vp8/gstvp8enc.c
@@ -606,7 +606,7 @@ gst_vp8_enc_buffer_to_image (GstVP8Enc * enc, GstBuffer * buffer)
GstBaseVideoEncoder *encoder = (GstBaseVideoEncoder *) enc;
guint8 *data = GST_BUFFER_DATA (buffer);
- image->fmt = IMG_FMT_I420;
+ image->fmt = VPX_IMG_FMT_I420;
image->bps = 12;
image->x_chroma_shift = image->y_chroma_shift = 1;
image->img_data = data;