Commit 37c4dd95 authored by Daniel Verkamp's avatar Daniel Verkamp Committed by Jean-Baptiste Kempf

avcodec: map BFI video

Sample:
http://fate-suite.libav.org/bfi/2287.bfiSigned-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 0af153b4
......@@ -161,6 +161,7 @@
#define VLC_CODEC_BETHSOFTVID VLC_FOURCC('B','V','I','D')
#define VLC_CODEC_VB VLC_FOURCC('V','B','V','1')
#define VLC_CODEC_RL2 VLC_FOURCC('R','L','V','2')
#define VLC_CODEC_BFI VLC_FOURCC('B','F','&','I')
/* Planar YUV 4:1:0 Y:V:U */
#define VLC_CODEC_YV9 VLC_FOURCC('Y','V','U','9')
......
......@@ -171,7 +171,7 @@ static const struct
{ VLC_CODEC_RL2, AV_CODEC_ID_RL2, VIDEO_ES },
{ VLC_CODEC_ESCAPE124, AV_CODEC_ID_ESCAPE124, VIDEO_ES },
{ VLC_CODEC_DIRAC, AV_CODEC_ID_DIRAC, VIDEO_ES },
/* AV_CODEC_ID_BFI */
{ VLC_CODEC_BFI, AV_CODEC_ID_BFI, VIDEO_ES },
/* AV_CODEC_ID_CMV */
/* AV_CODEC_ID_MOTIONPIXELS */
/* AV_CODEC_ID_TGV */
......
......@@ -1081,6 +1081,8 @@ static const staticentry_t p_list_video[] = {
B(VLC_CODEC_RL2, "RL2 video"),
B(VLC_CODEC_BFI, "Brute Force & Ignorance (BFI) video"),
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