~ubuntu-branches/ubuntu/saucy/gst-libav1.0/saucy-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-07-30 09:00:15 UTC
  • mfrom: (1.1.16) (7.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20130730090015-sc1ou2yssu7q5w4e
Tags: 1.1.3-1
* New upstream development snapshot:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.1.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
20
 */
21
21
 
 
22
#include <string.h>
 
23
 
22
24
#include "libavutil/intreadwrite.h"
 
25
#include "libavutil/mem.h"
23
26
#include "avcodec.h"
24
27
 
25
28
/* parser definition */
77
80
}
78
81
 
79
82
AVCodecParser ff_dvdsub_parser = {
80
 
    .codec_ids      = { CODEC_ID_DVD_SUBTITLE },
 
83
    .codec_ids      = { AV_CODEC_ID_DVD_SUBTITLE },
81
84
    .priv_data_size = sizeof(DVDSubParseContext),
82
85
    .parser_init    = dvdsub_parse_init,
83
86
    .parser_parse   = dvdsub_parse,