[FFmpeg-cvslog] vda: unlock the pixel buffer base address.

2015-08-20 Thread Sebastien Zwickert
ffmpeg | branch: release/2.4 | Sebastien Zwickert dilar...@gmail.com | Sat 
Jun 20 13:19:29 2015 +0200| [d50d11c56cd409ce4cdf38ea3298c8e2b220aec9] | 
committer: Michael Niedermayer

vda: unlock the pixel buffer base address.

The pixel buffer base address is never unlocked this causes
a bug with some pixel format types that are produced natively
by the hardware decoder: the first buffer was always used.
Unlock the pixel buffer base address fixes the issue.
(cherry picked from commit c06fdacc3dc706e70d953917fea845532d3703ca)

Signed-off-by: Michael Niedermayer michae...@gmx.at

 http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d50d11c56cd409ce4cdf38ea3298c8e2b220aec9
---

 ffmpeg_vda.c |2 ++
 1 file changed, 2 insertions(+)

diff --git a/ffmpeg_vda.c b/ffmpeg_vda.c
index b9f0975..fded39e 100644
--- a/ffmpeg_vda.c
+++ b/ffmpeg_vda.c
@@ -77,6 +77,8 @@ static int vda_retrieve_data(AVCodecContext *s, AVFrame 
*frame)
   frame-width, frame-height);
 
 ret = av_frame_copy_props(vda-tmp_frame, frame);
+CVPixelBufferUnlockBaseAddress(pixbuf, kCVPixelBufferLock_ReadOnly);
+
 if (ret  0)
 return ret;
 

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog


[FFmpeg-cvslog] vda: unlock the pixel buffer base address.

2015-07-27 Thread Sebastien Zwickert
ffmpeg | branch: release/2.5 | Sebastien Zwickert dilar...@gmail.com | Sat 
Jun 20 13:19:29 2015 +0200| [8f067955332dc185003f30387c5deb41fe954786] | 
committer: Michael Niedermayer

vda: unlock the pixel buffer base address.

The pixel buffer base address is never unlocked this causes
a bug with some pixel format types that are produced natively
by the hardware decoder: the first buffer was always used.
Unlock the pixel buffer base address fixes the issue.
(cherry picked from commit c06fdacc3dc706e70d953917fea845532d3703ca)

Signed-off-by: Michael Niedermayer michae...@gmx.at

 http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8f067955332dc185003f30387c5deb41fe954786
---

 ffmpeg_vda.c |2 ++
 1 file changed, 2 insertions(+)

diff --git a/ffmpeg_vda.c b/ffmpeg_vda.c
index b9f0975..fded39e 100644
--- a/ffmpeg_vda.c
+++ b/ffmpeg_vda.c
@@ -77,6 +77,8 @@ static int vda_retrieve_data(AVCodecContext *s, AVFrame 
*frame)
   frame-width, frame-height);
 
 ret = av_frame_copy_props(vda-tmp_frame, frame);
+CVPixelBufferUnlockBaseAddress(pixbuf, kCVPixelBufferLock_ReadOnly);
+
 if (ret  0)
 return ret;
 

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog


[FFmpeg-cvslog] vda: unlock the pixel buffer base address.

2015-07-20 Thread Sebastien Zwickert
ffmpeg | branch: release/2.6 | Sebastien Zwickert dilar...@gmail.com | Sat 
Jun 20 13:19:29 2015 +0200| [be6a569e3ab8e36a63136ce3fe854764efe99e2a] | 
committer: Michael Niedermayer

vda: unlock the pixel buffer base address.

The pixel buffer base address is never unlocked this causes
a bug with some pixel format types that are produced natively
by the hardware decoder: the first buffer was always used.
Unlock the pixel buffer base address fixes the issue.
(cherry picked from commit c06fdacc3dc706e70d953917fea845532d3703ca)

Signed-off-by: Michael Niedermayer michae...@gmx.at

 http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=be6a569e3ab8e36a63136ce3fe854764efe99e2a
---

 ffmpeg_vda.c |2 ++
 1 file changed, 2 insertions(+)

diff --git a/ffmpeg_vda.c b/ffmpeg_vda.c
index b9f0975..fded39e 100644
--- a/ffmpeg_vda.c
+++ b/ffmpeg_vda.c
@@ -77,6 +77,8 @@ static int vda_retrieve_data(AVCodecContext *s, AVFrame 
*frame)
   frame-width, frame-height);
 
 ret = av_frame_copy_props(vda-tmp_frame, frame);
+CVPixelBufferUnlockBaseAddress(pixbuf, kCVPixelBufferLock_ReadOnly);
+
 if (ret  0)
 return ret;
 

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog


[FFmpeg-cvslog] vda: unlock the pixel buffer base address.

2015-07-18 Thread Sebastien Zwickert
ffmpeg | branch: release/2.7 | Sebastien Zwickert dilar...@gmail.com | Sat 
Jun 20 13:19:29 2015 +0200| [ce3a8c983f6e31ab685db1ab245d8a00a0d63b68] | 
committer: Michael Niedermayer

vda: unlock the pixel buffer base address.

The pixel buffer base address is never unlocked this causes
a bug with some pixel format types that are produced natively
by the hardware decoder: the first buffer was always used.
Unlock the pixel buffer base address fixes the issue.
(cherry picked from commit c06fdacc3dc706e70d953917fea845532d3703ca)

Signed-off-by: Michael Niedermayer michae...@gmx.at

 http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ce3a8c983f6e31ab685db1ab245d8a00a0d63b68
---

 ffmpeg_vda.c |2 ++
 1 file changed, 2 insertions(+)

diff --git a/ffmpeg_vda.c b/ffmpeg_vda.c
index d15648d..6fe4ed4 100644
--- a/ffmpeg_vda.c
+++ b/ffmpeg_vda.c
@@ -77,6 +77,8 @@ static int vda_retrieve_data(AVCodecContext *s, AVFrame 
*frame)
   frame-width, frame-height);
 
 ret = av_frame_copy_props(vda-tmp_frame, frame);
+CVPixelBufferUnlockBaseAddress(pixbuf, kCVPixelBufferLock_ReadOnly);
+
 if (ret  0)
 return ret;
 

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog


[FFmpeg-cvslog] vda: unlock the pixel buffer base address.

2015-06-23 Thread Sebastien Zwickert
ffmpeg | branch: master | Sebastien Zwickert dilar...@gmail.com | Sat Jun 20 
13:19:29 2015 +0200| [c06fdacc3dc706e70d953917fea845532d3703ca] | committer: 
Clément Bœsch

vda: unlock the pixel buffer base address.

The pixel buffer base address is never unlocked this causes
a bug with some pixel format types that are produced natively
by the hardware decoder: the first buffer was always used.
Unlock the pixel buffer base address fixes the issue.

 http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c06fdacc3dc706e70d953917fea845532d3703ca
---

 ffmpeg_vda.c |2 ++
 1 file changed, 2 insertions(+)

diff --git a/ffmpeg_vda.c b/ffmpeg_vda.c
index d15648d..6fe4ed4 100644
--- a/ffmpeg_vda.c
+++ b/ffmpeg_vda.c
@@ -77,6 +77,8 @@ static int vda_retrieve_data(AVCodecContext *s, AVFrame 
*frame)
   frame-width, frame-height);
 
 ret = av_frame_copy_props(vda-tmp_frame, frame);
+CVPixelBufferUnlockBaseAddress(pixbuf, kCVPixelBufferLock_ReadOnly);
+
 if (ret  0)
 return ret;
 

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog