diff mbox

[FFmpeg-devel,08/14] avcodec: add AV_HWACCEL_FLAG_ALLOW_SOFTWARE

Message ID 20171215070355.34549-1-wbsecg1@gmail.com
State New
Headers show

Commit Message

Wang Bin Dec. 15, 2017, 7:03 a.m. UTC
From: wang-bin <wbsecg1@gmail.com>

a hw decoder may have software or hybrid implementation, for example videotoolbox hevc.
the performance may be better than ffmpeg sw decoder.
---
 libavcodec/avcodec.h | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Jun Zhao Dec. 15, 2017, 7:18 a.m. UTC | #1
On 2017/12/15 15:03, wbsecg1@gmail.com wrote:
> From: wang-bin <wbsecg1@gmail.com>
>
> a hw decoder may have software or hybrid implementation, for example videotoolbox hevc.
> the performance may be better than ffmpeg sw decoder.
It's confused, and I think wm4 give a other patch for this case. you can
refer to
https://patchwork.ffmpeg.org/patch/6773/

> ---
>  libavcodec/avcodec.h | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
> index ce089b7c4a..6d1f5ee532 100644
> --- a/libavcodec/avcodec.h
> +++ b/libavcodec/avcodec.h
> @@ -3725,6 +3725,10 @@ typedef struct AVHWAccel {
>   */
>  #define AV_HWACCEL_FLAG_ALLOW_PROFILE_MISMATCH (1 << 2)
>  
> +/**
> + * Hardware acceleration can use it's software implementation.
> + */
> +#define AV_HWACCEL_FLAG_ALLOW_SOFTWARE (1 << 3)
>  /**
>   * @}
>   */
wm4 Dec. 15, 2017, 6:48 p.m. UTC | #2
On Fri, 15 Dec 2017 15:18:13 +0800
Jun Zhao <mypopydev@gmail.com> wrote:

> On 2017/12/15 15:03, wbsecg1@gmail.com wrote:
> > From: wang-bin <wbsecg1@gmail.com>
> >
> > a hw decoder may have software or hybrid implementation, for example videotoolbox hevc.
> > the performance may be better than ffmpeg sw decoder.  
> It's confused, and I think wm4 give a other patch for this case. you can
> refer to
> https://patchwork.ffmpeg.org/patch/6773/

My patch was just static metadata, so this is different.
diff mbox

Patch

diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index ce089b7c4a..6d1f5ee532 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -3725,6 +3725,10 @@  typedef struct AVHWAccel {
  */
 #define AV_HWACCEL_FLAG_ALLOW_PROFILE_MISMATCH (1 << 2)
 
+/**
+ * Hardware acceleration can use it's software implementation.
+ */
+#define AV_HWACCEL_FLAG_ALLOW_SOFTWARE (1 << 3)
 /**
  * @}
  */