Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
GStreamer
gst-libav
Commits
99ca91f3
Commit
99ca91f3
authored
Apr 06, 2014
by
Sebastian Dröge
🍵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodecmap: Add mapping for Apple Intermediate Codec
https://bugzilla.gnome.org/show_bug.cgi?id=727673
parent
650c2ad0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
ext/libav/gstavcodecmap.c
ext/libav/gstavcodecmap.c
+9
-0
No files found.
ext/libav/gstavcodecmap.c
View file @
99ca91f3
...
...
@@ -1695,6 +1695,12 @@ gst_ffmpeg_codecid_to_caps (enum AVCodecID codec_id,
}
break
;
case
AV_CODEC_ID_AIC
:
caps
=
gst_ff_vid_caps_new
(
context
,
NULL
,
codec_id
,
encode
,
"video/x-apple-intermediate-codec"
,
NULL
);
break
;
case
AV_CODEC_ID_WS_VQA
:
case
AV_CODEC_ID_IDCIN
:
case
AV_CODEC_ID_8BPS
:
...
...
@@ -3724,6 +3730,9 @@ gst_ffmpeg_caps_to_codecid (const GstCaps * caps, AVCodecContext * context)
id
=
AV_CODEC_ID_FFV1
;
video
=
TRUE
;
}
}
else
if
(
!
strcmp
(
mimetype
,
"video/x-apple-intermediate-codec"
))
{
id
=
AV_CODEC_ID_AIC
;
video
=
TRUE
;
}
else
if
(
!
strcmp
(
mimetype
,
"audio/x-adpcm"
))
{
const
gchar
*
layout
;
...
...
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