summaryrefslogtreecommitdiff
path: root/libavformat/jvdec.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-04-02 11:35:14 +0200
committerAnton Khirnov <anton@khirnov.net>2011-04-02 16:16:44 +0200
commitb4b167ecbff793a08242494a7d76effec81f43be (patch)
treed8244eac0b61d0ce5a8e6523e5d766ac781c9a1c /libavformat/jvdec.c
parentaa05f2126e18d23432bde77e6f44e41691472fef (diff)
jvdec: don't use deprecated CODEC_TYPE_*/PKT_FLAG_KEY
Diffstat (limited to 'libavformat/jvdec.c')
-rw-r--r--libavformat/jvdec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/jvdec.c b/libavformat/jvdec.c
index 8a81b11984..c180e5db4c 100644
--- a/libavformat/jvdec.c
+++ b/libavformat/jvdec.c
@@ -74,7 +74,7 @@ static int read_header(AVFormatContext *s,
if (!ast || !vst)
return AVERROR(ENOMEM);
- vst->codec->codec_type = CODEC_TYPE_VIDEO;
+ vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
vst->codec->codec_id = CODEC_ID_JV;
vst->codec->codec_tag = 0; /* no fourcc */
vst->codec->width = avio_rl16(pb);
@@ -85,7 +85,7 @@ static int read_header(AVFormatContext *s,
avio_skip(pb, 4);
- ast->codec->codec_type = CODEC_TYPE_AUDIO;
+ ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
ast->codec->codec_id = CODEC_ID_PCM_U8;
ast->codec->codec_tag = 0; /* no fourcc */
ast->codec->sample_rate = avio_rl16(pb);
@@ -151,7 +151,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
return AVERROR(ENOMEM);
pkt->stream_index = 0;
pkt->pts = e->timestamp;
- pkt->flags |= PKT_FLAG_KEY;
+ pkt->flags |= AV_PKT_FLAG_KEY;
return 0;
}
case JV_VIDEO:
@@ -170,7 +170,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
pkt->stream_index = 1;
pkt->pts = jv->pts;
if (jvf->video_type != 1)
- pkt->flags |= PKT_FLAG_KEY;
+ pkt->flags |= AV_PKT_FLAG_KEY;
return 0;
}
case JV_PADDING: