[FFmpeg-devel] [PATCH 2/2] avcodec/libzvbi-teletextdec: use common functions for matching data_unit_id and data_identifier
Marton Balint
cus at passwd.hu
Tue Feb 16 03:35:53 CET 2016
Signed-off-by: Marton Balint <cus at passwd.hu>
---
libavcodec/libzvbi-teletextdec.c | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/libavcodec/libzvbi-teletextdec.c b/libavcodec/libzvbi-teletextdec.c
index 308f735..80d023b 100644
--- a/libavcodec/libzvbi-teletextdec.c
+++ b/libavcodec/libzvbi-teletextdec.c
@@ -368,12 +368,6 @@ static void handler(vbi_event *ev, void *user_data)
vbi_unref_page(&page);
}
-static inline int data_identifier_is_teletext(int data_identifier) {
- /* See EN 301 775 section 4.4.2. */
- return (data_identifier >= 0x10 && data_identifier <= 0x1F ||
- data_identifier >= 0x99 && data_identifier <= 0x9B);
-}
-
static int slice_to_vbi_lines(TeletextContext *ctx, uint8_t* buf, int size)
{
int lines = 0;
@@ -382,7 +376,7 @@ static int slice_to_vbi_lines(TeletextContext *ctx, uint8_t* buf, int size)
int data_unit_length = buf[1];
if (data_unit_length + 2 > size)
return AVERROR_INVALIDDATA;
- if (data_unit_id == 0x02 || data_unit_id == 0x03) {
+ if (ff_data_unit_id_is_teletext(data_unit_id)) {
if (data_unit_length != 0x2c)
return AVERROR_INVALIDDATA;
else {
@@ -434,7 +428,7 @@ static int teletext_decode_frame(AVCodecContext *avctx, void *data, int *data_si
ctx->handler_ret = pkt->size;
- if (data_identifier_is_teletext(*pkt->data)) {
+ if (ff_data_identifier_is_teletext(*pkt->data)) {
if ((lines = slice_to_vbi_lines(ctx, pkt->data + 1, pkt->size - 1)) < 0)
return lines;
ff_dlog(avctx, "ctx=%p buf_size=%d lines=%u pkt_pts=%7.3f\n",
--
2.6.2
More information about the ffmpeg-devel
mailing list