Commit 930c27a5 authored by Daniel Verkamp's avatar Daniel Verkamp Committed by Jean-Baptiste Kempf

avcodec: map Bitmap Brothers JV

Sample:
http://samples.ffmpeg.org/game-formats/jv/E_INTRO.JVSigned-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 5f3f0ce5
......@@ -170,6 +170,7 @@
#define VLC_CODEC_MAD VLC_FOURCC('M','A','D','V')
#define VLC_CODEC_ANM VLC_FOURCC('A','N','I','M')
#define VLC_CODEC_YOP VLC_FOURCC('Y','O','P','V')
#define VLC_CODEC_JV VLC_FOURCC('J','V','0','0')
/* Planar YUV 4:1:0 Y:V:U */
#define VLC_CODEC_YV9 VLC_FOURCC('Y','V','U','9')
......
......@@ -203,7 +203,7 @@ static const struct
{ VLC_CODEC_MXPEG, AV_CODEC_ID_MXPEG, VIDEO_ES },
{ VLC_CODEC_LAGARITH, AV_CODEC_ID_LAGARITH, VIDEO_ES },
{ VLC_CODEC_PRORES, AV_CODEC_ID_PRORES, VIDEO_ES },
/* AV_CODEC_ID_JV */
{ VLC_CODEC_JV, AV_CODEC_ID_JV, VIDEO_ES },
/* AV_CODEC_ID_DFA */
{ VLC_CODEC_WMVP, AV_CODEC_ID_WMV3IMAGE, VIDEO_ES },
{ VLC_CODEC_WMVP2, AV_CODEC_ID_VC1IMAGE, VIDEO_ES },
......
......@@ -1099,6 +1099,8 @@ static const staticentry_t p_list_video[] = {
B(VLC_CODEC_YOP, "Psygnosis YOP"),
B(VLC_CODEC_JV, "Bitmap Brothers JV"),
B(0, "")
};
static const staticentry_t p_list_audio[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment