Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
ee3d03bf
Commit
ee3d03bf
authored
Oct 06, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/dpx: make .long_name more descriptive
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
8ec32866
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
codec_desc.c
libavcodec/codec_desc.c
+1
-1
dpx.c
libavcodec/dpx.c
+1
-1
dpxenc.c
libavcodec/dpxenc.c
+1
-1
No files found.
libavcodec/codec_desc.c
View file @
ee3d03bf
...
@@ -950,7 +950,7 @@ static const AVCodecDescriptor codec_descriptors[] = {
...
@@ -950,7 +950,7 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
id
=
AV_CODEC_ID_DPX
,
.
id
=
AV_CODEC_ID_DPX
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"dpx"
,
.
name
=
"dpx"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DPX image"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DPX
(Digital Picture Exchange)
image"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
},
},
{
{
...
...
libavcodec/dpx.c
View file @
ee3d03bf
...
@@ -270,7 +270,7 @@ static int decode_frame(AVCodecContext *avctx,
...
@@ -270,7 +270,7 @@ static int decode_frame(AVCodecContext *avctx,
AVCodec
ff_dpx_decoder
=
{
AVCodec
ff_dpx_decoder
=
{
.
name
=
"dpx"
,
.
name
=
"dpx"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DPX image"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DPX
(Digital Picture Exchange)
image"
),
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
id
=
AV_CODEC_ID_DPX
,
.
id
=
AV_CODEC_ID_DPX
,
.
decode
=
decode_frame
,
.
decode
=
decode_frame
,
...
...
libavcodec/dpxenc.c
View file @
ee3d03bf
...
@@ -235,7 +235,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
...
@@ -235,7 +235,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
AVCodec
ff_dpx_encoder
=
{
AVCodec
ff_dpx_encoder
=
{
.
name
=
"dpx"
,
.
name
=
"dpx"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DPX image"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DPX
(Digital Picture Exchange)
image"
),
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
id
=
AV_CODEC_ID_DPX
,
.
id
=
AV_CODEC_ID_DPX
,
.
priv_data_size
=
sizeof
(
DPXContext
),
.
priv_data_size
=
sizeof
(
DPXContext
),
...
...
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