[FFmpeg-cvslog] frmdec: do not abuse ff_codec_get_id()
Paul B Mahol
git at videolan.org
Sat Jan 12 15:42:47 CET 2013
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Tue Jan 8 15:54:58 2013 +0000| [868ac91c8dbe1df8efa17a141fad0b02a144a7d6] | committer: Paul B Mahol
frmdec: do not abuse ff_codec_get_id()
Signed-off-by: Paul B Mahol <onemda at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=868ac91c8dbe1df8efa17a141fad0b02a144a7d6
---
libavformat/frmdec.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavformat/frmdec.c b/libavformat/frmdec.c
index 9c29842..a6f19af 100644
--- a/libavformat/frmdec.c
+++ b/libavformat/frmdec.c
@@ -24,11 +24,11 @@
* Megalux Frame demuxer
*/
+#include "libavcodec/raw.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
-#include "riff.h"
-static const AVCodecTag frm_pix_fmt_tags[] = {
+static const PixelFormatTag frm_pix_fmt_tags[] = {
{ AV_PIX_FMT_RGB555, 1 },
{ AV_PIX_FMT_RGB0, 2 },
{ AV_PIX_FMT_RGB24, 3 },
@@ -61,7 +61,7 @@ static int frm_read_header(AVFormatContext *avctx)
st->codec->codec_id = AV_CODEC_ID_RAWVIDEO;
avio_skip(pb, 3);
- st->codec->pix_fmt = ff_codec_get_id(frm_pix_fmt_tags, avio_r8(pb));
+ st->codec->pix_fmt = avpriv_find_pix_fmt(frm_pix_fmt_tags, avio_r8(pb));
if (!st->codec->pix_fmt)
return AVERROR_INVALIDDATA;
More information about the ffmpeg-cvslog
mailing list