Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
b04d009b
Commit
b04d009b
authored
Mar 13, 2015
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qsv: rename to qsvdec
This is to avoid conflicts with the upcoming QSV encoding support.
parent
11881196
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
configure
configure
+2
-2
Makefile
libavcodec/Makefile
+3
-3
qsvdec.c
libavcodec/qsvdec.c
+1
-1
qsvdec.h
libavcodec/qsvdec.h
+3
-3
qsvdec_h264.c
libavcodec/qsvdec_h264.c
+1
-1
No files found.
configure
View file @
b04d009b
...
...
@@ -1597,7 +1597,7 @@ CONFIG_EXTRA="
nettle
pixblockdsp
qpeldsp
qsv
qsv
dec
rangecoder
riffdec
riffenc
...
...
@@ -1828,7 +1828,7 @@ h263p_encoder_select="h263_encoder"
h264_decoder_select
=
"cabac golomb h264chroma h264dsp h264pred h264qpel startcode videodsp"
h264_decoder_suggest
=
"error_resilience"
h264_qsv_decoder_deps
=
"libmfx"
h264_qsv_decoder_select
=
"h264_mp4toannexb_bsf h264_parser qsv h264_qsv_hwaccel"
h264_qsv_decoder_select
=
"h264_mp4toannexb_bsf h264_parser qsv
dec
h264_qsv_hwaccel"
hevc_decoder_select
=
"bswapdsp cabac golomb videodsp"
huffyuv_decoder_select
=
"bswapdsp huffyuvdsp"
huffyuv_encoder_select
=
"bswapdsp huffman huffyuvencdsp"
...
...
libavcodec/Makefile
View file @
b04d009b
...
...
@@ -80,7 +80,7 @@ OBJS-$(CONFIG_MPEGVIDEOENC) += mpegvideo_enc.o mpeg12data.o \
mpegvideoencdsp.o
OBJS-$(CONFIG_PIXBLOCKDSP)
+=
pixblockdsp.o
OBJS-$(CONFIG_QPELDSP)
+=
qpeldsp.o
OBJS-$(CONFIG_QSV
)
+=
qsv
.o
OBJS-$(CONFIG_QSV
DEC)
+=
qsvdec
.o
OBJS-$(CONFIG_RANGECODER)
+=
rangecoder.o
RDFT-OBJS-$(CONFIG_HARDCODED_TABLES)
+=
sin_tables.o
OBJS-$(CONFIG_RDFT)
+=
rdft.o
$(RDFT-OBJS-yes)
...
...
@@ -222,7 +222,7 @@ OBJS-$(CONFIG_H264_DECODER) += h264.o h264_cabac.o h264_cavlc.o \
h264_direct.o
h264_loopfilter.o
\
h264_mb.o
h264_picture.o
h264_ps.o
\
h264_refs.o
h264_sei.o
h264_slice.o
OBJS-$(CONFIG_H264_QSV_DECODER)
+=
qsv_h264.o
OBJS-$(CONFIG_H264_QSV_DECODER)
+=
qsv
dec
_h264.o
OBJS-$(CONFIG_HEVC_DECODER)
+=
hevc.o
hevc_mvs.o
hevc_ps.o
hevc_sei.o
\
hevc_cabac.o
hevc_refs.o
hevcpred.o
\
hevcdsp.o
hevc_filter.o
...
...
@@ -719,7 +719,7 @@ SKIPHEADERS += %_tablegen.h \
SKIPHEADERS-$(CONFIG_DXVA2)
+=
dxva2.h
dxva2_internal.h
SKIPHEADERS-$(CONFIG_LIBSCHROEDINGER)
+=
libschroedinger.h
SKIPHEADERS-$(CONFIG_MPEG_XVMC_DECODER)
+=
xvmc.h
SKIPHEADERS-$(CONFIG_QSV
)
+=
qsv.h
qsv_internal
.h
SKIPHEADERS-$(CONFIG_QSV
DEC)
+=
qsv.h
qsvdec
.h
SKIPHEADERS-$(CONFIG_VAAPI)
+=
vaapi_internal.h
SKIPHEADERS-$(CONFIG_VDA)
+=
vda.h
vda_internal.h
SKIPHEADERS-$(CONFIG_VDPAU)
+=
vdpau.h
vdpau_internal.h
...
...
libavcodec/qsv.c
→
libavcodec/qsv
dec
.c
View file @
b04d009b
...
...
@@ -34,7 +34,7 @@
#include "avcodec.h"
#include "internal.h"
#include "qsv
_internal
.h"
#include "qsv
dec
.h"
int
ff_qsv_error
(
int
mfx_err
)
{
...
...
libavcodec/qsv
_internal
.h
→
libavcodec/qsv
dec
.h
View file @
b04d009b
...
...
@@ -20,8 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef AVCODEC_QSV
_INTERNAL
_H
#define AVCODEC_QSV
_INTERNAL
_H
#ifndef AVCODEC_QSV
DEC
_H
#define AVCODEC_QSV
DEC
_H
#include <stdint.h>
#include <sys/types.h>
...
...
@@ -83,4 +83,4 @@ int ff_qsv_decode(AVCodecContext *s, QSVContext *q,
int
ff_qsv_close
(
QSVContext
*
q
);
#endif
/* AVCODEC_QSV
_INTERNAL
_H */
#endif
/* AVCODEC_QSV
DEC
_H */
libavcodec/qsv_h264.c
→
libavcodec/qsv
dec
_h264.c
View file @
b04d009b
...
...
@@ -33,7 +33,7 @@
#include "avcodec.h"
#include "internal.h"
#include "qsv
_internal
.h"
#include "qsv
dec
.h"
#include "qsv.h"
typedef
struct
QSVH264Context
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment