~ubuntu-branches/ubuntu/raring/gst-libav1.0/raring

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavcodec/mpeg12.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-03-22 18:30:16 UTC
  • mfrom: (13.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20130322183016-j9g41he8zscizfsj
Tags: 1.0.6-1
New upstream bugfix release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2223
2223
 
2224
2224
    s->slice_count = 0;
2225
2225
 
2226
 
    if (avctx->extradata && !avctx->frame_number) {
 
2226
    if (avctx->extradata && !s->extradata_decoded) {
2227
2227
        int ret = decode_chunks(avctx, picture, data_size, avctx->extradata, avctx->extradata_size);
 
2228
        s->extradata_decoded = 1;
2228
2229
        if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
2229
2230
            return ret;
2230
2231
    }