diff options
author | Sebastien Zwickert <dilaroga@free.fr> | 2011-11-09 21:08:09 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-09 21:19:39 +0100 |
commit | 701e5348d44f22e3bcbb0987cc08f9b80f6af832 (patch) | |
tree | 6f3d0e3996c74efa2ee3db20a5893fc43dbdcf86 /libavcodec/vda.c | |
parent | e7062a1e9fae9c4846a6989dee8b0e78454b69ae (diff) | |
download | ffmpeg-701e5348d44f22e3bcbb0987cc08f9b80f6af832.tar.gz |
vda: set destination image buffer attributes.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vda.c')
-rw-r--r-- | libavcodec/vda.c | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/libavcodec/vda.c b/libavcodec/vda.c index 5fe8a48fa4..61cb81e0ff 100644 --- a/libavcodec/vda.c +++ b/libavcodec/vda.c @@ -114,7 +114,7 @@ static void vda_decoder_callback (void *vda_hw_ctx, if (NULL == image_buffer) return; - if (kCVPixelFormatType_422YpCbCr8 != CVPixelBufferGetPixelFormatType(image_buffer)) + if (vda_ctx->cv_pix_fmt_type != CVPixelBufferGetPixelFormatType(image_buffer)) return; new_frame = (vda_frame *)av_mallocz(sizeof(vda_frame)); @@ -164,6 +164,9 @@ int ff_vda_create_decoder(struct vda_context *vda_ctx, CFNumberRef format; CFDataRef avc_data; CFMutableDictionaryRef config_info; + CFMutableDictionaryRef buffer_attributes; + CFMutableDictionaryRef io_surface_properties; + CFNumberRef cv_pix_fmt; if (av_lockmgr_register(vda_lock_operation)) return -1; @@ -185,8 +188,26 @@ int ff_vda_create_decoder(struct vda_context *vda_ctx, CFDictionarySetValue(config_info, kVDADecoderConfiguration_SourceFormat, format); CFDictionarySetValue(config_info, kVDADecoderConfiguration_avcCData, avc_data); + buffer_attributes = (CFDictionaryCreateMutable(kCFAllocatorDefault, + 2, + &kCFTypeDictionaryKeyCallBacks, + &kCFTypeDictionaryValueCallBacks)); + io_surface_properties = (CFDictionaryCreateMutable(kCFAllocatorDefault, + 0, + &kCFTypeDictionaryKeyCallBacks, + &kCFTypeDictionaryValueCallBacks)); + cv_pix_fmt = CFNumberCreate(kCFAllocatorDefault, + kCFNumberSInt32Type, + &vda_ctx->cv_pix_fmt_type); + CFDictionarySetValue(buffer_attributes, + kCVPixelBufferPixelFormatTypeKey, + cv_pix_fmt); + CFDictionarySetValue(buffer_attributes, + kCVPixelBufferIOSurfacePropertiesKey, + io_surface_properties); + status = VDADecoderCreate( config_info, - NULL, + buffer_attributes, (VDADecoderOutputCallback *)vda_decoder_callback, (void *)vda_ctx, &vda_ctx->decoder ); @@ -196,6 +217,9 @@ int ff_vda_create_decoder(struct vda_context *vda_ctx, CFRelease(format); CFRelease(avc_data); CFRelease(config_info); + CFRelease(io_surface_properties); + CFRelease(cv_pix_fmt); + CFRelease(buffer_attributes); if (kVDADecoderNoErr != status) return status; |