X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2Fffmpeg%2Flibavformat%2Fmxg.c;h=34977b8197d4005f6046ab89c5cbb154251e6529;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=b2b5b86c6f765a02893cd8dd1af373dbb4856b76;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/ffmpeg/libavformat/mxg.c b/src/third_party/ffmpeg/libavformat/mxg.c index b2b5b86..34977b8 100644 --- a/src/third_party/ffmpeg/libavformat/mxg.c +++ b/src/third_party/ffmpeg/libavformat/mxg.c @@ -136,7 +136,7 @@ static int mxg_read_packet(AVFormatContext *s, AVPacket *pkt) uint8_t *startmarker_ptr, *end, *search_end, marker; MXGContext *mxg = s->priv_data; - while (!url_feof(s->pb) && !s->pb->error){ + while (!avio_feof(s->pb) && !s->pb->error){ if (mxg->cache_size <= OVERREAD_SIZE) { /* update internal buffer */ ret = mxg_update_cache(s, DEFAULT_PACKET_SIZE + OVERREAD_SIZE);